diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Assets/AboutAssets.txt b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Assets/AboutAssets.txt
new file mode 100755
index 000000000..a9b0638eb
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Assets/AboutAssets.txt
@@ -0,0 +1,19 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories) and given a Build Action of "AndroidAsset".
+
+These files will be deployed with your package and will be accessible using Android's
+AssetManager, like this:
+
+public class ReadAsset : Activity
+{
+ protected override void OnCreate (Bundle bundle)
+ {
+ base.OnCreate (bundle);
+
+ InputStream input = Assets.Open ("my_asset.txt");
+ }
+}
+
+Additionally, some Android functions will automatically load asset files:
+
+Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/CustomRenderer.Android.csproj b/Upgrading/CustomRenderer/MultiProject/Entry/Android/CustomRenderer.Android.csproj
new file mode 100644
index 000000000..99c0bc149
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/CustomRenderer.Android.csproj
@@ -0,0 +1,24 @@
+
+
+ Exe
+ enable
+ true
+
+
+ false
+
+
+ false
+
+
+ net8.0-android
+
+
+
+
+
+
+ all
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainActivity.cs b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainActivity.cs
new file mode 100755
index 000000000..1f0ba0641
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainActivity.cs
@@ -0,0 +1,24 @@
+using System;
+
+using Android.App;
+using Android.Content;
+using Android.Runtime;
+using Android.Views;
+using Android.Widget;
+using Android.OS;
+using Android.Content.PM;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+
+
+namespace CustomRenderer.Android
+{
+ [Activity (Label = "CustomRenderer.Android.Android", Icon = "@drawable/icon",
+ Theme = "@style/MainTheme", MainLauncher = true,
+ ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainApplication.cs b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainApplication.cs
new file mode 100644
index 000000000..1173ec6f2
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MainApplication.cs
@@ -0,0 +1,19 @@
+using System;
+using Android.App;
+using Android.Runtime;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace CustomRenderer.Android
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/MauiProgram.cs b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MauiProgram.cs
new file mode 100644
index 000000000..f3a0c3f66
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MauiProgram.cs
@@ -0,0 +1,37 @@
+using Microsoft.Maui.Hosting;
+using Microsoft.Maui.Handlers;
+using Microsoft.Maui.Controls.Compatibility.Hosting;
+
+namespace CustomRenderer.Android;
+
+public static class MauiProgram
+{
+ public static MauiAppBuilder builder;
+ public static MauiAppBuilder Builder
+ {
+ get
+ {
+ if (builder == null)
+ {
+ builder = MauiApp.CreateBuilder();
+ }
+
+ return builder;
+ }
+ }
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = Builder;
+ builder
+ .UseMauiCompatibility()
+ .UseMauiApp();
+
+ builder.ConfigureMauiHandlers(handlers => {
+#if ANDROID
+ handlers.AddCompatibilityRenderer(typeof(MyEntry), typeof(CustomRenderer.Android.MyEntryRenderer));
+#endif
+ });
+
+ return builder.Build();
+ }
+}
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/MyEntryRenderer.cs b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MyEntryRenderer.cs
new file mode 100755
index 000000000..3520c605c
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/MyEntryRenderer.cs
@@ -0,0 +1,29 @@
+using CustomRenderer;
+using CustomRenderer.Android;
+using Android.Content;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+using Microsoft.Maui.Controls.Compatibility.Platform.Android;
+using Microsoft.Maui.Controls.Platform;
+
+
+namespace CustomRenderer.Android
+{
+ class MyEntryRenderer : EntryRenderer
+ {
+ public MyEntryRenderer(Context context) : base(context)
+ {
+ }
+
+ protected override void OnElementChanged(ElementChangedEventArgs e)
+ {
+ base.OnElementChanged(e);
+
+ if (Control != null)
+ {
+ Control.SetBackgroundColor(global::Android.Graphics.Color.LightGreen);
+ }
+ }
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Properties/AndroidManifest.xml b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Properties/AndroidManifest.xml
new file mode 100755
index 000000000..baf87db76
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Properties/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/AboutResources.txt b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/AboutResources.txt
new file mode 100755
index 000000000..10f52d460
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/AboutResources.txt
@@ -0,0 +1,44 @@
+Images, layout descriptions, binary blobs and string dictionaries can be included
+in your application as resource files. Various Android APIs are designed to
+operate on the resource IDs instead of dealing with images, strings or binary blobs
+directly.
+
+For example, a sample Android app that contains a user interface layout (main.axml),
+an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
+would keep its resources in the "Resources" directory of the application:
+
+Resources/
+ drawable/
+ icon.png
+
+ layout/
+ main.axml
+
+ values/
+ strings.xml
+
+In order to get the build system to recognize Android resources, set the build action to
+"AndroidResource". The native Android APIs do not operate directly with filenames, but
+instead operate on resource IDs. When you compile an Android application that uses resources,
+the build system will package the resources for distribution and generate a class called "R"
+(this is an Android convention) that contains the tokens for each one of the resources
+included. For example, for the above Resources layout, this is what the R class would expose:
+
+public class R {
+ public class drawable {
+ public const int icon = 0x123;
+ }
+
+ public class layout {
+ public const int main = 0x456;
+ }
+
+ public class strings {
+ public const int first_string = 0xabc;
+ public const int second_string = 0xbcd;
+ }
+}
+
+You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
+to reference the layout/main.axml file, or R.strings.first_string to reference the first
+string in the dictionary file values/strings.xml.
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/drawable/Icon.png b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/drawable/Icon.png
new file mode 100755
index 000000000..fae80caf4
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/drawable/Icon.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/layout/Main.axml b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/layout/Main.axml
new file mode 100755
index 000000000..bd890ffb7
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/layout/Main.axml
@@ -0,0 +1,14 @@
+
+
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/Strings.xml b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/Strings.xml
new file mode 100755
index 000000000..72b7a9703
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/Strings.xml
@@ -0,0 +1,5 @@
+
+
+ Hello World, Click Me!
+ CustomRenderer.Android.Android
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/colors.xml b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/colors.xml
new file mode 100644
index 000000000..bdd44a837
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/colors.xml
@@ -0,0 +1,7 @@
+
+
+ #FFFFFF
+ #3F51B5
+ #303F9F
+ #FF4081
+
\ No newline at end of file
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/styles.xml b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/styles.xml
new file mode 100644
index 000000000..43ea378d8
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/Android/Resources/values/styles.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer.sln b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer.sln
new file mode 100755
index 000000000..e31e586bb
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer.sln
@@ -0,0 +1,327 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29920.165
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CustomRenderer", "CustomRenderer\CustomRenderer.csproj", "{1110E45B-B906-423F-9AA4-1043B491B5E4}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomRenderer.iOS", "iOS\CustomRenderer.iOS.csproj", "{E5EEAD23-AE29-4405-B806-4FA61A47FE12}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomRenderer.Android", "Android\CustomRenderer.Android.csproj", "{D38C1B01-95C2-4A98-8D11-D95B02875B29}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
+ Ad-Hoc|ARM = Ad-Hoc|ARM
+ Ad-Hoc|iPhone = Ad-Hoc|iPhone
+ Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
+ Ad-Hoc|x64 = Ad-Hoc|x64
+ Ad-Hoc|x86 = Ad-Hoc|x86
+ AppStore|Any CPU = AppStore|Any CPU
+ AppStore|ARM = AppStore|ARM
+ AppStore|iPhone = AppStore|iPhone
+ AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
+ AppStore|x64 = AppStore|x64
+ AppStore|x86 = AppStore|x86
+ Debug|Any CPU = Debug|Any CPU
+ Debug|ARM = Debug|ARM
+ Debug|iPhone = Debug|iPhone
+ Debug|iPhoneSimulator = Debug|iPhoneSimulator
+ Debug|x64 = Debug|x64
+ Debug|x86 = Debug|x86
+ Release|Any CPU = Release|Any CPU
+ Release|ARM = Release|ARM
+ Release|iPhone = Release|iPhone
+ Release|iPhoneSimulator = Release|iPhoneSimulator
+ Release|x64 = Release|x64
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|Any CPU.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|ARM.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhone.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x64.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Ad-Hoc|x86.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|Any CPU.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|Any CPU.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|ARM.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|ARM.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|ARM.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhone.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhone.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x64.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x64.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x64.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x86.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x86.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.AppStore|x86.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|ARM.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|ARM.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhone.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhone.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhone.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x64.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x64.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x86.Build.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Debug|x86.Deploy.0 = Debug|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|ARM.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|ARM.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|ARM.Deploy.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhone.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhone.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhone.Deploy.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x64.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x64.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x64.Deploy.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x86.ActiveCfg = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x86.Build.0 = Release|Any CPU
+ {1110E45B-B906-423F-9AA4-1043B491B5E4}.Release|x86.Deploy.0 = Release|Any CPU
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|Any CPU.Build.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|Any CPU.Deploy.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|ARM.Build.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|ARM.Deploy.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhone.Deploy.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x64.Build.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x64.Deploy.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x86.Build.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Ad-Hoc|x86.Deploy.0 = Ad-Hoc|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|Any CPU.Build.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|Any CPU.Deploy.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|ARM.ActiveCfg = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|ARM.Build.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|ARM.Deploy.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhone.Build.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhone.Deploy.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x64.ActiveCfg = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x64.Build.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x64.Deploy.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x86.ActiveCfg = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x86.Build.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.AppStore|x86.Deploy.0 = AppStore|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|Any CPU.Deploy.0 = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|ARM.ActiveCfg = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|ARM.Build.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|ARM.Deploy.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhone.ActiveCfg = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhone.Build.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhone.Deploy.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|iPhoneSimulator.Deploy.0 = Debug|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x64.ActiveCfg = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x64.Build.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x64.Deploy.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x86.ActiveCfg = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x86.Build.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Debug|x86.Deploy.0 = Debug|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|Any CPU.ActiveCfg = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|Any CPU.Build.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|Any CPU.Deploy.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|ARM.ActiveCfg = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|ARM.Build.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|ARM.Deploy.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhone.ActiveCfg = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhone.Build.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhone.Deploy.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|iPhoneSimulator.Deploy.0 = Release|iPhoneSimulator
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x64.ActiveCfg = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x64.Build.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x64.Deploy.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x86.ActiveCfg = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x86.Build.0 = Release|iPhone
+ {E5EEAD23-AE29-4405-B806-4FA61A47FE12}.Release|x86.Deploy.0 = Release|iPhone
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x64.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x86.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|Any CPU.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|ARM.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|ARM.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|ARM.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhone.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhone.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhone.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x64.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x64.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x64.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x86.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x86.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.AppStore|x86.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|ARM.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|ARM.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhone.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhone.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhone.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x64.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x64.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x86.Build.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Debug|x86.Deploy.0 = Debug|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|Any CPU.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|ARM.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|ARM.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|ARM.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhone.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhone.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhone.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x64.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x64.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x64.Deploy.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x86.ActiveCfg = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x86.Build.0 = Release|Any CPU
+ {D38C1B01-95C2-4A98-8D11-D95B02875B29}.Release|x86.Deploy.0 = Release|Any CPU
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|Any CPU.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|Any CPU.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|Any CPU.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|ARM.Build.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhone.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhone.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhone.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x64.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x64.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x64.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x86.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x86.Build.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Ad-Hoc|x86.Deploy.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|Any CPU.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|Any CPU.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|Any CPU.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|ARM.ActiveCfg = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|ARM.Build.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|ARM.Deploy.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhone.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhone.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhone.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhoneSimulator.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhoneSimulator.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|iPhoneSimulator.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x64.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x64.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x64.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x86.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x86.Build.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.AppStore|x86.Deploy.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|Any CPU.ActiveCfg = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|Any CPU.Build.0 = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|Any CPU.Deploy.0 = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|ARM.ActiveCfg = Debug|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|ARM.Build.0 = Debug|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|ARM.Deploy.0 = Debug|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|iPhone.ActiveCfg = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x64.ActiveCfg = Debug|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x64.Build.0 = Debug|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x64.Deploy.0 = Debug|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x86.ActiveCfg = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x86.Build.0 = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Debug|x86.Deploy.0 = Debug|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|Any CPU.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|Any CPU.Build.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|Any CPU.Deploy.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|ARM.ActiveCfg = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|ARM.Build.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|ARM.Deploy.0 = Release|ARM
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|iPhone.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|iPhoneSimulator.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x64.ActiveCfg = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x64.Build.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x64.Deploy.0 = Release|x64
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x86.ActiveCfg = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x86.Build.0 = Release|x86
+ {1F98059B-BB21-4901-A5E2-B022A23F635D}.Release|x86.Deploy.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {EC4F24DB-DBAA-40F7-8977-E829DBF6C0B0}
+ EndGlobalSection
+EndGlobal
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/App.cs b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/App.cs
new file mode 100755
index 000000000..e5f786b44
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/App.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+
+namespace CustomRenderer
+{
+ public class App : Application
+ {
+ public App ()
+ {
+ //MainPage = new MainPage (); // uncomment this to test the code-behind version
+ MainPage = new MainPageXaml ();
+ }
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/CustomRenderer.csproj b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/CustomRenderer.csproj
new file mode 100644
index 000000000..b659cb92b
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/CustomRenderer.csproj
@@ -0,0 +1,19 @@
+
+
+ true
+ net8.0-android;net8.0-ios
+ Library
+ enable
+
+
+
+ MSBuild:UpdateDesignTimeXaml
+
+
+
+
+ all
+
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPage.cs b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPage.cs
new file mode 100755
index 000000000..05eb987e9
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPage.cs
@@ -0,0 +1,26 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+
+namespace CustomRenderer
+{
+ public class MainPage : ContentPage
+ {
+ public MainPage ()
+ {
+ Content = new StackLayout {
+ Children = {
+ new Label {
+ Text = "Hello, Custom Renderer !",
+ },
+ new MyEntry {
+ Text = "In Shared Code",
+ }
+ },
+ VerticalOptions = LayoutOptions.Center,
+ HorizontalOptions = LayoutOptions.Center,
+ };
+ }
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml
new file mode 100755
index 000000000..8d621c115
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml.cs b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml.cs
new file mode 100755
index 000000000..2dbdb4ee3
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MainPageXaml.xaml.cs
@@ -0,0 +1,16 @@
+using System;
+using System.Collections.Generic;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+
+namespace CustomRenderer
+{
+ public partial class MainPageXaml : ContentPage
+ {
+ public MainPageXaml ()
+ {
+ InitializeComponent ();
+ }
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MauiProgram.cs b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MauiProgram.cs
new file mode 100644
index 000000000..70a9ef4fa
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MauiProgram.cs
@@ -0,0 +1,16 @@
+using Microsoft.Maui.Controls.Compatibility.Hosting;
+
+namespace CustomRenderer;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiCompatibility()
+ .UseMauiApp();
+
+ return builder.Build();
+ }
+}
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MyEntry.cs b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MyEntry.cs
new file mode 100755
index 000000000..eb3a0aecd
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/CustomRenderer/MyEntry.cs
@@ -0,0 +1,10 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+
+namespace CustomRenderer
+{
+ public class MyEntry : Entry
+ {
+ }
+}
+
\ No newline at end of file
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/README.md b/Upgrading/CustomRenderer/MultiProject/Entry/README.md
new file mode 100755
index 000000000..e7548af9b
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/README.md
@@ -0,0 +1,17 @@
+---
+name: Xamarin.Forms - Entry Custom Renderer
+description: "Demonstrates a custom renderer for the Entry control, enabling developers to override the default native rendering #customrenderer"
+page_type: sample
+languages:
+- csharp
+products:
+- xamarin
+urlFragment: customrenderers-entry
+---
+# Entry Custom Renderer
+
+This sample demonstrates a custom renderer for the `Entry` control, enabling developers to override the default native rendering with their own platform-specific customization.
+
+For more information about this sample see [Customizing an Entry](https://docs.microsoft.com/xamarin/xamarin-forms/app-fundamentals/custom-renderer/entry).
+
+![Entry Custom Renderer application screenshot](Screenshots/01Android.png "Entry Custom Renderer application screenshot")
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01Android.png b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01Android.png
new file mode 100755
index 000000000..fc87c6af3
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01Android.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01UWP.PNG b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01UWP.PNG
new file mode 100755
index 000000000..643aeb1d4
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01UWP.PNG differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01iOS.png b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01iOS.png
new file mode 100755
index 000000000..a8a7e4571
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/01iOS.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/all.png b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/all.png
new file mode 100755
index 000000000..d89376994
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/Screenshots/all.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/UpgradeReport.sarif b/Upgrading/CustomRenderer/MultiProject/Entry/UpgradeReport.sarif
new file mode 100644
index 000000000..bb9adaa63
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/UpgradeReport.sarif
@@ -0,0 +1,1024 @@
+{
+ "$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": "Back up the current project to another directory"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ },
+ {
+ "tool": {
+ "driver": {
+ "name": "Add TargetFramework for .NET MAUI Project",
+ "semanticVersion": "",
+ "informationUri": "https://github.com/dotnet/upgrade-assistant#usage",
+ "rules": [
+ {
+ "id": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep",
+ "fullDescription": {
+ "text": "Add Platform TargetFramework for XamarinForms projects being converted"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Added TFMs to .NET MAUI project CustomRenderer.csproj"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Remove package 'Xamarin.Forms'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ },
+ {
+ "tool": {
+ "driver": {
+ "name": "Update Project Properties for .NET MAUI Project",
+ "semanticVersion": "",
+ "informationUri": "https://github.com/dotnet/upgrade-assistant#usage",
+ "rules": [
+ {
+ "id": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "fullDescription": {
+ "text": "Updates the platform-specific project properties for a .NET MAUI project"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Updated Maui project properties for .NET MAUI project CustomRenderer.csproj"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.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": "Add template files (for startup code paths, for example) based on template files described in: Program.cs, Startup.cs, appsettings.json, appsettings.Development.json, Program.vb, Startup.vb, appsettings.json, appsettings.Development.json, 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, MainApplication.cs, MauiProgram.cs"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Added template file MauiProgram.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/MauiProgram.cs"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ },
+ {
+ "tool": {
+ "driver": {
+ "name": "Update XAML Namespaces",
+ "semanticVersion": "",
+ "informationUri": "https://github.com/dotnet/upgrade-assistant#usage",
+ "rules": [
+ {
+ "id": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep",
+ "fullDescription": {
+ "text": "Updates XAML namespaces to .NET MAUI"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Updated XAML namespaces to .NET MAUI"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj"
+ },
+ "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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/App.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/App.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPage.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPage.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPageXaml.xaml.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPageXaml.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MyEntry.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MyEntry.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": "Back up the current project to another directory"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/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": "Use the try-convert tool (, Version=0.4.420501+e30ffa80e708218a29015d598c4ddc46862d32c3) to convert the project file to an SDK-style csproj"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep",
+ "level": "note",
+ "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:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Remove package 'Xamarin.Forms'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ },
+ {
+ "tool": {
+ "driver": {
+ "name": "Update Project Properties for .NET MAUI Project",
+ "semanticVersion": "",
+ "informationUri": "https://github.com/dotnet/upgrade-assistant#usage",
+ "rules": [
+ {
+ "id": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "fullDescription": {
+ "text": "Updates the platform-specific project properties for a .NET MAUI project"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Updated MauiiOS project properties for .NET MAUI project CustomRenderer.iOS.csproj"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj"
+ },
+ "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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/AppDelegate.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/AppDelegate.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.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": "Back up the current project to another directory"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/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": "Use the try-convert tool (, Version=0.4.420501+e30ffa80e708218a29015d598c4ddc46862d32c3) to convert the project file to an SDK-style csproj"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep",
+ "level": "note",
+ "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:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Remove package 'Xamarin.Forms'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.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]]"
+ }
+ ]
+ }
+ },
+ "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]]",
+ "level": "note",
+ "message": {
+ "text": "Complete: Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ },
+ {
+ "tool": {
+ "driver": {
+ "name": "Update Project Properties for .NET MAUI Project",
+ "semanticVersion": "",
+ "informationUri": "https://github.com/dotnet/upgrade-assistant#usage",
+ "rules": [
+ {
+ "id": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "fullDescription": {
+ "text": "Updates the platform-specific project properties for a .NET MAUI project"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Updated MauiAndroid project properties for .NET MAUI project CustomRenderer.Android.csproj"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.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": "Add template files (for startup code paths, for example) based on template files described in: Program.cs, Startup.cs, appsettings.json, appsettings.Development.json, Program.vb, Startup.vb, appsettings.json, appsettings.Development.json, 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, MainApplication.cs, MauiProgram.cs"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep",
+ "level": "note",
+ "message": {
+ "text": "Complete: Added template file MainApplication.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/MainApplication.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MainActivity.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MainActivity.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.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": "Update source files to automatically fix upgrade analyzer UA0014"
+ }
+ }
+ ]
+ }
+ },
+ "results": [
+ {
+ "ruleId": "UA0014",
+ "level": "note",
+ "message": {
+ "text": "Complete: Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs"
+ },
+ "locations": [
+ {
+ "physicalLocation": {
+ "artifactLocation": {
+ "uri": "file:///Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs"
+ },
+ "region": {}
+ }
+ }
+ ]
+ }
+ ],
+ "columnKind": "utf16CodeUnits"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/AppDelegate.cs b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/AppDelegate.cs
new file mode 100755
index 000000000..c05d7d7d1
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/AppDelegate.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+using Foundation;
+using UIKit;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+using Microsoft.Maui.Hosting;
+
+namespace CustomRenderer.iOS
+{
+ [Register ("AppDelegate")]
+ public partial class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/CustomRenderer.iOS.csproj b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/CustomRenderer.iOS.csproj
new file mode 100644
index 000000000..0b3c258b2
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/CustomRenderer.iOS.csproj
@@ -0,0 +1,49 @@
+
+
+ Exe
+ true
+ 14.4
+
+
+ false
+ iPhone Developer
+ true
+
+
+
+ false
+
+
+ false
+ iPhone Developer
+
+ true
+
+
+
+ false
+ iPhone Developer
+
+
+ false
+ true
+ Automatic:AdHoc
+ iPhone Distribution
+
+
+ false
+ Automatic:AppStore
+ iPhone Distribution
+
+
+ net8.0-ios
+
+
+
+
+
+
+ all
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Entitlements.plist b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Entitlements.plist
new file mode 100755
index 000000000..e9a3005f7
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Entitlements.plist
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Info.plist b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Info.plist
new file mode 100755
index 000000000..88ab9d646
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Info.plist
@@ -0,0 +1,38 @@
+
+
+
+
+ CFBundleDisplayName
+ CustomRenderer.iOS
+ CFBundleIdentifier
+ com.your-company.CustomRenderer.iOS
+ CFBundleShortVersionString
+ 1.0
+ CFBundleVersion
+ 1.0
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ armv7
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Main.cs b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Main.cs
new file mode 100755
index 000000000..b3dfcfe88
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Main.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+using Foundation;
+using UIKit;
+
+namespace CustomRenderer.iOS
+{
+ public class Application
+ {
+ // This is the main entry point of the application.
+ static void Main (string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main (args, null, "AppDelegate");
+ }
+ }
+}
+
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MauiProgram.cs b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MauiProgram.cs
new file mode 100644
index 000000000..c5754e8d8
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MauiProgram.cs
@@ -0,0 +1,36 @@
+using Microsoft.Maui.Hosting;
+using Microsoft.Maui.Handlers;
+using Microsoft.Maui.Controls.Compatibility.Hosting;
+using Microsoft.Maui.Controls.Hosting;
+
+namespace CustomRenderer.iOS;
+
+public static class MauiProgram
+{
+ public static MauiAppBuilder builder;
+ public static MauiAppBuilder Builder
+ {
+ get
+ {
+ if (builder == null)
+ {
+ builder = MauiApp.CreateBuilder();
+ }
+
+ return builder;
+ }
+ }
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = Builder;
+ builder
+ .UseMauiCompatibility()
+ .UseMauiApp();
+
+ builder.ConfigureMauiHandlers(handlers => {
+ handlers.AddCompatibilityRenderer(typeof(CustomRenderer.MyEntry), typeof(CustomRenderer.iOS.MyEntryRenderer));
+ });
+
+ return builder.Build();
+ }
+}
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MyEntryRenderer.cs b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MyEntryRenderer.cs
new file mode 100755
index 000000000..bbde0e5c6
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/MyEntryRenderer.cs
@@ -0,0 +1,24 @@
+using UIKit;
+using CustomRenderer;
+using CustomRenderer.iOS;
+using Microsoft.Maui;
+using Microsoft.Maui.Controls;
+using Microsoft.Maui.Controls.Compatibility.Platform.iOS;
+using Microsoft.Maui.Controls.Platform;
+
+namespace CustomRenderer.iOS
+{
+ public class MyEntryRenderer : EntryRenderer
+ {
+ protected override void OnElementChanged (ElementChangedEventArgs e)
+ {
+ base.OnElementChanged (e);
+
+ if (Control != null) {
+ // do whatever you want to the UITextField here!
+ Control.BackgroundColor = UIColor.FromRGB (204, 153, 255);
+ Control.BorderStyle = UITextBorderStyle.Line;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default-568h@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default-568h@2x.png
new file mode 100755
index 000000000..3a34926de
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default-568h@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default.png
new file mode 100755
index 000000000..4b9b9f146
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default@2x.png
new file mode 100755
index 000000000..a7349599a
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Default@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-60@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-60@2x.png
new file mode 100755
index 000000000..32918a495
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-60@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76.png
new file mode 100755
index 000000000..f8ef4696c
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76@2x.png
new file mode 100755
index 000000000..a2882210f
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-76@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40.png
new file mode 100755
index 000000000..ad7e66171
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40@2x.png
new file mode 100755
index 000000000..6ab24a4e0
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small-40@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small.png
new file mode 100755
index 000000000..f145292e2
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small@2x.png b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small@2x.png
new file mode 100755
index 000000000..ffb561581
Binary files /dev/null and b/Upgrading/CustomRenderer/MultiProject/Entry/iOS/Resources/Icon-Small@2x.png differ
diff --git a/Upgrading/CustomRenderer/MultiProject/Entry/upgrade-assistant.clef b/Upgrading/CustomRenderer/MultiProject/Entry/upgrade-assistant.clef
new file mode 100644
index 000000000..9d14de83e
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/Entry/upgrade-assistant.clef
@@ -0,0 +1,6412 @@
+{"@t":"2023-04-07T17:58:28.6206500Z","@mt":"Hosting starting","@l":"Debug","EventId":{"Id":1,"Name":"Starting"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
+{"@t":"2023-04-07T17:58:28.7007020Z","@mt":"Configuration loaded from context base directory: {BaseDirectory}","@l":"Debug","BaseDirectory":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleRunner"}
+{"@t":"2023-04-07T17:58:28.7349950Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"NuGet","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/nuget","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7368760Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"BinaryAnalysis","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/binaryanalysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7390060Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Default","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/default","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7410780Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"try-convert","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/try-convert","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7430550Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"VB","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/vb","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7451070Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"Web","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/web","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7471130Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"windows","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/windows","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7485390Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"MAUI","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/maui","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7506700Z","@mt":"Found extension '{Name}' [{Location}]","@l":"Debug","Name":"WCFUpdater","Location":"/Users/dmo/.dotnet/tools/.store/upgrade-assistant/0.4.420501/upgrade-assistant/0.4.420501/tools/net7.0/any/extensions/wcf","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7521280Z","@mt":"Loaded {Count} extensions","Count":9,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionProvider"}
+{"@t":"2023-04-07T17:58:28.7742020Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Common, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.7920780Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Commands, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.7977290Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.DependencyResolver.Core, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8111660Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8190270Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8315070Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8423710Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.ProjectModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8519330Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Configuration, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8735150Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Core, Version=1.25.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.8881560Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Azure.Storage.Blobs, Version=12.13.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8","Extension":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9048650Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Packaging, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9168800Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Protocol, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9260180Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Frameworks, Version=5.8.0.6930, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9688500Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9736540Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9811550Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9859120Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9905190Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:28.9950800Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.0031050Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.0124650Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.0407990Z","@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_Web25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.0560490Z","@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_Web25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.0605110Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"DiffPlex, Version=1.6.3.0, Culture=neutral, PublicKeyToken=1d35e91d1bd7bc0f","Extension":"UA_Web25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.1412040Z","@mt":"Visual Studio path not required on macOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.VisualStudioFinder"}
+{"@t":"2023-04-07T17:58:29.3747520Z","@mt":"Using MSBuild from {Path}","Path":"/usr/local/share/dotnet/sdk/7.0.200/","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.WorkspaceOptions"}
+{"@t":"2023-04-07T17:58:29.5155250Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Credentials, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.6375900Z","@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":"2023-04-07T17:58:29.6671230Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.Versioning, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.8269700Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"MSBuild.Abstractions, Version=0.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_try-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:29.8475620Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8476220Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Configuration.ConfigUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8476590Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8476900Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8477180Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8477440Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8477730Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8477970Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8478240Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8478490Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8478740Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.SetTFMStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8478980Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8479380Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.VisualBasicProjectUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8479640Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Steps.Razor.RazorUpdaterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8479880Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WindowsDesktopUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8480330Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8480450Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8480550Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8480640Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8480870Z","@mt":"Using {Step} upgrade step","@l":"Debug","Step":"Microsoft.DotNet.UpgradeAssistant.Extensions.WCFUpdater.WCFUpdateStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgradeStepOrderer"}
+{"@t":"2023-04-07T17:58:29.8499370Z","@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":"2023-04-07T17:58:29.8597160Z","@mt":"Generating context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
+{"@t":"2023-04-07T17:58:29.9083140Z","@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":"2023-04-07T17:58:29.9134280Z","@mt":"Initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
+{"@t":"2023-04-07T17:58:31.3103420Z","@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":"2023-04-07T17:58:31.5655980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:31.5691300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:31.6823370Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:31.6826610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:31.6906570Z","@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":"2023-04-07T17:58:31.6914640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:31.8227790Z","@mt":"Done initializing context","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildUpgradeContextFactory"}
+{"@t":"2023-04-07T17:58:31.8427380Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:31.8451600Z","@mt":"Selecting all projects in the solution for upgrade.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.EntrypointSelectionStep"}
+{"@t":"2023-04-07T17:58:31.8455090Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select an entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:32.0288480Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"NuGet.LibraryModel, Version=6.2.2.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:32.0797890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.0815240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ae664eec-c96e-4045-b14a-f26bee8f77f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.1076510Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:32.1672210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ae664eec-c96e-4045-b14a-f26bee8f77f7/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.1782250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.4296650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/netstandard.library/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.4747110Z","@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":"2023-04-07T17:58:32.6482550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/netstandard.library/index.json 213ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.6515600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/xamarin.forms/index.json 176ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.6934240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.6959040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/xamarin.forms/5.0.0.1874/xamarin.forms.5.0.0.1874.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.7154010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg 21ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:32.8161180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/xamarin.forms/5.0.0.1874/xamarin.forms.5.0.0.1874.nupkg 120ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.6369430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.6795580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of Xamarin.Forms 5.0.0.1874","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.6906640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of Xamarin.Forms 5.0.0.1874","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.7035670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquiring lock for the installation of NETStandard.Library 2.0.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.7051360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Acquired lock for the installation of NETStandard.Library 2.0.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:33.8996480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed NETStandard.Library 2.0.3 from https://api.nuget.org/v3/index.json with content hash st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.0795960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Installed Xamarin.Forms 5.0.0.1874+582-sha.cfd463fc4-azdo.4343386 from https://api.nuget.org/v3/index.json with content hash DddatpRCi4WvM4pBuDfRtKr/KkhFZoVE1KLNFwbOfltVUecqf78y8VaIDDU/iddfNfMSSzoqDBWpZgNj6lFyxA==.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3340830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3452600Z","@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":"2023-04-07T17:58:34.3876650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3877640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a0894e97-a6d4-4afb-ba88-2994a5f94dba/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3880150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a0894e97-a6d4-4afb-ba88-2994a5f94dba/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3880920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3884970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3960730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.3962010Z","@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":"2023-04-07T17:58:34.4037070Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4043020Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4063230Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4080880Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI","TFM":"net7.0-android","Name":"CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4138020Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.4250120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4276080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e24f3319-5191-42f2-b3ad-e0dea1197964/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4278600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e24f3319-5191-42f2-b3ad-e0dea1197964/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4279110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4280080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4298110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4298790Z","@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":"2023-04-07T17:58:34.4307950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4308410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e2187750-d198-40ab-8964-29d14d8ea5d3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4309720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e2187750-d198-40ab-8964-29d14d8ea5d3/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4310100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4310770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4327480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4328010Z","@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":"2023-04-07T17:58:34.4333110Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4334140Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4334870Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4335610Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI","TFM":"net7.0-android","Name":"CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4383150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4386460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0cd95c84-0337-43d3-9fd1-0254cef3178d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4388770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0cd95c84-0337-43d3-9fd1-0254cef3178d/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4389400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4390340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4409230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4410060Z","@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":"2023-04-07T17:58:34.4418140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4418510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2e219124-e300-4bb2-bbaa-8c144f30d3c6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4419620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2e219124-e300-4bb2-bbaa-8c144f30d3c6/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4419990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4420630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4437450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4437960Z","@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":"2023-04-07T17:58:34.4464930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4468910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/53ca18d9-afad-42ba-9e8d-c25d2dddbbc4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4470090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/53ca18d9-afad-42ba-9e8d-c25d2dddbbc4/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4470480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4471250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4513990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4514940Z","@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":"2023-04-07T17:58:34.4525180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4525810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/afc0cade-8e6a-48d7-bf86-bf126d423f02/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4527080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/afc0cade-8e6a-48d7-bf86-bf126d423f02/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4527480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4528180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4568370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4569280Z","@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":"2023-04-07T17:58:34.4646810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4647620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9e88ccc9-53a9-4d82-94a9-177267aeeb67/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4649320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9e88ccc9-53a9-4d82-94a9-177267aeeb67/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4649750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4650710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4667930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4668540Z","@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":"2023-04-07T17:58:34.4676140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4676480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/25401140-5519-473d-96f1-5f212d0b937b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4677450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/25401140-5519-473d-96f1-5f212d0b937b/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4677760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4678350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4694000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4694510Z","@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":"2023-04-07T17:58:34.4727040Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.4729970Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.4767630Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:34.4834270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4856460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/40098732-6408-4404-8b2d-efb913674cc5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4861300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/40098732-6408-4404-8b2d-efb913674cc5/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4862020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4862960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4880050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4880620Z","@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":"2023-04-07T17:58:34.4888800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4889530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f3fe027b-3f9a-4aba-bf57-a8e6155a54c7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4890870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f3fe027b-3f9a-4aba-bf57-a8e6155a54c7/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4891270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4891950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4924720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4925540Z","@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":"2023-04-07T17:58:34.4929630Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4930630Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4930930Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.4931390Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI","TFM":"net7.0-android","Name":"CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:34.4947540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4949710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/996a2866-f238-44e5-a4a8-7ffe5d06bdcb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4954420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/996a2866-f238-44e5-a4a8-7ffe5d06bdcb/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4954960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4955820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4973890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4974600Z","@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":"2023-04-07T17:58:34.4985310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4986780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/39172f60-e9ee-404d-84dc-a36bcc5df8fd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4989280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/39172f60-e9ee-404d-84dc-a36bcc5df8fd/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4989970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.4991070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5009660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5010540Z","@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":"2023-04-07T17:58:34.5023010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5024070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fe87c995-7deb-45c6-9097-a10dd5f2a389/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5025350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fe87c995-7deb-45c6-9097-a10dd5f2a389/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5025730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5026470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5042610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5043120Z","@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":"2023-04-07T17:58:34.5049850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5050170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a7099276-c67f-48d0-97f9-474d2cc72203/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5051110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a7099276-c67f-48d0-97f9-474d2cc72203/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5051420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5051980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5079540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5080220Z","@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":"2023-04-07T17:58:34.5090090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5090700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a8c7f27d-a2f6-45f5-b9d8-a49ce5f19c7d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5091740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a8c7f27d-a2f6-45f5-b9d8-a49ce5f19c7d/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5092050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5092630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5108300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5108810Z","@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":"2023-04-07T17:58:34.5115310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5116320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/367a46a1-c42d-45bc-9033-ece91c30e3f1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5119030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/367a46a1-c42d-45bc-9033-ece91c30e3f1/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5119500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5120180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5136170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5136650Z","@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":"2023-04-07T17:58:34.5441230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5442710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/51a8bbdc-9e65-4e85-b436-1cdb54d39700/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5445060Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5452470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5452800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5486750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5487670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/23fbf9a7-51ab-412a-8ab0-6f3656cf475c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5488610Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5492810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5493030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5505880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5506270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5910b7e9-8542-4300-be39-f1b639a4ecf8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5506970Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5511030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5511230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5517870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5518170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/045639e3-9a07-4b3e-96b4-77abde7c587d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5518820Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5522890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5523100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5532040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5532350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7bafe1b2-6559-45ab-b315-c9893e0be515/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5532980Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5536970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5537220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5543080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5543350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/14d61d47-25f9-4d18-8c72-b16b894d3ce0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5543940Z","@mt":"[NuGet] {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":"2023-04-07T17:58:34.5548050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5548240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5922580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5923620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/28a3c33b-727e-4508-8d1d-a4347d6c8300/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5925020Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.5929490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5929730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5937280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5937600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/51214d05-dc2c-4df9-9a64-6932aa3fd17e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5938250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.5942280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5942470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5950980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5951310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2dd23655-f847-4a72-9eb8-5a684a9df23f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5951980Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.5956010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5956240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5962300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5962580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e2ccb340-c62f-4c72-be07-c4661d9032bc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5963180Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.5967280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5967460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5976010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5976430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/702035e0-b49a-4aec-a77b-544cc528eafb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5977380Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.5981590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.5981800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.6038010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.6038500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/632ad07b-5857-483d-8e94-b07171266301/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.6039470Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:34.6043600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.6043810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.6084270Z","@mt":"Project {File} cannot be loaded: {Message}","@l":"Error","File":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","Message":"Could not load project. Please ensure the selected VS instance has the correct workloads installed for your projects. If Upgrade Assistant selected the incorrect VS version, please pass the argument --vs-path with the appropriate path. You can see the Visual Studio instances searched by running with the --verbose flag. If you are migrating UWP to Windows App SDK project, make sure you are using the latest version of VS 2022 (>17.2)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Checks.CanLoadProjectFile"}
+{"@t":"2023-04-07T17:58:34.6094490Z","@mt":"Project {Name} was selected","Name":"CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:34.6097660Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:34.6106650Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.6137830Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6138420Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6138650Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6138870Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.6139140Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.6139810Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6214500Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6215120Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6222080Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.6597090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPageXaml.xaml.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/MainPageXaml.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7097420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MyEntry.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/MyEntry.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7835840Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPageXaml.xaml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/MainPageXaml.xaml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7937920Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPage.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/MainPage.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7941680Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7971220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/App.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/App.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.7998090Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.csproj.FileListAbsolute.txt","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.csproj.FileListAbsolute.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8004320Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.GeneratedMSBuildEditorConfig.editorconfig","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.GeneratedMSBuildEditorConfig.editorconfig","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8022580Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.AssemblyInfoInputs.cache","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.AssemblyInfoInputs.cache","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8029510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.AssemblyInfo.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/obj/Debug/netstandard2.0/CustomRenderer.AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8034600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8059120Z","@mt":"Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8073390Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:34.8078080Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.8110400Z","@mt":"Project {ProjectPath} already targets SDK {SDK}","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SDK":["Microsoft.NET.Sdk"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
+{"@t":"2023-04-07T17:58:34.8110990Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.8134190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8143250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad56225f-b24e-4487-a8fc-43dbc2ffdc44/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8144910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad56225f-b24e-4487-a8fc-43dbc2ffdc44/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8145410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8146260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8164770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8165630Z","@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":"2023-04-07T17:58:34.8173570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8173980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e644657d-cfbe-4d17-91ee-be98b03b51f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8175010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e644657d-cfbe-4d17-91ee-be98b03b51f7/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8175360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8176010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8192980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8193750Z","@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":"2023-04-07T17:58:34.8205220Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.8240820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8249080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1e61bbb9-0193-444d-8cad-5c1ce368744e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8251160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1e61bbb9-0193-444d-8cad-5c1ce368744e/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8251640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8252440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8269700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8270830Z","@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":"2023-04-07T17:58:34.8285370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8286020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/781096b2-7e2c-47c9-91a0-2a244d6452de/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8287580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/781096b2-7e2c-47c9-91a0-2a244d6452de/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8287980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8288780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8334060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8335210Z","@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":"2023-04-07T17:58:34.8348760Z","@mt":"TFM needs to be updated to .NET MAUI TFMs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"}
+{"@t":"2023-04-07T17:58:34.8350070Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.8350480Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:34.8351100Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"}
+{"@t":"2023-04-07T17:58:34.8394400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8402220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/64bfd3e1-8dc3-4f61-9b62-73758625e1ca/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8403710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/64bfd3e1-8dc3-4f61-9b62-73758625e1ca/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8404110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8404850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8421120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8421590Z","@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":"2023-04-07T17:58:34.8428220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8428510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/11d371d3-fc4b-4668-8cae-2ebea2593933/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8429330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/11d371d3-fc4b-4668-8cae-2ebea2593933/project.txt...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8429620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Restoring packages for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8430150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Resolving conflicts for .NETStandard,Version=v2.0...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8445380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on .NETStandard,Version=v2.0.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:34.8445820Z","@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":"2023-04-07T17:58:34.8459460Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"TargetFramework","PropertyValue":"netstandard2.0","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:34.8466250Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:40.9643070Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9644940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9645920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9646930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647150Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647550Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647860Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9647950Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9648250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9648350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9648450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9648540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:40.9648640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:41.0839840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:41.0842670Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:41.1294010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:41.1298230Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:41.1321440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:41.1412370Z","@mt":"Added TFMs to .NET MAUI project {ProjectName}","ProjectName":"CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"}
+{"@t":"2023-04-07T17:58:41.1433690Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiPlatformTargetFrameworkUpgradeStep"}
+{"@t":"2023-04-07T17:58:41.2311490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2312460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3b4b8272-b56e-4817-8887-95ab7496b001/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2319180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2328820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2329390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2329850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2329960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2342660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2343020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0c68545d-e692-47ef-acf8-6920edfac868/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2343740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2349470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2349620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2350000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2350090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2387400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2387940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/43436145-d311-46e5-a1aa-5922fd4dded4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2388750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2394180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2394320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2394680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2394770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2400580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2400810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/da59069b-35b8-4620-a77c-359620a10880/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2401250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2406540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2406650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2407000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2407080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2457480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2458050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bdb870d8-bbca-4f96-aeca-80c008cd61d4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2458970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2464720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2464850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2465200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2465280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2470630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2470790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/304bd6a2-84a0-416a-a2b2-25bfd4e21049/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2471190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2476380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2476480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2476860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2476960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2482530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2482760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a4090bbb-014a-48f7-95dc-7be1b875b083/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2483150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2488770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2488970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2489370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2489470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2495090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2495300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fd6188e9-75d2-4c64-8691-0766756eca65/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2495940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2501380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2501510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2501870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2501960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2506240Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.2540880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2547410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/298fb1b7-f0f6-4d9f-a696-a1e25cd38587/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2548090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2553570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2553690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2554060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2554150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2559700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2559860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/43865562-194e-4991-af28-a91225478061/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2560290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2579710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2580040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2580430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.2580520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:41.4375370Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET SDK:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4376280Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Version: 8.0.100-preview.2.23157.25","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4376380Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Commit: 54801b2435","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4376470Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Runtime Environment:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4430960Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Name: Mac OS X","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4431350Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Version: 13.2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4448490Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" OS Platform: Darwin","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4546600Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" RID: osx.13-arm64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4546890Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Base Path: /usr/local/share/dotnet/sdk/8.0.100-preview.2.23157.25/","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4562690Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Host:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4562850Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Version: 8.0.0-preview.2.23128.3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4562960Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Architecture: arm64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563070Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Commit: 30b879924a","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563150Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET SDKs installed:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563220Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 7.0.200 [/usr/local/share/dotnet/sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563290Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 8.0.100-preview.1.23109.10 [/usr/local/share/dotnet/sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563340Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 8.0.100-preview.1.23115.2 [/usr/local/share/dotnet/sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563390Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 8.0.100-preview.2.23151.8 [/usr/local/share/dotnet/sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563440Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" 8.0.100-preview.2.23157.25 [/usr/local/share/dotnet/sdk]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563530Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":".NET runtimes installed:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563590Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 7.0.3 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563660Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 8.0.0-preview.1.23107.3 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563710Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 8.0.0-preview.1.23112.2 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563800Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 8.0.0-preview.2.23128.10 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563850Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.AspNetCore.App 8.0.0-preview.2.23153.2 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4563970Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 7.0.3 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564050Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 8.0.0-preview.1.23106.5 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564100Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 8.0.0-preview.1.23110.8 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564160Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Microsoft.NETCore.App 8.0.0-preview.2.23128.3 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564220Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Other architectures found:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564270Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564320Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Environment variables:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564360Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" Not set","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564430Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"global.json file:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564480Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" /Users/dmo/work/global.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564530Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Learn more:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564580Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" https://aka.ms/dotnet/info","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564630Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":"Download .NET:","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.4564690Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet","Data":" https://aka.ms/dotnet/download","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.6823040Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.6825130Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"--------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.6825880Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 8.0.0-preview.2.7832/8.0.100-preview.2 SDK 8.0.100-preview.2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.6826430Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:41.7351370Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"}
+{"@t":"2023-04-07T17:58:41.7353010Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7357550Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7364700Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7367400Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7435980Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7456570Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7460140Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7461860Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7463470Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7512100Z","@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":"2023-04-07T17:58:41.7575680Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7579640Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7584930Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:41.7586830Z","@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":"2023-04-07T17:58:41.7608910Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7616350Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.1874","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:41.7625100Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7625940Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:41.7640350Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:42.5192260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193880Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5193990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194120Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194340Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5194970Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195320Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195670Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5195910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196150Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196270Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196710Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5196920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197020Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197130Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197370Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.5197610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.6031790Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:42.6034280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.6319430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:42.6322100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.6341840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:42.6368240Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.6963860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6964610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5804f7db-c2bc-4ba4-8416-4ae55f00e443/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6967580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6974940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6975180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6975580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6975680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6982350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6982560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a8fb1c1a-d379-4a44-8872-bcc8fa6389d0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6983190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6989270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6989730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6990130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6990230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6999320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.6999720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f6d29531-6375-49df-a3f6-d2274529fbfe/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7000320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7005630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7005750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7006100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7006190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7011370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7011530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5a6744df-10b9-4abf-86ff-6afbfdc13432/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7011920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7017060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7017170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7017520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7017600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7023530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7023760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/45da8aed-8583-4a33-99c6-e1b6fba84945/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7024100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7029750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7029860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7030240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7030340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7035570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7035720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5f80383d-5344-4b71-a863-b9af639e2488/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7036120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7165810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7166460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7166900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7167010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7176360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7176710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/53385ab0-ece5-4a97-8230-a49a24b45afe/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7177710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7183320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7183460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7183820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7183900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7190510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7190780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c462421d-9643-4106-b8b8-2a86a16a7952/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7191360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7197030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7197150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7197510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7197580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:42.7203140Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.7204740Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.7250260Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.7251000Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.7251480Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.7252470Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.7538900Z","@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":"2023-04-07T17:58:42.9207000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 166ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:42.9836980Z","@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.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
+{"@t":"2023-04-07T17:58:42.9857950Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.9858250Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.9858940Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:42.9859330Z","@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":"2023-04-07T17:58:42.9863170Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.9870300Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:42.9872310Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.9872820Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:42.9873240Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:43.7132710Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133570Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133780Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133870Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7133960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134420Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7134940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135020Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135550Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7135990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136170Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7136890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.7715510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:43.7717920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.8126130Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:43.8128710Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.8160300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:43.8176170Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.8897450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8898270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c59234b5-f914-43d3-a9a1-91eea4371828/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8900070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8906450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8906630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8907020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8907120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8913610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8913980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2f22ded1-5605-47fc-971e-2c7923bcf25b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8914700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8920260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8920420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8920810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8920920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8927380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8964220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/16747c03-87d1-4df5-8f2f-c706c8c3b2ca/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8965580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8971250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8971410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8971800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.8971900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9001960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9002720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/012f9d54-ae32-412e-9e30-10fbfbe12638/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9003840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9009550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9009720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9010100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9010200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9041570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9042450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cd951871-9008-40bd-bee5-71e2b8e57978/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9043650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9049720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9050070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9050840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9050990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9099020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9099600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4f02e7ba-9de4-437e-a3f1-efabc400808e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9100550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9129180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9129590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9129990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9130100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9139160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9139790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d2c8a5ad-94d4-42f0-b5f6-1dea615a4e72/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9140750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9169150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9169380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9169750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9169840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9176080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9176320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d2fe89f0-8835-47c9-9753-006b25bff310/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9176980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9265110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9265860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9266260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9266350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9272520Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9273580Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9301090Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9301790Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9302390Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9303380Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9332370Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:58:43.9332550Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9333010Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9333450Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9334340Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9367230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9376240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/75ddc88c-bc64-4845-a15c-2e7af4c1e7f2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9377160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9382730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9382870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9383260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9383350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9390090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9390660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/51614b70-e16e-4d24-94d1-3bc964cdfeec/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9391360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9397240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9397400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9397770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9397850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9411930Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9413350Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9414930Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9417010Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9482960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9483760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/24e9a68f-5515-46ee-8602-297d215c3f8c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9484970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9491220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9491460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9491850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9491950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9498070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9498290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/72da5080-4ff6-4294-9560-405440c49c50/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9498900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9504790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9505020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9505420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9505740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9520210Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9520960Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9521520Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9522960Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9553180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9553750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/507987e1-8631-45d0-a007-ee7bf043de8d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9554600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9560050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9560190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9560550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9560630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9602280Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9603100Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9605050Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:58:43.9605630Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9607690Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9634290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9635210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/57f98412-a212-4e4f-ab87-8fd2b8554940/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9636310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9641930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9642080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9642440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9642650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9649080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9649260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c60a16f5-b8c2-46e4-b64d-1c0de2d13423/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9649710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9654930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9655030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9655380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9655460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:43.9658650Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:43.9659270Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:43.9659420Z","@mt":"Could not find an output type","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:43.9660300Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:43.9669120Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9669570Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9670050Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9670170Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9671080Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:43.9671450Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:43.9671780Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9671850Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9672410Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:43.9672960Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:43.9673280Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9673340Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:43.9673880Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:43.9719650Z","@mt":"NuGet package {NuGetPackage} not found in package cache","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:43.9756780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.0191020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 43ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.0229990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" GET https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.4.410601/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.4.410601.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.0468620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3-flatcontainer/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/0.4.410601/microsoft.dotnet.upgradeassistant.extensions.default.analyzers.0.4.410601.nupkg 23ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.1248340Z","@mt":"Package {NuGetPackage} downloaded from feed {NuGetFeed}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","NuGetFeed":"https://api.nuget.org/v3/index.json","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.1336430Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.410601","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:58:44.1345660Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","TargetFramework":["net7.0-android","net7.0-ios"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
+{"@t":"2023-04-07T17:58:44.1345910Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1346630Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1346800Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1348020Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1348710Z","@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":"2023-04-07T17:58:44.1348810Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1349160Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1349230Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1349850Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1350090Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1350430Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1350500Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1351080Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1351380Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:58:44.1351480Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1351820Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1351890Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1352430Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1357090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1357770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1d8328dc-059b-4a56-b9f2-719b45448960/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1358590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1364140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1364270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1364620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1364700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1370040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1370310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e63d38e0-e73a-40c2-a920-0b8f459354bb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1370950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1376420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1376540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1376920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1377020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1380500Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1381060Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1381170Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1381830Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1385300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1385630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/037f19bf-12e8-4afb-90d8-878f0a375fc0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1386280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1405090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1405460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1405860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1405960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1412690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1412970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/655df5bb-a6c6-431e-9f35-3a2a1f018ec5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1413680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1419000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1419180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1419540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1419620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1423240Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1424070Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1424230Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1424930Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1430600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1431300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b0a7ab36-0b45-4ad2-a9b7-05c0a847777e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1432610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1438800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1439510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1440080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1440190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1444500Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1445240Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1445640Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:58:44.1446100Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1469010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1469720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eefb8434-4546-47a3-ad44-51f0da0db640/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1470610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1476190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1476340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1476700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1476800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1482530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1483060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ee5f91ac-fd92-40e8-9d84-178cc24aa8a3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1484140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1489840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1490000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1490360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1490450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1500870Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1524540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1525110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/57ad28e0-f7f1-4174-aa59-03dba7c1abaa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1525790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1531240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1531350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1531720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1531800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1537180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1537360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/238e5196-286a-4c99-932d-cafed00ee2d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1547260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1552640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1552740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1553090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1553170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1563940Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:58:44.1564610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1564860Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:44.1568280Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:58:44.1606590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1607070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/463ee8eb-66b5-4cbe-8eff-33b7a36a331f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1607860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1613340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1613480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1613840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1613930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1619410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1619620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/75557a4e-a7f4-4b12-b6d4-52e4337af5cb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1620350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1625690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1625810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1626170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1626250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:44.1644150Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"DebugType","PropertyValue":"full","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:44.1646230Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:44.8728380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729550Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729780Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8729980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730130Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730270Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730580Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730880Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8730950Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731020Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731170Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8731990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8732060Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.8732140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.9458850Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:44.9461030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.9934380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:44.9936720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.9954840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:44.9968090Z","@mt":"Updated {ProjectType} project properties for .NET MAUI project {ProjectName}","ProjectType":"Maui","ProjectName":"CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:58:44.9972790Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:58:45.0565740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0566400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ab704d22-4c11-44d6-90cb-ae2c9ab78842/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0569510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0575860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0576060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0576440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0576530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0583600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0583830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/04b8e812-a15a-4d02-ac0c-e0923a13813e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0585200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0590520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0590650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0591000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0591080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0596950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0597150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/788629c7-4252-4dd8-b629-51af11758f31/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0597840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0603260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0603430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0603790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0603880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0608980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0609250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/796834c1-8f83-4d77-bb60-8e646487d981/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0610440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0715800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0716230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0716600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0716690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0725630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0726010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31c5fcf6-5c23-4121-98df-0fc74cde5f10/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0726730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0732030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0732140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0732490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0732660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0738740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0739520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/24bd092a-7255-413f-985b-11bb45f54501/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0740440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0746030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0746180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0746550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0746640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0758110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0758320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ac433c7-5588-44cc-9b1b-f12ca14c4bcf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0758950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0764420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0764550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0764920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0765000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0769990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0770170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/77e70b46-879f-4989-863d-02f9947c1a30/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0770590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0775740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0775850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0776220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0776290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0781770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0782210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d02ed94b-d91e-4e56-89fd-0f35c8acabec/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0783050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0788680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0788800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0789150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0789250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0816130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0816430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e899cb19-9da3-46fb-a375-413b0809b3e3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0817270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0822810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0822980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0823340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0823430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0830690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0831150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4364331d-b517-4e93-be80-a4543dca2c94/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0833330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0839460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0839640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0840010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0840090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0845330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0845470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1216cbc8-2398-48ec-82a9-7cf3dfb2edaf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0845980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0851250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0851340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0851700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0851780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0855410Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:45.0939710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0940020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3e90203e-0dce-4f41-bf08-36d48ba51d6b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0940670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0946060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0946180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0946550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0946650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0952240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0952770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2529bd1f-dba5-4d21-b081-c725b6e41705/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0953610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0959350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0959490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0959860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0959960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:45.0993770Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.0995120Z","@mt":"Needed items: {NeededFiles}","@l":"Debug","NeededFiles":"MauiProgram.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.0995470Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:45.0995650Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:45.0999950Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.1091960Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"CustomRenderer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.1190180Z","@mt":"Added template file MauiProgram.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.7902520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903410Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7903980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904060Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904300Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7904920Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905680Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905750Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7905970Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906120Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.7906590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.8389640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:45.8391720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.8807620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:45.8809800Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.8903440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:45.9530380Z","@mt":"Added MauiProgram.cs to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:45.9530940Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:46.7396790Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:46.7397450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397570Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7397970Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398400Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7398980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:46.7399070Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:46.7399140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399450Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399670Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399810Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7399960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400170Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400380Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.7400600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:46.8200840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/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":"2023-04-07T17:58:46.8203000Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.8502880Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:46.8505070Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.8522630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.8536580Z","@mt":"{ItemCount} template items added","ItemCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:46.8537520Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:58:46.9034360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9035130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aa3215ab-d665-432d-a7ae-fbd9efda1d63/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9036760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9043940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9044110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9044540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9044630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9051800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9052260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dd49adbf-c541-447e-965f-39b4ac4ad6b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9052800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9168090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9168500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9168940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9169020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9178180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9178540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bf3c8e5a-6fe5-4744-bc8e-7e87dc432676/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9179400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9185240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9185500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9185900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9186020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9192180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9192530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ee80edcd-e0da-4ffb-855a-35c4370e2632/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9193220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9198770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9198920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9199290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9199380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9206730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9207210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5e1a91c2-8be4-4166-9ff1-c50451f4d5c2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9209660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9216550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9216770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9217130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9217220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9222300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9222540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d3dc8045-e9ee-4ed2-84a1-94f9c810c821/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9223660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9231590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9231780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9232140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9232220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9254170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9254390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5898855d-a8a2-40e5-a7ba-d7dcceb35de0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9255150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9288440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9288760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9289130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9289250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9295990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9296480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6328ff53-25fc-4601-aa41-961a54d639b8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9298690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9306150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9306400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9306790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9306880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9322380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9322660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d4493288-bf58-40f1-836c-7f734f93271c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9323460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9328920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9329090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9329450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9329540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9335010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9335240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e186b182-dbf1-4e64-86b5-e5e191c7b8d8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9335750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9341050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9341160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9341520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9341590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9347350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9347650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/92604aad-b742-4b4b-8b4a-d3d4c9b8cb75/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9348200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9353800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9353960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9354330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9354420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9359660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9359830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/88cdd166-a2ef-4c64-9932-ccf5f9397fe0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9360290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9365850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9365940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9366370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9366450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9390210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9390970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/61fc50fa-ccfb-4c32-9741-ddf1c04c6ce2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9392240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9397810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9397960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9398330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9398450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9404960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9405170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/26d68649-12e1-4c53-881f-1e93f298e9df/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9405640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9411400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9411690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9412090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9412210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9419710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9420330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/78634110-5ef4-4943-b800-8248612e129d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9421020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9426600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9426710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9427060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9427140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9432190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9432330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0d2bee83-ba6f-4dd8-8c24-958d0d35c810/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9432760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9437900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9437980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9438330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9438410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:46.9442420Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:46.9493270Z","@mt":".NET MAUI project has XAML files that may need to be updated","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"}
+{"@t":"2023-04-07T17:58:46.9500830Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:46.9501310Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:46.9506010Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"}
+{"@t":"2023-04-07T17:58:46.9784030Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:46.9787620Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:47.6640210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641020Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641230Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641310Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641550Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6641990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642060Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642570Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642790Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6642960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643400Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643480Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643550Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.6643900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.7154530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:47.7156570Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.7612180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:47.7614220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.7639430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:47.7661120Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"}
+{"@t":"2023-04-07T17:58:47.8319580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8320670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/99e229c0-26e0-419f-8e40-586aec050df8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8322550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8328940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8329090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8329500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8329580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8337310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8337610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/157d1371-e4ca-4450-bf95-d01aed467469/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8338320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8344500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8344630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8345060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8345150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8352050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8352210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dad166fc-08a4-41c8-86d8-fdf5b8beedc6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8352740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8476700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8477310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8477700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8477790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8485990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8486240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9243f338-bec3-4286-9e7d-9c2ffe071f24/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8487050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8492500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8492620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8492970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8493050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8499450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8499680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eca875af-a51e-4aa9-9e91-ccb405d1cc47/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8500310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8505710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8505900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8506260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8506340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8511710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8511950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a0ceb09c-f86c-4920-8a82-d48f280a8dea/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8512420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8517650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8517750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8518100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8518170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8523690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8524180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/22fbcc2e-bbff-44ae-951c-a0257193d865/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8526650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8533750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8533890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8534240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8534320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8538790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8538960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6727afe8-be44-4b8d-9ee5-bf73cd0e08a3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8539370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8544570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8544660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8545000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8545080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8726870Z","@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_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:47.8740990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8741410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ac6a5b0b-6f71-4584-bafe-597b29bb09b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8742380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8747980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8748140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8748510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8748610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8754330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8754610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/91a0f64e-8b7b-4bcd-8967-52f2fef7cf3a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8755610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8761500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8761630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8762010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8762130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8799240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8799730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/989209eb-2b46-44df-963f-314c8b8313e0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8800370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8805800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8805950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8806310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8806390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8811870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8812180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dc95f26e-0904-4d5d-8681-68342e3557b7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8812870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8818280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8818410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8818780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8818880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8825090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8825310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/718210d8-8309-4429-b23b-d2ed720bf4b9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8825730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8830980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8831090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8831440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8831520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8837410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8837630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad2b9931-c844-464e-b112-272367bee4f4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8838170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8855690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8855940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8856360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8856440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8863580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8863810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5eecab6b-b7f0-47f8-a9c9-caab4097fc14/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8864340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8869620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8869720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8870070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8870170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8874740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8874890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4bcb3480-c295-4a2b-bcad-9cf1de1e4626/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8875280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8880450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8880530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8880870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8880940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8885930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8886120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/985ade1f-46a0-4fe5-bb82-fccabbd2ec33/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8886490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8891630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8891730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8892070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8892150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8897210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8897390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/466b3c6b-8b6d-447b-b0ae-3c85db689f29/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8897990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8903290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8903430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8903790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8903870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8912740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8913310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/506b5422-ca22-4a96-9642-27571016ac22/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8914820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8931580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8931850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8932210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8932290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8938540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8938820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/db11e4c1-fbc1-4580-93ef-3009378c9820/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8939780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8945380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8945520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8945890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8945970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.8952340Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:47.8976300Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:47.9031060Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:58:47.9054220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9073900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/92d275a2-95a5-4733-b2dd-e68c1f7c3880/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9074930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9080590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9080730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9081100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9081190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9087270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9087450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fa10e6c8-cd6f-4ca5-9f4e-76597859b019/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9087900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9093130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9093240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9093590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9093660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9105680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9106200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/69b60872-c5d3-4181-9256-2f8709b090ee/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9106910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9112350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9112480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9112860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9112940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9118540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9118710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b1d3f5af-6f50-43cf-b7ac-03354d4a3f61/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9119150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9124330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9124440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9124790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9124870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9145830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9158270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3403addf-de02-4b9f-a424-5bc700afa6db/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9159730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9165980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9166210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9166600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9166700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9171970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9172140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/054370d2-cf34-4e82-8e72-e64e4da2fc32/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9172650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9177830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9177930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9178290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9178380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9184020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9184260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/80f35f28-9fe5-4cb8-b261-312b6fb112b5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9184660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9191350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9191540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9191910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9191990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9198790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9199010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1dcfd0e1-ceba-4bb4-87b6-3b99145747c9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9199610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9204790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9204890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9205240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9205340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9211430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9211640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4552c31c-7e30-46f5-9a5e-17636b2cf6f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9212050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9217340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9217470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9217820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9217900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9222420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9222560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3faf59c5-2f37-431d-9104-8570b8449467/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9222960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9238890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9239130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9239480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9239560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9246720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9247160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/175117d7-c721-4ff6-9bba-91b05d181859/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9247710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9252870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9252960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9253310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9253380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9257780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9257940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a2d32baa-072f-4aa7-82f0-4f819ea96988/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9258440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9263790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9263920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9264280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9264370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9271900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9272400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/28f9756f-594c-4867-8f6b-4263c6178a88/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9273050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9278250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9278370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9278760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9278860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9283520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9283690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/473b2f34-acea-4ba8-8b60-eba551b34eda/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9284070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9289220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9289340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9289770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9289890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9297480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9297860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/af3a3ec1-84f4-474f-89dc-2d8ad2be0145/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9298390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9314640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9314860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9315250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9315330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9321420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9321610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/600cfe9d-9a47-4254-8c51-bfae87042e39/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9322130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9327400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9327520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9327870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9327950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9335170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9335410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/48b7fb3a-c94f-4cca-9646-f015111aafda/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9335870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9340990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9341080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9341430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9341500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9346120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9346300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/345d414d-dd51-4484-84be-28fc04a43ae4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9346660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9351850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9351970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9352310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9352380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9358140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9358610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b6dd7224-064b-4a4c-97dc-87db4c81345b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9359330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9364790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9364920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9365270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9365350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9370580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9370900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f4458652-96a8-4fb5-844b-cbbe71cd0274/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9371540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9377080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9377240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9377600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9377690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9384240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9384480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7976dff5-d65d-4e69-b7e4-8a34527c2a5d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9384920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9399520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9399720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9400080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9400150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9406020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9406190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9da5271c-6a0a-427c-932d-e59cba473c03/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9406760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9411930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9412020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9412360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9412430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9418560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9418770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8457362a-e5fe-4dc8-a1ce-97c604c92675/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9419180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9424350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9424430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9424790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9424860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9429360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9429610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/143e52c5-3c79-4af1-8faa-b97645dfb11e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9430070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9436180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9436380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9436740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9436840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9443330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9443540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/919da877-3785-499e-960b-443d2e91766b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9444050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9449290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9449430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9449810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9450120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9454800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9454950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c395b74d-cc99-4173-91ae-78182e005129/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9455380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9471640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9471830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9472180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9472260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9479140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9479320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/343dda1e-25f4-4aab-8795-3105325bdd0e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9479780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9484990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9485090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9485440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9485520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9490210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9490350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/53499285-4146-4dac-bf8f-7331473ef0df/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9490720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9496020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9496100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9496440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9496510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9501810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9501990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a2383b6c-55a4-48ba-857d-092e0fb6aa9e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9502370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9507480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9507580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9507930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9508000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9512200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9512320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2c9cd88c-f199-4e10-95db-d97eaac761f4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9512650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9517720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9517820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9518170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9518250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9523560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9523740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/45770301-27d2-4066-8b7f-1a7464c20e8b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9524100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9529210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9529310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9529650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9529730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9549240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9549550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bceab42e-508f-4d2a-8393-0b0b1e541237/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9550130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9555420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9555540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9555900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:47.9555990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.1023540Z","@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":"2023-04-07T17:58:48.1154580Z","@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":"2023-04-07T17:58:48.1157610Z","@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":"2023-04-07T17:58:48.1222370Z","@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":"2023-04-07T17:58:48.1405470Z","@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":"2023-04-07T17:58:48.1509510Z","@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":"2023-04-07T17:58:48.6263570Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":4,"ProjectName":"CustomRenderer(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:58:48.6283260Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6283990Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284120Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284210Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284290Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284360Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284440Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284520Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284600Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":4,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284680Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284810Z","@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":"2023-04-07T17:58:48.6284910Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6284980Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6285060Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6285150Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6285220Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6285300Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.6285390Z","@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":"2023-04-07T17:58:48.6285610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:48.6293540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6294250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5bbbbed7-2b8c-496c-8e81-1526b2af3eb6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6295400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6355550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6356100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6356520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6356640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6365320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6365550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b4791e68-e3d0-4a86-b6ee-e0178ad45a81/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6366310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6371840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6372000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6372380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6372450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6380050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6380570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ea3bd686-57cc-4b67-9597-4eb366a75e3e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6382800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6389780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6389910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6390300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6390380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6395220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6395430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6ad9230a-1b0c-4c58-95af-b74a7c66a5c1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6396120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6401570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6401700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6402060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6402150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6408490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6408740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/397ec70f-a33e-4d32-995f-23297ef5443f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6410380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6416150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6416290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6416670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6416760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6423460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6423670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/77b2ba65-bec3-4fbc-83a1-7b6ddb4aebb4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6424270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6429860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6429980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6430340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6430410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6471740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6472290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/202a0059-a68f-4e87-a697-596dd3a02080/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6473060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6478620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6478770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6479130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6479210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6511490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6512140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c0da5573-9f1d-471b-8dca-edb97ba11c2e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6513230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6520090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6520510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6520930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6521030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6554130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6554630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1b3cec55-3c92-43f8-a869-6ad7b994aae0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6555230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6560750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6560890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6561260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6561340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6600170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6600710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7fa05711-df71-45bf-bb35-d9269919746b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6601700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6607340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6607470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6607820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6607900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6641270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6641930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b82a8d1e-fb41-4405-a9b2-14b3161e3a28/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6644360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6671310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6671490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6671870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6671970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6677470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6677800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/21b9e371-d255-4520-9dd0-5d3f6f759a1f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6701100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6756670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6757130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6757550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6757630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6767900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6768300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/affe8696-f1d7-4c3b-8023-edb64f03e539/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6769110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6774530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6774670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6775030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6775120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6780290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6780510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c684b49a-6170-4fe2-8440-9cce397b3862/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6781050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6786360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6786470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6786830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6786910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.6799630Z","@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":"2023-04-07T17:58:48.6803440Z","@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":"2023-04-07T17:58:48.8422980Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:48.8424430Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/App.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.8509430Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:48.8509920Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPage.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.8551790Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:48.8552040Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MainPageXaml.xaml.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.8580280Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:48.8580530Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/MyEntry.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:48.8581400Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:58:48.8589340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8597660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7ae15f3d-e88e-49aa-abaa-bdcec7a9069e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8598530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8604390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8604520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8604920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8605000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8633460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8633740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d8256ba9-11ef-427d-b23b-90764016947f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8634330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8639590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8639710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8640060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8640130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8647740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8648010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/91ac4379-f717-4c5c-bce1-24895ea70739/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8648460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8653750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8653860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8654210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8654280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8658840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8658990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d369f785-8cb9-4256-b624-e3f781fbe171/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8659370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8664570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8664680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8665020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8665090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8670620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8670810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f61241c6-c83e-48bd-99c8-c0a268317699/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8671210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8676370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8676480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8676820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8676900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8684190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8684680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d7230a7f-06dc-47df-a93d-9fc6a5bdf81c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8685480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8691090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8691250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8691620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8691720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8699040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8699300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a203ce1-25b2-41c2-aec0-2a49f4c67130/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8700120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8721550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8721990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8722390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8722490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8729740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8730500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b13afe82-2288-4527-86c3-c9f21f7fca4a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8733070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8740050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8740320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8740710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8740820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8749490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8749830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d0937ed2-463b-48ca-8309-9a192e31651f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8750530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8755880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8756020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8756380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8756470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8761610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8761770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fa9f1a55-0776-45f9-b90d-e0c17cc8afb2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8762210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8767450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8767570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8767920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8768010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8774260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8774860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/23ad30ce-3a6b-43f9-9a47-0b303615bafb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8776110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8781760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8781910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8782290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8782380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8789000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8789230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4a2f7de1-f85e-4ae3-941a-7c48414ed883/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8789720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8795320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8795550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8795940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8796040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8819840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8820510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/da0e49b6-f8c1-4dfc-affc-c9fd2c8972b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8822110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8827720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8827860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8828230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8828310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8834590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8834820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cda24d1e-f54a-4a2c-978e-cd933e80be05/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8835540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8840910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8841040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8841430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8841520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8848670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8849070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/631c7a69-7963-4664-b109-ff699b2d2f3b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8851090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8857260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8857420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8857770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8857890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8862910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8863060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4c178bce-5372-4b3d-998e-9cfae58c6bc4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8863540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8868700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8868810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8869490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8869710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8877240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8877500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f3ba14d0-b3a9-43fd-89d6-8c42f65b6c51/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8878060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8883600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8883710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8884100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8884170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8889360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8889560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/56e4384b-d0e9-4572-9d41-9383f62bf76d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8890030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8906660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8906840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8907200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8907270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8914510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8914710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e5ddacb0-533f-4eed-85fb-c0dfd893e0b0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8915210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8920420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8920520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8920860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8920940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8925480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8925840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b6a11f13-0fe9-4366-a5a3-97efbc591f57/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8926440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8931900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8932020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8932380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8932470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8938970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8939180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6b1c7c23-3390-4ee6-b686-bee04951ddbf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8939610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8944840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8944940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8945290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8945730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8952340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8952580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/184fc717-39dc-4434-9231-52ec760c0526/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8953160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8958420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8958530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8958880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8958960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8965180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8965370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3d4276b7-ef9e-4236-9470-e0d5468cbe49/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8965790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8983250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8983450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8983800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8983890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8989070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8989230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c883e752-85f8-4688-9fdd-b06df5c45b93/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8989680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8994820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8994930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8995270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.8995350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9001370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9001930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/48b3314f-cae8-47e5-9c1e-3768cff00d36/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9004520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9012510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9012850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9013240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9013370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9020740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9021120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b794ed31-b67e-4b3f-ad6c-61e8859724a6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9021890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9027310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9027430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9027790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9027880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9035250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9035540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/da55d44b-8a84-4da6-8b38-391baf88d916/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9036010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9041300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9041430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9041780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9041860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9046530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9047250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/151342be-8808-4dfe-9015-938646f80e4b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9047700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9052830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9052930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9053720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9054200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9080540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9081020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0b18782c-bcd3-400d-aeda-b1b65d5db634/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9081910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9087250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9087380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9087730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9087810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9093260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9093450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c9b065ff-0d6e-40c7-b9d5-cdc496d247d4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9093840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9098980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9099090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9099430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9099530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9107660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9108150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e9b90e3c-e6a9-40f7-a577-e4df869350fb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9108820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9114550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9114740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9115110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9115190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9120300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9120660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7ee3b616-409c-460e-a931-fd83fe5123c3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9121350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9126840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9126980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9127350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9127430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:48.9387560Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"CustomRenderer(net7.0-android)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:58:48.9395690Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:49.7011730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7012650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7012790Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7012890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7012990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013270Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013850Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7013930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014360Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7014770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015320Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015460Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015520Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015790Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015860Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7015930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.7854440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:49.7856320Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.8207210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:49.8209100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.8226660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:49.8876090Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:58:50.6026630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027440Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027650Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027740Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027820Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6027970Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028400Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028470Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028540Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028610Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028830Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028900Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6028980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029340Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029420Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029480Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029760Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6029910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6030040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6030140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6030210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6030280Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6030350Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6626600Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj' with message: /usr/local/share/dotnet/sdk/7.0.200/Microsoft.Common.CurrentVersion.targets: (1830, 5): Project '../CustomRenderer/CustomRenderer.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":"2023-04-07T17:58:50.6628240Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6964160Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:50.6965990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6985050Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:50.6998290Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:50.6999330Z","@mt":"All instances of {DiagnosticId} fixed","@l":"Debug","DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:58:50.6999470Z","@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":"2023-04-07T17:58:50.7627040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7627880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e24b4560-0c8a-4e24-b5bd-485fcc8442f3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7629060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7635280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7635480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7635860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7635970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7642380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7642710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b708a3b1-19ef-4bdb-9077-9a88b7a2c340/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7643380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7648760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7648930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7649300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7649390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7655890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7656160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/714d13cb-2e8c-413b-8447-83857949981e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7656600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7661780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7661900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7662240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7662330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7667010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7667160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/68ad614e-a9ce-454e-8df4-d39d28e10c3f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7667530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7672650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7672750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7673100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7673170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7678660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7679030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8eb67443-9809-4f95-93a5-3f9ef72dea98/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7680300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7686760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7686900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7687310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7687420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7694340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7694580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5e380815-ed95-46b6-90f1-4b420c2a3621/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7695440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7726600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7726900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7727280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7727370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7735370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7735680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7b91cd36-3d38-4074-8718-9ec8c53e3fa0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7759470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7765560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7765750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7766140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7766230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7773410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7773640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/54a140e2-9cc6-408a-91e0-98514804e570/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7774220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7802800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7803070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7803470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7803560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7846380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7847190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/395eebdb-da82-4472-aac3-1e308353eda0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7848290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7854870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7855330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7855730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7855820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7886720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7887200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/607c400e-f2e5-4e99-b8b2-831e8e3456ff/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7888000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7916860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7917230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7917630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7917740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7931890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7932310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0637eafe-849f-45b1-b1f6-5ec0337ee6e3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.7933140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8027560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8028300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8028710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8028810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8037780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8038210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9d2db638-fc6b-46e4-971c-2b4726754a8b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8039040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8044860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8045110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8045500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8045610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8053120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8053430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b9de9989-e0a7-4cde-989b-ffd915767c51/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8054070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8059430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8059550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8059910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8060000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8065040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8065210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/26c89e15-eed6-4d3b-a98a-bbd087c32146/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8065660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8070850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8070970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8071320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8071390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8077200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8077400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b34bdd41-746e-4052-a257-937564bc7939/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8077800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8083010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8083110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8083460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8083550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8088120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8088270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/24c990df-f715-4bcd-892b-432136e1bafb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8088650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8093810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8093910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8094260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8094330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8118070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8118790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f30796fb-4485-47cd-939b-18a94f98c74b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8119930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8125490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8125630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8126010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8126090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8132830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8133060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5aac8521-fa2f-4fe6-9faa-334f956f0df0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8133550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8138870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8139000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8139360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8139440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8149550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8150230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3f8b39d0-da7b-4364-a430-a7b480f421af/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8151710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8157310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8157430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8157790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8157880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8166810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8167070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6625780d-7431-4d5f-866b-16c64fb0ae83/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8167620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8172940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8173060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8176340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8176520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8184520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8184850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/95d46239-ea6c-4a03-8189-d90784495b19/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8185370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8190670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8190780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8191150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8191240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8196770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8196950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/86e85b1f-bd03-4107-9d57-d2859b01a8f5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8197400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8217620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8218180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8218620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8218720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8230270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8230800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/22b8e03d-fd57-463d-ab18-d9313ef3e3dd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8231610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8237140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8237310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8237680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8237780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8243690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8243880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9980b942-33be-4cd1-bb5f-d9a027918701/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8244400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8249650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8249770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8250130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8250200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8257200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8257480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/13bac343-bf78-46dc-8e80-2b515589a056/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8258020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8263280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8263390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8263750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8263820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8269350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8269540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4a4aba67-63a3-46e1-9328-7cf78bebd530/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8270010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8275240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8275350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8275710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8275800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8282570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8282820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c63e7133-ee13-4520-b371-fc9ae86038f0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8283310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8288630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8288760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8289100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8289190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8310470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8310780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/da06de3b-2e6d-4503-b00a-d513295040ef/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8311360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8316730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8316860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8317230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8317300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8324950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8325220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/86de8f40-4ebc-4e7a-ac70-91f9c1ba306d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8325710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8331020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8331150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8331510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8331590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8338250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8338920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f0d91634-a10d-4aa5-91f3-8a3f4037cf65/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8339540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8345010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8345160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8345530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8345620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8352790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8353060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/13667874-d359-450c-86e9-15e8df7a7e36/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8353540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8363220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8363730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8365170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8365410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8372980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8373260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4185813f-9101-4d83-a478-772ca7b85eed/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8373950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8389000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8389340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8389730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8389830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8400620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8400980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e1bb874d-173b-4445-a8be-320853d1db0b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8401670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8418440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8418800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8419180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8419280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8426850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8427090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/846830f7-e719-4625-9137-d0973eda8f48/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8427770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8433120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8433270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8433620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8433700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8442780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8443100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/efc3cdc0-d32c-40e4-afe8-9a7d972cff67/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8443670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8449000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8449140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8449500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8449610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8455350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8455540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a72e0dc3-f61d-451b-8d8f-b8edc40bf7a3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8456020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8461240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8461350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8461700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8461780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8469500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8469780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7d6560a6-f697-4113-a2f0-6b4f0934ddd8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8470230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8476860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8477110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8477500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8477600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8484470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8484720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9b8bb626-ff23-4d24-9e9a-7dfedf1ba2a5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8485360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8490710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8501100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8508890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8509240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8520000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8520470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cd6720bc-ee87-4ecd-9b63-ee65e1e69960/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8521260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8526690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8560060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8561600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8563380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8570910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8571150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5fea2525-3477-4325-a061-b177ab900b72/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8571870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8577230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8577350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8577700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8577780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8584950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8585220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/32c033d4-dcb8-4fff-9708-fb587a3d5b55/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8585740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8591700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8592470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8592910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8593060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8598930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8629240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2d3dbef4-24c4-4887-9c15-fdb3c1e94fdb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8630510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8636180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8636330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8636690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8636810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8645710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8646000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d91915f6-bbc8-43c1-8836-d0cfd593deae/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8646500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8651790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8651910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8652260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8652340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8657550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8657740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0d1f76ae-1640-4859-86cc-687acaa0757d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8658200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8676010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8676600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8677000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8677110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8688840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8689250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9da6affd-0074-46d1-978f-3129f3fc42c8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8690100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8695540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8695660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8696020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8696090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8701470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8701620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e9ece7c4-7de9-47cf-a648-03f7ae4cda55/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8702150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8707310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8707400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8707750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8707820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8713970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8714180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1da19a83-9011-4b59-9d84-741a67ee51cf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8714560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8719740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8719850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8720200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8720280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8725180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8725340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/33a63eb8-efaa-433d-86b7-5374dd2a8619/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8725740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8730990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8731090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8731440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8731520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8737710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8737920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/394ceb0f-f0f5-4e4f-a7cb-caebb74772f2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8738340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8753580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8753870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8754230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8754300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8828980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8861910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/96891db1-d330-4a7a-95b0-dd04f736f425/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.8863300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9002280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9002880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9003320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9003420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9014960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9015380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/82e20417-f638-4979-90cf-b00258d7b14f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9016180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9028150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9028440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9028830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9028920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9055740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9056080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0e4d0de8-1858-4e8d-b3df-9617d24161f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9056760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9062090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9062220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9062570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9062650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9067560Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9075170Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9075400Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9079190Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T17:58:50.9081400Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T17:58:50.9086260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9090930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c399c9aa-48e4-4121-98dd-d9b19a6cc15b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9092500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9102220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9102690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9103090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9103180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9110190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9110410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f4be4de2-0bb6-4ac0-a307-e3ff294e5436/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9111050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9116290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9116400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9116750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9116830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9133680Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9134750Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9140340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9140700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5d239e62-4a14-4d96-873a-00d9e928f364/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9141480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9146920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9147080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9147450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9147530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9153790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9153980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bfdd7450-bb31-476b-8ea0-f2ede1c8bfcb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9154500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9159680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9159780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9160120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9160200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9163400Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9164240Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9170370Z","@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":"2023-04-07T17:58:50.9180790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9181730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e450e5ed-f850-4426-82ed-3370f1d1e937/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9182340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9187660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9187770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9188110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9188190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9193550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9193710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/198369cd-e606-4120-826d-2e0996bf6556/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9194130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9199300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9199400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9199740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9199810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9203030Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9203820Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9207360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9207570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/73b4053c-8130-4fd5-a7c5-a313cdf81f3b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9208050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9213360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9213460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9213800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9213880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9218760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9218910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bf808629-6ed5-4eca-84eb-4dd4909e4218/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9219320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9236450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9236820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9237180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9237250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9241190Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9242020Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9251300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9251780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/18eb0e3d-9b39-46c1-8aa7-8d9a5581de27/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9252580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9258030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9258170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9258540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9258620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9264520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9264710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ea98b0f3-d4c5-4916-a869-29141fd92d8d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9265200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9270430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9270550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9270900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9270990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9274370Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9275280Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9279330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9279600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/132901ac-17e3-4902-93d4-385829562fef/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9280120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9285380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9285490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9285840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9285920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9291240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9291410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0ddb0340-a2b7-4861-8e84-55c0cfb90a0b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9291840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9297060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9297160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9297500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9297580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9300710Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9301480Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9302350Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9307000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9307400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4d45a695-df4e-4735-878b-bbea94a7dd4b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9307850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9325250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9325550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9325910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9325980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9332260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9332430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/10aaafca-a74a-4924-aac7-0152c137173a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9332960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9338170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9338300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9338650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9338720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9341780Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9342590Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9693900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9694640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c1f565bf-23f0-4abc-a4a7-d72f9cb26ff6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9696260Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9699470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9699620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9705690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9705920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/49813b75-3b03-468b-915e-5311e24728ca/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9706360Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9709040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9709160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9714480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9714700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e1255d91-bab8-4b81-855b-73e1c8a7176f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9715080Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9717710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9717810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9721350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9721490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/726ba3c4-3a26-4e5a-a788-13d1267e512f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9721830Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9724430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9724540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9729100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9729250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/46e02304-4a55-4f61-aab8-647084639de1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9729590Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9732180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9732280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9735630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9736070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bad5e797-ccaf-4ef3-a58a-9e381330af52/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9736440Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9739060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9739160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9741950Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9742100Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:50.9742490Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:50.9746110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9746820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d53c0358-5622-41ec-85b2-50d29a1c46c2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9747400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9792360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9792740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9793130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9793240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9799790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9800210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1524c4e2-30f7-426b-b999-9d19549c057c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9802690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9809170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9809400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9809830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9809910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9813870Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9814760Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:50.9819270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9819510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d07dc5e2-bc18-4e6d-90c6-c1b95ba0cb13/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9820240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9825620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9825770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9826130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9826210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9831430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9831730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/46bab716-f1fd-4130-b87b-a1c63af7752a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9832680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9838090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9838260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9838630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9838720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9845510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9845760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/52801679-7f63-4573-a6b3-70da8f787e0f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9847360Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9851370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9851620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9855810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9855960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7fa7c502-4203-4828-a1df-48e433e879a5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9856410Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9859100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9859200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9863830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9864020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ce267793-8284-495e-afe7-6f79a7ec996e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9864400Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9867080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9867170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9870720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9871120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/90309f68-217d-464d-8a2e-12648f4fb332/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9871490Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9874070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9874160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9899240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9899520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/07ade9a1-6564-4305-8e25-1279faf2af2f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9900220Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9903000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9903120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9907400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9907560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/929873aa-640c-4741-b5d5-f4cc62ea4f71/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9907940Z","@mt":"[NuGet] {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":"2023-04-07T17:58:50.9910680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:50.9910790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0201070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0201650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bbbc11bb-4e39-40f4-9977-511b81a60321/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0202530Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0205530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0205660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0210160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0210320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b1737a56-0190-492e-b9f9-e23e0c5d9d5f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0210710Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0213480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0213600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0218600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0218780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f4f8c992-6b6a-4569-922c-d5dedfbeba3e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0219150Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0221870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0221970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0225470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0225600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/42925d4a-ae1d-4aec-96f1-63b86ddbdf0c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0225930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0228590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0228700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0233410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0233570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eb4c2b06-905e-44fc-84ad-d75092c4081c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0233920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0236570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0236680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0240280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0240430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31312e40-0cc5-4320-b1d2-4378c04d32ff/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0240780Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:58:51.0243370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0243460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0264810Z","@mt":"Project {File} cannot be loaded: {Message}","@l":"Error","File":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","Message":"Could not load project. Please ensure the selected VS instance has the correct workloads installed for your projects. If Upgrade Assistant selected the incorrect VS version, please pass the argument --vs-path with the appropriate path. You can see the Visual Studio instances searched by running with the --verbose flag. If you are migrating UWP to Windows App SDK project, make sure you are using the latest version of VS 2022 (>17.2)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Checks.CanLoadProjectFile"}
+{"@t":"2023-04-07T17:58:51.0266210Z","@mt":"Project {Name} was selected","Name":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:51.0266680Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:58:51.0267420Z","@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":"2023-04-07T17:58:51.0267710Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0268330Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0268550Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0268630Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0268690Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0268770Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0269010Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0269620Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0269700Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0269900Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0307110Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0333450Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Entitlements.plist","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Entitlements.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0351770Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/AppDelegate.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/AppDelegate.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0373140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Main.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Main.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0378130Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0408410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Info.plist","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Info.plist","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0429080Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-76@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-76@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0445150Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-Small.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-Small.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0466790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Default@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Default@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0490750Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-76.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-76.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0514790Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-Small-40@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-Small-40@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0624410Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-60@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-60@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0655280Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Default-568h@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Default-568h@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0680930Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Default.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Default.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0696420Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-Small-40.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-Small-40.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0742740Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/Resources/Icon-Small@2x.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS/Resources/Icon-Small@2x.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0749480Z","@mt":"Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0751260Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:58:51.0752930Z","@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":"2023-04-07T17:58:51.0753190Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0753950Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
+{"@t":"2023-04-07T17:58:51.0760060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0769930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/793f0b3a-b30a-49c8-a91b-5635ac51e240/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0772200Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.0810750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0811430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0819800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0820130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/37c7cf48-a618-4831-80db-839af717410b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0820980Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.0823950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0824100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0836840Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0838730Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:58:51.0839620Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
+{"@t":"2023-04-07T17:58:51.0870160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0888010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/278542d1-8404-4604-ac90-640d7cf377f6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0889560Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.0893200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0893480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0902500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0903070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/da54cef3-96bc-4d42-93e0-d3784c7e96ba/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0904290Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.0908410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0908690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.0941630Z","@mt":"Converting project file format with try-convert, Version=0.4.420501+e30ffa80e708218a29015d598c4ddc46862d32c3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
+{"@t":"2023-04-07T17:58:51.0989840Z","@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-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:51.1021410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1021960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6f93f6c8-53d0-4987-87a1-21d5e0cfa0fd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1022810Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.1025930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1026060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1031770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1032150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/be2ca759-fcfd-4e73-9378-8929d4dc7f70/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1032910Z","@mt":"[NuGet] {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":"2023-04-07T17:58:51.1035950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1036090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:58:51.1038880Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:51.1040120Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:51.1040870Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type Xamarin.iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:51.1041570Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:58:51.1142220Z","@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-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:51.2891500Z","@mt":"Loading {Name} without pdb from {Extension}","@l":"Debug","Name":"Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed","Extension":"UA_try-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:52.3619160Z","@mt":"Converting project {Path} to SDK style","Path":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"}
+{"@t":"2023-04-07T17:58:52.3674850Z","@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-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T17:58:53.1723860Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1724870Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1724990Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725160Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725250Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725320Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725410Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725490Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725590Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725660Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725730Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725800Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725880Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1725940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726010Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726160Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726360Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726570Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/actionBarSize (aka CustomRenderer.CustomRenderer:attr/actionBarSize) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726710Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.MaterialComponents.DayNight (aka CustomRenderer.CustomRenderer:style/Theme.MaterialComponents.DayNight) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.CustomRenderer:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1726980Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/colorAccent (aka CustomRenderer.CustomRenderer:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/ThemeOverlay.AppCompat.Dark.ActionBar (aka CustomRenderer.CustomRenderer:style/ThemeOverlay.AppCompat.Dark.ActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727120Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource style/Widget.Design.BottomNavigationView (aka CustomRenderer.CustomRenderer:style/Widget.Design.BottomNavigationView) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727180Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/materialButtonStyle (aka CustomRenderer.CustomRenderer:attr/materialButtonStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/checkboxStyle (aka CustomRenderer.CustomRenderer:attr/checkboxStyle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727340Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727410Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.CustomRenderer:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727480Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.CustomRenderer:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727560Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.CustomRenderer:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/obj/Debug/net7.0-android/lp/8/jl/res/values/styles.xml: (2, 0): resource attr/colorPrimary (aka CustomRenderer.CustomRenderer:attr/colorPrimary) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.1727700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.CustomRenderer:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.4870370Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:58:53.4872430Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.4890160Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:58:53.4903630Z","@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":"2023-04-07T17:58:53.4923010Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
+{"@t":"2023-04-07T17:58:54.2212660Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:54.7516050Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj (in 142 ms).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:58:56.0475790Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj (in 1.44 sec).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:07.7817960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:07.7820030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:07.7842080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:07.7878070Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
+{"@t":"2023-04-07T17:59:08.3705630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3708520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f805ce53-4fb8-482a-93dd-05b174c0e561/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3710100Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3714430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3714650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3720710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3720950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/af379261-7d56-45fa-8ffa-9ecbbf87ca72/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3721440Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3724170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3724310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3727290Z","@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":"2023-04-07T17:59:08.3730650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3730910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/09050ef6-484d-4cf3-8f6d-ca4af41145b2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3731360Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3734050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3734180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3737810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3737970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eb4ccf33-e5b1-441b-9bcc-cf759e2c88a8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3738340Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3740980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3741110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3743370Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.3751040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3752390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4adc4370-446a-4c4e-9d64-6967d5ef5fbd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3753930Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3759570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3769600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3775000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3775260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7639af62-c23b-46d6-b407-1f4e83d9d796/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3775840Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3778640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3778790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3807940Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.3812350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3812740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b9f63574-3184-4a6f-acbc-e5d2e1427c4c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3813370Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3816250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3816390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3826770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3827150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/98dcf072-1567-4558-bd9e-81c150b29fc9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3827860Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3830820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3830990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3833800Z","@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":"2023-04-07T17:59:08.3834060Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.3838110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3838370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/18804d08-2e53-407b-8529-4e7e7c06da35/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3838860Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3841570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3841700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3845500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3845660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7c9081c9-7eca-4c0b-837e-89dc607900e2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3846060Z","@mt":"[NuGet] {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":"2023-04-07T17:59:08.3848690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.3848810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:08.6442000Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:08.6443470Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"--------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:08.6444090Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 8.0.0-preview.2.7832/8.0.100-preview.2 SDK 8.0.100-preview.2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:08.6444610Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:08.6621480Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"}
+{"@t":"2023-04-07T17:59:08.6622800Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6623480Z","@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":"2023-04-07T17:59:08.6625390Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6625940Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6626160Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6628830Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6629490Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6629870Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6629960Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6630830Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6631640Z","@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":"2023-04-07T17:59:08.6723920Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6724330Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6724940Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:08.6725640Z","@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":"2023-04-07T17:59:08.6730210Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6731790Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.1874","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:08.6733140Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6733600Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:08.6734010Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:11.6065260Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:11.6067690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:11.6087860Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:11.6124070Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1135070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1136100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dcd1aac8-de8b-4726-8c70-778592b279a7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1138520Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1143650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1143900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1150350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1150950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9b622f51-ec74-42bc-92ea-15369ebec6ce/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1151820Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1154880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1155050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1161810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1162390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/03efcc1a-ae4e-4efe-a5af-82d6e4c5ac10/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1163240Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1166200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1166350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1171210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1171420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f36dffdd-c196-4a08-8ac2-923d4df6aed1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1171850Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1191800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1192070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1198340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1198640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/78a88c02-902f-4f7e-9056-d4a9d93abc82/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1199160Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1201860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1201980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1206610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1207500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/94c60886-909c-4822-b925-9df0ac041123/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1207960Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1210630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1210770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1215080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1215420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8a39aa00-88db-4f3d-b1f1-0ab7371614e3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1215940Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1218730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1218850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1222840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1223140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ef0b4c49-1da5-45a3-bc00-dfefefd1fcc5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1224090Z","@mt":"[NuGet] {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":"2023-04-07T17:59:12.1227090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1227260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:12.1230170Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1231650Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1231880Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1232370Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1232460Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1233380Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1243860Z","@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":"2023-04-07T17:59:12.1620620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 37ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:12.1671150Z","@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.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
+{"@t":"2023-04-07T17:59:12.1686820Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1687070Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1687530Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:12.1688720Z","@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":"2023-04-07T17:59:12.1693780Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1695620Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:12.1697180Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1697720Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:12.1698100Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.0410940Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:15.0412910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:15.0432110Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:15.0445540Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5407090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5407850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7e3d60b0-ccc1-408e-8276-65d5f8d28c16/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5409390Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5413050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5413240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5418770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5419000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/995e62c8-65e9-476e-80ac-b666883f3abc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5419440Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5422120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5422250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5427660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5428080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/67bab10b-2fb1-4759-8eff-f483ef49eff5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5428940Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5431990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5432140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5437180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5437380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d334f4e8-15c0-4a22-809f-fe7e1a695d3b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5437820Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5440500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5440630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5445920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5446170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/08884ef9-a922-4388-9846-6fe0b3cd4aa5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5446750Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5449550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5449700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5453910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5454160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f00e1c95-3108-4dd3-b417-61217a5dbb74/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5454770Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5457690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5457870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5463570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5463840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ecfe2a66-c617-4b1f-a33c-0849ff12793a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5464320Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5466970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5467120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5470900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5471100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2257ac1c-4bd2-4866-9b14-634b84bae76a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5471520Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5474220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5474330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5477270Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5478720Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5478980Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5479590Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5479730Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5480710Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5481200Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:59:15.5481280Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5481650Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5481730Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5482630Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5485300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5485650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8e557b36-88e4-42de-b4b9-0175f908e87e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5486120Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5488830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5488950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5493060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5493240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/54660e3b-f1ae-404a-bccb-48b1e54d7ff2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5493620Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5496250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5496350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5498670Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5499200Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5499500Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5500510Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5520260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5520620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/83b485d8-c8d6-40df-8c3b-4cb78a8885f0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5521440Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5524220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5524350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5528480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5528650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1c038894-2743-43df-8267-7186e6a1eeed/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5529030Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5531650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5531760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5534030Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5534580Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5534680Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5535610Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5537970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5538340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4bc5e51a-e553-48ed-bc86-06ebd07331e1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5538980Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5541750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5541880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5543720Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5544300Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5544730Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:15.5545250Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5546420Z","@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":"2023-04-07T17:59:15.5546560Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5550670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5551050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/64565526-63e4-4cde-9a5d-17a5a34d9510/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5551730Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5554720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5554850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5559460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5560020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/56446e7c-7d1e-4c25-99c1-db5b6d73fdcd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5560480Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5563180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5563290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5565660Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:15.5566440Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:15.5567060Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:15.5567950Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5568080Z","@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":"2023-04-07T17:59:15.5568240Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5568610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5568690Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5569480Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5569880Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5570200Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5570260Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5570960Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5571400Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5571710Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5571820Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5572540Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5573480Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","PackagePath":"/Users/dmo/.nuget/packages/Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers/0.4.410601/Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.410601.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:15.5609290Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.410601","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:15.5610150Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","TargetFramework":["net7.0-ios"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
+{"@t":"2023-04-07T17:59:15.5610270Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5610760Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5610900Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5611990Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5612130Z","@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":"2023-04-07T17:59:15.5612220Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5612560Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5612660Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5613490Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5613630Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5613950Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5614010Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5614720Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5614900Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:59:15.5614970Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5615270Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5615330Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5616060Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5619550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5619770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4e33b017-e939-4544-8c83-28a5e071346e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5620980Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5623960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5624090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5629150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5629340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5ae0c410-c7d4-48b6-a137-5b629c10da3b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5629720Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5632350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5632450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5634820Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5635390Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5635500Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5636380Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5638970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5639200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d358534e-2361-47d9-81fb-d84b635783a5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5639570Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5642620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5642830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5647210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5647410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8a0cb619-3b6a-4af9-9b9d-f87dfbfb842c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5647840Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5650550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5650670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5652860Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5653370Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5653470Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5654440Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5656930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5657120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5cb9282f-42d8-492d-a0a5-654e4b19e3fb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5657540Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5660260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5660360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5677760Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5678290Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5678710Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:15.5679130Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5682760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5683180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ee5ee5ec-6673-4aaa-a107-18aea1dd3e80/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5683800Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5686650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5686760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5690580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5690890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/56e4212e-67d8-45e9-81c0-a454fc2da73f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5691860Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5718620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5719140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5723120Z","@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":"2023-04-07T17:59:15.5723770Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5729080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5729430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d1cdf0af-22d4-42e2-afd9-1c8491457083/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5730350Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5733460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5733590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5739170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5739520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3c94ddde-f273-4219-b45e-1061e79e2451/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5740300Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5765990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5766170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5769530Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:15.5770080Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5770230Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:15.5772870Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:15.5776340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5777010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f6234aad-d86d-4b6b-9d85-8ff3810d888b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5778030Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5781130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5781290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5809920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5810230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/61f96410-8fb6-42c9-be44-55163558c914/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5810930Z","@mt":"[NuGet] {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":"2023-04-07T17:59:15.5813890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5814020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:15.5830580Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"x86_64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5831660Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"x86_64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5832190Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5832660Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5833190Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5833680Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchArch","PropertyValue":"ARM64","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5835400Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"RuntimeIdentifiers","PropertyValue":"iossimulator-x64;ios-arm64;","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5836130Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchLink","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5836620Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchLink","PropertyValue":"None","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5837160Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchDebug","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5837630Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"MtouchDebug","PropertyValue":"true","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:15.5838360Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:18.3927620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:18.3929620Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:18.3948630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:18.3961450Z","@mt":"Updated {ProjectType} project properties for .NET MAUI project {ProjectName}","ProjectType":"MauiiOS","ProjectName":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:18.3965470Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:18.9140420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9141120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5a06dfc6-5039-4bcb-b8ef-169cd31f6b6d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9142520Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9157670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9158120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9181440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9181780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7d7ee80f-9457-4865-a508-2afd5eb08dc1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9182720Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9185670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9185810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9192670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9192860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fa6c9770-d763-425c-81c5-314061ead17a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9193510Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9196420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9196580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9200960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9201190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/47b17ab3-1fdf-4613-aed3-85942900c5de/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9201710Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9204440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9204580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9209570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9209850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5622f40d-8aa9-41b5-9ec1-1207245c9c04/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9210290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9213030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9213140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9216990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9217150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e0270135-cb5b-424d-b2cb-f36cae132eaa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9217550Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9220180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9220290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9222620Z","@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":"2023-04-07T17:59:18.9225440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9225650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/19347e25-1556-4827-ade4-a9ef13e955d6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9226260Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9229120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9229260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9233420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9233870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ce91ba23-9616-4df5-a8c1-23ca92c781f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9234330Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9237030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9237140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9241640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9241820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/65c52c8d-80ca-461a-af79-32d14a7d75b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9242470Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9245830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9246150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9251500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9251730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/abb0591d-0ac3-4832-b076-1820d9679340/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9252400Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9255210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9255340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9260820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9261050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/29c41ea2-dd09-4968-851f-f4ab72c30d6d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9261520Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9264190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9264350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9284240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9284720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/033a4025-7039-458a-8f8d-8d9c10960c6e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9287290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9290970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9291150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9294240Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:18.9298560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9298840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0f2f4ff7-60df-491c-80db-e106581754e4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9299610Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9302380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9302530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9306530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9306760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3b13b90a-f3c8-4e27-bc29-ff12796abb08/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9307300Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9310030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9310170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9315630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9315800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0ecdab6e-0f33-473b-99dc-8a8c968e1a6b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9316290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9319010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9319120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9322820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9323140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ebb2bbf4-db7d-4c19-ab30-f146d2bb43d0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9323770Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9326670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9326780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9332150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9332340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/db99764f-90d7-42db-a53e-029c3a21d301/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9332970Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9335840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9335970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9340320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9340500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5bbf84b0-df10-484a-bc16-bf51c22825d5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9340920Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9343610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9343720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9346530Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":0,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T17:59:18.9347270Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:18.9350000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9350500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6ee0043a-e295-4a90-a5da-bb8703e7009b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9351180Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9353960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9354090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9358520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9358910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4c797559-28bb-4696-a707-795bb34fd427/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9359570Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9362370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9362490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9364920Z","@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":"2023-04-07T17:59:18.9365090Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:18.9366890Z","@mt":".NET MAUI project does not contain any XAML files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"}
+{"@t":"2023-04-07T17:59:18.9367440Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:18.9372740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9372930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a61090b4-43b5-4179-8cf7-fb5d135e7259/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9373530Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9376330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9376470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9401910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9402570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4c332ac6-c77f-4d5a-a190-408d70aa303a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9405140Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9409100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9409280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9413490Z","@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":"2023-04-07T17:59:18.9413710Z","@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":"2023-04-07T17:59:18.9413970Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:18.9414460Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:18.9414600Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:18.9420980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9421410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c84dd11c-1cae-49f0-92bc-4e66325a0756/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9422560Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9425650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9425780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9431000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9431260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1fcf43a4-2f88-45f6-a519-5ee59951d3f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9431750Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9434430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9434540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9440450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9440700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/db3b429e-e504-4393-9142-73be9b2223a2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9441130Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9443800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9443900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9447550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9447800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2594732c-467f-4f8a-a93e-5c5854e916dc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9448770Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9451810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9451950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9458200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9458380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/34e0a0ca-3134-4490-b0e7-9ce3702b8848/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9458890Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9461590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9461700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9465350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9465670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a772687b-0b1e-45ad-89b4-78ee8480da17/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9466070Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9468670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9468770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9473650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9473970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/24fe1cf3-64fb-4cd0-abcc-9bf55e01e243/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9474360Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9477090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9477200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9480610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9480740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/83e50cb1-3498-4c93-b6f6-c68f30643084/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9481110Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9483720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9483810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9488560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9488750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f35e6735-3ea2-4a58-a92b-757ff1d8fe12/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9489130Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9491800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9491900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9508010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9508330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c5ad28bf-ae39-4960-b918-f07e09a7598d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9509020Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9511880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9512000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9518110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9518320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b56dd172-01e6-4e33-b331-c728aab20d2d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9518780Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9521470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9521570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9525120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9525310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/94c309d5-185d-4514-95c1-934f5e952cbd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9525990Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9528790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9528950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9535760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9536070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f8fa83f3-2299-48e3-ac6a-924dcd1a4011/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9536590Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9539330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9539440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9543490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9543640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/17b02ba0-52d8-4051-971f-3802810e6304/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9544050Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9546800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9546900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9552320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9552580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/975e5c0a-c1eb-4fb2-95ec-16ca029881a2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9553200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9556090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9556220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9560660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9561140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/19e19fd6-2210-4426-80ba-25e59c89bff4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9561600Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9564350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9564470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9570250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9570870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/06791dd3-aee4-44d5-bab4-53858e3f2445/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9571400Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9574160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9574280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9577970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9578130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6b81b827-0e11-45e7-9bdc-1ceb5727179b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9578530Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9581200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9581310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9586750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9586950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f2762ecf-1bce-4a3d-9811-c1f1e3c86612/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9587380Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9590070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9590180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9606140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9606560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5f26c1ab-0295-469d-bf77-f52afa624456/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9607430Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9610270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9610410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9616690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9617060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/79acc724-ffc7-4212-9515-fc70252b5501/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9617550Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9620290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9620410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9624320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9624520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/40f5545b-fe46-4b4c-812e-86d720436003/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9626690Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9629380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9629480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9634190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9634370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad58e109-2995-4b8e-b9de-f51cf52c3ddb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9635550Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9639910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9640050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9643350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9643540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1a436848-da75-44a4-8d3a-e70eae770171/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9644150Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9646950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9647070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9652230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9652420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5bfacf1c-5630-4162-bbaf-c0aae9e47b8d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9652830Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9655470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9655570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9659100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9659250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2616a807-d637-4e64-be1f-ed74ef3e758e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9659680Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9662290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9662410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9666830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9667000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6c49c798-255f-4b45-a957-a32ac86aaf6f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9667460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9670130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9670280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9674040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9674320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4d85e0df-3aa4-44cf-a23e-d8fced12c510/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9675820Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9678520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9678640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9683380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9683560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0d9ebac8-6430-4491-a3c0-290be56118cc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9684170Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9687620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9687950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9705780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9706060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/82b44683-cc92-408f-b6ba-a16911af8f80/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9706720Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9709550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9709680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9715970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9716160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/94c4bc15-bb69-46b1-869c-e6e3e3d35245/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9716730Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9719440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9719560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9723450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9723850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/046549a8-e43f-4f50-b7f1-22e67104f7c1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9724370Z","@mt":"[NuGet] {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":"2023-04-07T17:59:18.9727080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9727200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:18.9850480Z","@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":"2023-04-07T17:59:18.9947920Z","@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":"2023-04-07T17:59:18.9955110Z","@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":"2023-04-07T17:59:18.9958760Z","@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":"2023-04-07T17:59:18.9964320Z","@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":"2023-04-07T17:59:18.9979700Z","@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":"2023-04-07T17:59:18.9984920Z","@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":"2023-04-07T17:59:19.0310790Z","@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":"2023-04-07T17:59:19.0315350Z","@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":"2023-04-07T17:59:19.0317630Z","@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":"2023-04-07T17:59:19.0321130Z","@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":"2023-04-07T17:59:19.0325790Z","@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":"2023-04-07T17:59:19.0329040Z","@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":"2023-04-07T17:59:19.1601100Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":3,"ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:19.1602430Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1602720Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1602820Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1602900Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1602990Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603060Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603140Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603210Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603290Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":3,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603370Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603480Z","@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":"2023-04-07T17:59:19.1603560Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603630Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603700Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603770Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603840Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603910Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.1603990Z","@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":"2023-04-07T17:59:19.1604190Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:19.1610590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1611150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8229a01c-7b7d-464a-9df9-41fa1b711c42/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1613070Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1616280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1616490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1621540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1621900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/be2abca2-28aa-4f17-ad3a-be3f4bdfbea3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1623080Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1626230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1626390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1634350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1634760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/57c85cf2-a25c-4a41-8d1b-87d25c227ef3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1635500Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1638390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1638540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1642960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1643240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7886a655-934d-4273-8b98-d747b394eb32/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1643760Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1646500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1646620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1651750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1652040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ac6fc5a-23d7-41cd-994a-b5fe4766f30b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1652930Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1655870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1656010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1660770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1661150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/15cccc8c-9085-48b1-b6bb-cde8d4bb4cdc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1661730Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1664500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1664620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1669920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1670080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7dd8fdf6-3018-48e7-abf8-e137eca067c1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1670580Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1673290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1673410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1677230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1677390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7de3d3b2-e0c7-47da-a0f4-01a5c6e9223c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1677790Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1680450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1680560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1685200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1685400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/877450d4-de46-4e51-9efd-c8eccdd60b2b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1686020Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1733840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1734260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1740570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1741190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/22b9226c-ad2a-4fb0-89ce-d4e639fc6a82/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1742010Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1744840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1744970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1751750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1752170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/015e66fc-5575-4510-8ca0-34323637ba0a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1752840Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1755710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1755840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1760120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1760420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aa830af0-4bea-4279-84ce-f86ddf5f1c25/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1761120Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1763910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1764030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1770810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1771330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3dfa8df3-edb1-4fd9-8bff-b1c21ee32eec/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1771800Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1774730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1774900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1779010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1779240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3c28f8ab-3b0c-4018-ba65-8454e2f427bf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1779930Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.1782970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1783180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.1786540Z","@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":"2023-04-07T17:59:19.1789350Z","@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":"2023-04-07T17:59:19.2028620Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:19.2029100Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/AppDelegate.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.2158220Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:19.2158750Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.2159480Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:19.2167440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2168070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b5d8bfc1-4a6b-41eb-b1cf-1e62bec1cc16/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2169540Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2172950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2173120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2179210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2179490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0c453f31-416a-49e9-bfde-f4fe7c2f5ea2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2180330Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2183370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2183530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2189870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2190120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7b2d54a7-6e17-4682-967b-d2a10ebf5534/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2190600Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2193280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2193390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2270660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2271360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/63812ffa-82d0-4a22-8b70-595e820482dd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2272720Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2275970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2276130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2284090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2284340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31acc17d-c391-49a5-ae31-1b7cbf60fd1c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2284840Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2287590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2287710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2291480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2291710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/984d8c73-1086-4136-99d2-2a5ba051b8be/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2292270Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2295070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2295190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2300410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2300630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f7a20fc6-9e3b-4415-b766-35b8e8d1bea1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2301090Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2303740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2303860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2307480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2307630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a07fff7a-c24b-4a17-b869-4ad6fc5d013e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2308010Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2310670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2310760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2315630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2316140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c15e1379-4600-4e97-9031-84950896cb29/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2316560Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2319210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2319320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2322780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2322910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9b17214f-e4f7-4215-9758-eed7108eb010/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2323300Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2325900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2326010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2330510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2330670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7eccf910-f7b3-4501-998f-03cad66a3384/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2331050Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2333690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2333790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2337210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2337340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6a2054a9-2350-481b-bd60-0b1e4138ccbc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2337700Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2340330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2340430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2345930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2346120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a5b755c5-cf4b-4656-83ac-3ba00a409e7c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2346500Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2349100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2349200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2374210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2374460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2eda5b4e-d6bf-4bcf-872b-3054293de0f1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2375020Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2377730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2377830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2383900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2384090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4ce8ba6c-2ab7-4bac-8992-f0aebc9670f5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2384490Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2387120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2387200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2390550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2390690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/292a45c0-214b-4189-9844-ff8d034b57eb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2391040Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2393720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2393840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2399090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2399360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7953cadd-9eed-44cb-888c-1d7d27970385/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2399880Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2402790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2402920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2407380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2407550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5f7ac1c1-1612-4d13-8ec7-4e1141d410e4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2407990Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2410690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2410790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2416530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2417010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d21e27bf-3c86-4b20-93ac-0a6b5fdc7975/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2418610Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2421350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2421480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2425360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2425670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9dacdd2b-ef9b-43cd-aaeb-028d03aba960/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2427000Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2429930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2430070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2436200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2436440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c31efd68-c319-406f-a585-c4c3768cd6e2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2436930Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2439640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2439760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2443610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2443780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/250ddbfc-c009-410f-8a93-ff29e38e6b9a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2444210Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2446940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2447050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2452320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2452670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ce4cf2ee-87fe-4bf7-af52-1597f8ea76c8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2453890Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2457030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2457180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2487010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2487440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/65f64bd7-3001-4db4-b73c-59e12d9173b4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2488410Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2491450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2491590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2498990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2499320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b1d2f6aa-1f84-436a-b3e0-bd1676bc60a4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2500370Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2503710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2503910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2507890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2508130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ce6a5d31-b05e-456e-8e9b-e0502ce7ff29/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2508640Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2511370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2511480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2516320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2516630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/08ed33d4-27a9-4900-a009-44fd22a8e8ba/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2517360Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2520240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2520370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2525940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2526160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a542bd91-aebf-40b0-a1e2-4769914d41ff/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2526620Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2529280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2529390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2535190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2535690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ab80b5a-1623-4ab5-ade6-2e4808b53840/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2536200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2538880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2538990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2542760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2542910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f0e6e96d-96b0-4683-a48e-b043123eed14/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2543290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2546000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2546100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2551130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2551300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/03c944e2-5993-4be7-b7e1-2620ef508252/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2551950Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2554820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2554950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2559280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2559460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/511c4c81-efdb-4517-8eee-6f85061ac0ba/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2560050Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2562860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2562980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2731200Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":1,"ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:19.2761970Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:19.2762420Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/iOS/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:19.2762950Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:19.2770290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2770790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/30c5d6e3-d65a-4d3c-9447-54e264a3d488/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2773640Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2776950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2777120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2781730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2781940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b3aa0292-e1e7-4500-9c15-0bb7c1ea9867/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2782640Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2785380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2785520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2792550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2793010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/538e515a-003d-438e-872a-b784edbf49bf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2793810Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2796840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2796980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2802300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2802460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4791996a-c214-4125-aec6-bc952590a965/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2802920Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2805590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2805700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2848800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2849460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/34738cc0-b81c-45c6-93f3-c3ca5a0ffa49/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2851200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2854630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2854790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2861790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2862150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aad40654-713e-45ae-a3d0-8b28eb020d0b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2862830Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2865650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2865790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2872180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2872450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4c9a3ab5-cb9f-4456-8284-df01d2d3a471/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2873100Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2875990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2876140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2880320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2880790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7fcefc99-d2d9-4498-be21-fbeb4dbabb2a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2883050Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2885780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2885900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2891160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2891410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5ab38780-e044-495d-9ace-063e282bb7c4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2891980Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2894680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2894800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2898520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2898710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c6b7c68b-1a81-43e1-9af1-da8942c6d051/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2899110Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2901810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2901920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2906580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2907110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4fe4563b-3e28-4578-958a-cb5ceb34fce3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2907530Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2910160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2910260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2913640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2913980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e085edf1-8983-44fd-a355-e9857622a303/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2916340Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2919180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2919300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2925380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2925610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0482e57f-bedb-49fb-873e-c155836fbec6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2926100Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2928840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2928950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2932530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2932680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/59918d6f-ddc2-4ab8-ad04-8be36c42ba32/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2933080Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2935990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2936150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2941810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2942030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/928a5d28-4cda-4ada-b6cd-7af2dea6ae25/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2956300Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2959280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2959410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2964210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2964430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/87f221eb-6723-4575-aa65-4e9c97077aa4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2965460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2968520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2968650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2976070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2976260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/59db3fca-c511-4fe9-a90d-be624fdbd8b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2976880Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2979610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2979720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2983790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2984000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f85d469d-c360-4fbe-a85f-b84de766ff6f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2984460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2987140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2987230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2992640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2992840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5c3518f6-1384-4b85-aac9-c003ce932f9a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2993290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.2995940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2996040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2999600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.2999780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aeec3980-4bfe-425d-aa42-bad8397c23a4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3000200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3002820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3002920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3007580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3008010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e7bf98cb-5325-4ab5-aaff-1cbb5b2ddcb7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3008410Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3011040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3011150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3014620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3014770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5964ac62-1d27-451d-a315-8910d9de95d0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3015300Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3018120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3018240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3023760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3024300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4427c6bb-0a11-4e57-bda2-19dede7a2afe/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3024770Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3027460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3027570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3031300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3031460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7bb01d65-9f7e-4905-8625-5e82ecf48953/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3031860Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3034480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3034580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3042150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3042770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/813b023e-c225-416d-9577-459732334782/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3043280Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3062190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3062440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3067940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3068170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a58589f4-a8de-44f9-a511-6bae55f7a339/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3068750Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3071520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3071630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3077330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3077710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c6fe95ce-b2d3-4be4-a9d7-9bf451b6c637/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3078260Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3081090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3081220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3085350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3085500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cb866ea6-cb93-4c6f-853f-d6853fcb5195/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3085960Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3088630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3088730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3093500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3093700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a873b843-5cab-45db-94ce-e569b8549082/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3094150Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3096870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3096990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3100560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3100780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/acf9e26b-cbc9-4f48-a82a-aab5068f9d5e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3101210Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3103830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3103930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3108410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3108600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fb481d24-644b-41f3-aa70-3f1cc1dd15a6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3109010Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3111630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3111720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3115240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3115560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/83aad5b9-acb7-4bdb-9448-225e5226b453/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3116800Z","@mt":"[NuGet] {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":"2023-04-07T17:59:19.3119490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3119590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:19.3263510Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"CustomRenderer.iOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T17:59:19.3264540Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:22.1341960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:22.1343770Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:22.1362510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:22.3076280Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:25.1379200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/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":"2023-04-07T17:59:25.1381500Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Warning","Message":"Found project reference without a matching metadata reference: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/CustomRenderer/CustomRenderer.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:25.1404200Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:25.1419600Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:25.1420640Z","@mt":"All instances of {DiagnosticId} fixed","@l":"Debug","DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T17:59:25.1420800Z","@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":"2023-04-07T17:59:25.6500320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6501110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1b05458b-fa28-4068-9888-2927035ccc56/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6502540Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6506310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6506530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6512300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6512840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/36110055-8fa2-41e9-9bbb-72af07976e75/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6514800Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6518150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6518360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6525320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6525640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a3e0a816-be1e-4fc5-aafd-4ade5815eeea/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6526370Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6546760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6547090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6552580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6552790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/61b9dacd-031b-4b76-ac08-08de5ad66146/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6553400Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6556140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6556270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6561300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6561770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fcbd5214-f47b-4b25-9cce-7c427ec6f44a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6562340Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6565120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6565280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6569270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6569500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cfff775e-e9ad-41d2-ae74-f67e7cef824f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6570290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6573220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6573380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6579210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6579690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f622cb31-389e-45ee-95c9-e19654cc52e9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6582320Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6586810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6587100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6592300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6592600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/83f187b6-1988-4487-88e0-74ba19e3744c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6593260Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6596120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6596250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6603320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6603550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1b63f7aa-dacf-4145-a4d6-eb701b533ac9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6604180Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6606950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6607070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6611020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6611270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c0088337-fcc1-431e-8baf-07ad1704a12a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6611780Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6614640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6614760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6617810Z","@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":"2023-04-07T17:59:25.6620730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6620990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/08df415b-a82b-42d4-9d78-407eafb6e53c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6621530Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6624240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6624350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6628310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6628470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/134b3607-0cb1-4c5f-9108-c4dc4befbfb6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6629000Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6631670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6631800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6636420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6636680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/54913d7f-8ff4-4ffc-8e47-d9b4f47ac3a2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6637630Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6640670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6640830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6662590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6663200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/509635f0-20a0-4a74-9b43-6f23669acdeb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6664260Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6667200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6667370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6674140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6674460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad8aa126-5553-4342-aa61-294edff877d9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6675370Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6678230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6678370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6682370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6682570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/09467c66-768e-406c-a519-dba450c7f1ae/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6682990Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6685690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6685840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6690840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6691060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c0bb958e-21f0-472f-a57c-f0a3c906d284/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6691650Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6694500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6694640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6699860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6700230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4369d4db-4aca-4265-92a1-741c560f25af/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6701060Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6703780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6703890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6710260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6710430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dc34f039-d1d8-4672-9bdc-4f3ccb43948d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6710910Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6713600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6713720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6717970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6718300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/743b90a3-b65e-4412-8db5-e3efc444869e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6718710Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6721390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6721500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6727270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6727570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/81d6d54c-53a9-4e0b-baf7-0d5032943261/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6727980Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6730590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6730710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6734420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6734620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9f065ec7-28aa-47a1-9ca1-6b1a82c683af/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6735030Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6737670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6737770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6742940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6743200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/602842cc-65a1-4438-8970-49edbf9bd9fc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6743660Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6746350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6746460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6770110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6770560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0d014a84-6ea0-4fc1-b4e0-8e9b7d7d8bf5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6771130Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6773880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6774020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6779620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6779840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/63c1b328-cd67-4cb8-a230-c46cef24a449/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6780260Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6782900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6783020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6786490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6786820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8f1f58c6-8ca3-423b-8f94-38ee8c9a56d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6787220Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6789860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6789970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6794490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6794800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b78730a6-76f6-41ed-a288-91ce920f4983/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6795400Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6798170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6798330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6802440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6802670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c5a6bef8-809e-4dc4-8cdd-01d8adfdfaaf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6803120Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6805780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6805880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6810410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6810660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cd91d223-bede-49a3-b37e-e13dd592c2ed/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6811120Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6813800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6813910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6817580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6817790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d1331092-7361-462d-8a74-9118cb644121/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6818220Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6820850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6820950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6825320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6825660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/05256408-04cc-48d7-ad41-018968ad0f85/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6826070Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6828790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6828920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6832300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6832450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4366fae3-b441-4dca-b190-57cf0e627c97/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6832820Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6835490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6835600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6841320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6841570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f38ac944-789c-4fa8-b57c-79b54e74a651/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6842580Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6845560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6845730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6863760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6864160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f922c940-e42b-4784-aad8-678fd01263de/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6865160Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6867980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6868150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6874750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6875020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3f65fbb1-b7b4-4bff-9c58-f63a405b210b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6875460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6878140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6878250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6881650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6881930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0b0ecf28-81ca-4bad-9417-caeb6c2d113b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6882730Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6885660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6885790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6892040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6892470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/874e5f67-27f6-4337-98a8-873838d91abb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6893400Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6896360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6896520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6901380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6901780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/73809d59-9703-4cb8-9854-2334db0cdf91/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6902420Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6905210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6905360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6911400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6911660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/367755ff-6143-4bda-8ae5-1eef57dbe465/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6912200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6914960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6915090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6919080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6919320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b26da324-c4c7-47b0-b0a0-e46e7b587d04/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6919840Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6922600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6922710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6927540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6927720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fbf4384e-622e-49f6-9398-57b00b2778cb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6928340Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6931100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6931270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6935360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6935530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2c6d2720-c48a-4ba6-9240-ec12f2cb96e7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6936070Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6938790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6938940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6944270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6944520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7844a926-c5d4-48eb-ac14-fe7f578d0d43/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6944990Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6947670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6947790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6965680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6965960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/695a35c3-d53e-4ba1-bfcf-738982f10cfd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6966570Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6969490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6969630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6975950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6976410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e16d8dbc-a41b-4a19-8308-3a88aadc3754/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6976950Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6979740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6979880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6983610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6983790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0b81fba6-4a44-4c2d-a3e0-4b4203811c19/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6984290Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6987260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6987520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6993540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6993810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/140a45a2-9e35-47ab-914a-cfd708288c2f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6994360Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.6997080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.6997210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7000890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7001070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0f5be458-09b8-4802-854c-131aec5d486b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7001570Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7004250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7004370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7009790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7010020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/80ea96ea-3365-40b3-baa3-72e5b67a6fc0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7010670Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7013470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7013620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7017830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7018030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eb90ec38-3e1b-46e4-a59c-d214d01bc003/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7018470Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7021130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7021270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7026640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7026960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/370df8f4-ece0-4c0e-bee7-2f2cccfa0a9d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7027710Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7030520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7030650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7034810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7034990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/232de3d9-1fbc-450a-b4f0-173f58593b68/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7035550Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7038370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7038550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7041080Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7041770Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7041890Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7044310Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T17:59:25.7044790Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T17:59:25.7048780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7049060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0089e028-2ac0-4650-91b3-81cee19933cc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7049510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7066900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7067190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7067570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7067660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7073670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7074120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/276872e5-2738-4294-8f17-d0dcf0b6d984/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7074800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7080140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7080290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7080660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7080770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7084100Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7085050Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7089000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7089300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/66e7bb24-541e-40c8-a3ef-f19fa7151f32/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7089810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7095670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7096120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7096530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7096640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7103410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7104210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/44610521-efaf-4eb1-bdf8-dc279e6f7d74/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7105100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7111040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7111200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7111600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7111700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7115400Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7116260Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7120710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7121010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eed2d399-3da2-4d74-be53-6c7317023946/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7121610Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7124550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7124670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7128710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7128950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/16673b0d-8666-4c7a-8505-f9ed74b6dddc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7129870Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7132950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7133100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7136090Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7136800Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7137510Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7142600Z","@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":"2023-04-07T17:59:25.7146850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7147280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/39b06f7f-2e14-4137-b753-c48008bdb97d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7148180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7154310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7154490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7168600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7168970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7176690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7176980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7a4b571e-6b54-4c94-ae39-1afb4092c484/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7177640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7183430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7183600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7184000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7184100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7187570Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7188520Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7192390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7192800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e1a4a72e-e26a-4d91-a61e-bee8012a662f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7193850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7199600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7199750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7200130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7200230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7206560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7206800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5256e701-0aba-41b5-b554-cbc3d4ac4983/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7207310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7213110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7213460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7213860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7213960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7217430Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7218240Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7222360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7222790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/25a93f3a-6ab6-486a-bb95-3acc82251e0f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7224000Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7226960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7227110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7231910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7232150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e001482b-20df-497b-a93f-976738aee61b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7232900Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7235720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7235850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7238660Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7239370Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7240070Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7244170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7244490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/abcc9949-a6bb-4bb4-a574-cfb98b130a5e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7245590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7251130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7251270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7251660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7251750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7274590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7275460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/135f23d9-a265-4d2a-bfe9-86cb2fa0eecd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7276370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7283070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7283490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7283960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7284120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7288310Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7289220Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7293840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7294120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b4dabc63-b765-4e57-bf68-22235d1c9ba0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7295800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7301500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7301720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7302140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7302250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7308910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7309180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/66e79705-4887-4b1c-989b-3b1d9bd47089/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7309700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7315010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7315160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7315540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7315630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7318960Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7319820Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7323920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7324180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9d34edbd-5384-42b4-a70a-0a459e89ec18/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7324740Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7327580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7327720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7331670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7332240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/510b4bc2-c7a8-4205-88d4-b7ea0866eed3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7333250Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7336070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7336240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7338710Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7339360Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7384260Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7385520Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7391150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7391760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/765c6cc1-94da-4465-b461-d8dfdfb19258/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7392610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7398620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7398890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7399290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7399420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7405160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7405420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eca168a2-ca85-4606-8243-73c2e8b7bb0e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7405960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7420380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7420650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7421030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7421120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7424640Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7425390Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7429580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7430000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31f235ee-c4a0-4036-acf8-dd3add392bad/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7431460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7434600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7434790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7440390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7440590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1d3a7883-883b-4f04-955d-ba55cc186cf9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7441280Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7444110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7444300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7446760Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7447360Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7447990Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7738740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7739430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5f32674b-bccb-47a6-b7ca-1a436e690f35/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7740420Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7743440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7743590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7748320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7748580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3eb9b4bd-15c1-4547-bcc6-4a40b5380090/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7749110Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7751930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7752050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7757270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7757520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0086189c-03ee-4396-9900-0e5c57bb5d56/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7757990Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7760680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7760800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7764490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7764710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bc28d2dd-f4a0-40a6-bad0-a98e98ac9d45/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7765080Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7767740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7767850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7772750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7772960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e594acbb-437d-4bf0-8efa-f1c7ae653c0b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7773320Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7775940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7776050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7779410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7779560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e303d837-481c-46f9-8752-63e90b2ddd37/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7779920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7782530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7782650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7785310Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7785460Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.7785970Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:59:25.7790340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7790990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a0b2ff7d-fc99-4331-a725-a445022ec423/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7791780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7797680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7797910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7798320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7798430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7841780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7842350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a90d8879-aedd-451f-88f9-f6a8218d5143/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7843390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7849060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7849200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7849580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7849710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7853410Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7854250Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7858650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7859000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/188638a7-f00b-49be-aeb8-7196a6d9cd10/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7859610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7865070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7865200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7865670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7865760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7871250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7871510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/56faaeeb-fb75-487c-8132-9d875dc09a69/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7872050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7877390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7877510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7877900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7878000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7883990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7884300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9de0bb26-e2b9-4665-bcae-1e8226c3b5ad/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7884820Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7887520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7887640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7891490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7891710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/85e12293-400c-4ff9-b430-346eb931d4f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7892460Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7895350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7895490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7898140Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7898920Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7899610Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.7903390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7903590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/27d507a7-b9a3-4301-b570-4dbe6cf8a358/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7904200Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7906940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7907060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7911250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7911460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a9e9d159-4802-4e1e-9a6b-ca167cbb3d03/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7912010Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7914700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7914820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7936810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7937620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bd3daa4c-86f9-435f-9dd3-5a4b8320d6dc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7938570Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7941410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7941550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7946390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7946610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8a335100-7c3e-4b8e-af76-d6f5221513fd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7947120Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7949820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7949970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7954930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7955140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9024d492-e797-47bf-86b4-4e98ee24667f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7955540Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7958170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7958290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7961900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7962070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a16021c7-0a90-4301-910f-9090fffd461f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7962590Z","@mt":"[NuGet] {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":"2023-04-07T17:59:25.7965320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7965460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7970530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7970880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/23e048c8-3dfc-4054-89d8-42cf9e89c7f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7971330Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7973980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7974090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7977720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7977940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d3efc981-f507-4069-9185-e40fab4985c0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7978390Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7981080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7981190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7986090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7986330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f6e66227-4f4d-43f6-99db-72e94e8f60f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7986750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7989430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7989540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7993050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7993230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bd4b6ea1-7508-48b8-acd9-065f20725b59/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7993610Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.7996330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.7996450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8001630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8002210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b83d5883-7388-4f88-bf0a-cb85fde8a9af/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8002660Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8005390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8005520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8009030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8009410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0a6bcb68-48e7-4656-a266-27e0c3b2adde/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8010000Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8012860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8013000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8100810Z","@mt":"Project {File} cannot be loaded: {Message}","@l":"Error","File":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","Message":"Could not load project. Please ensure the selected VS instance has the correct workloads installed for your projects. If Upgrade Assistant selected the incorrect VS version, please pass the argument --vs-path with the appropriate path. You can see the Visual Studio instances searched by running with the --verbose flag. If you are migrating UWP to Windows App SDK project, make sure you are using the latest version of VS 2022 (>17.2)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Checks.CanLoadProjectFile"}
+{"@t":"2023-04-07T17:59:25.8102130Z","@mt":"Project {Name} was selected","Name":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:59:25.8102610Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T17:59:25.8103380Z","@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":"2023-04-07T17:59:25.8103630Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8104070Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8106380Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8106520Z","@mt":"Backup upgrade step initialized as incomplete; will backup to {BackupLocation}","@l":"Debug","BackupLocation":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8106610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8106710Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8106970Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8107420Z","@mt":"Determining backup path","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8107510Z","@mt":"Using backup path {BackupPath}","@l":"Debug","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8107620Z","@mt":"Backing up {ProjectDir} to {BackupPath}","ProjectDir":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android","BackupPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8150650Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8153120Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8178040Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MainActivity.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/MainActivity.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8218990Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/AboutResources.txt","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/AboutResources.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8237220Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/drawable/Icon.png","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/drawable/Icon.png","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8266850Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/layout/Main.axml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/layout/Main.axml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8288600Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/values/colors.xml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/values/colors.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8310510Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/values/styles.xml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/values/styles.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8330140Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Resources/values/Strings.xml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Resources/values/Strings.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8363540Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Properties/AssemblyInfo.cs","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Properties/AssemblyInfo.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8390910Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Properties/AndroidManifest.xml","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Properties/AndroidManifest.xml","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8410860Z","@mt":"Copied {SourceFile} to {DestinationFile}","@l":"Debug","SourceFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/Assets/AboutAssets.txt","DestinationFile":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android/Assets/AboutAssets.txt","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8414330Z","@mt":"Project backed up to /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry.backup/Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8415240Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Back up project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Backup.BackupStep"}
+{"@t":"2023-04-07T17:59:25.8416190Z","@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":"2023-04-07T17:59:25.8416440Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8416900Z","@mt":"Project {ProjectPath} not yet converted","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
+{"@t":"2023-04-07T17:59:25.8422240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8422620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d428cc85-eb4c-4c6b-828d-d18036e9e834/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8423480Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8426480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8426610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8430850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8431030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/02c45157-cfd0-46a2-97c6-6d29b02ea161/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8431430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8434100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8434220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8436980Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8437120Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.ProjectFormat.TryConvertProjectConverterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:25.8437400Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
+{"@t":"2023-04-07T17:59:25.8440230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8440540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4f606bde-f400-4ad9-a521-8e41cec678f6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8440970Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8443660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8443810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8447270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8447450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a9fb845d-39aa-4fa7-b0f4-0ad0cc9f9e51/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8447830Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8450480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8450610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8452890Z","@mt":"Converting project file format with try-convert, Version=0.4.420501+e30ffa80e708218a29015d598c4ddc46862d32c3","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertRunner"}
+{"@t":"2023-04-07T17:59:25.8455980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8456190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eeba2c9c-353f-4ea7-805b-d0f5ef899aa1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8456560Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8459170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8459280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8462600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8462760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cec58243-16ac-4922-a1bf-545c706f95c4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8463110Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:25.8465740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8465850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:25.8467980Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.8468670Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type Xamarin.Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:25.8469450Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:26.4646650Z","@mt":"Converting project {Path} to SDK style","Path":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertInProcessTool"}
+{"@t":"2023-04-07T17:59:29.6876850Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T17:59:29.6877780Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.AppCompat.Light.Dialog (aka CustomRenderer.Android:style/Theme.AppCompat.Light.Dialog) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6877930Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (4, 0): style attribute 'attr/colorAccent (aka CustomRenderer.Android:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878040Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Theme.AppCompat.Light.DarkActionBar (aka CustomRenderer.Android:style/Theme.AppCompat.Light.DarkActionBar) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878140Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (2, 0): style attribute 'attr/windowNoTitle (aka CustomRenderer.Android:attr/windowNoTitle)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878230Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (2, 0): style attribute 'attr/windowActionBar (aka CustomRenderer.Android:attr/windowActionBar)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878330Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (2, 0): style attribute 'attr/colorPrimary (aka CustomRenderer.Android:attr/colorPrimary)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878420Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (2, 0): style attribute 'attr/colorPrimaryDark (aka CustomRenderer.Android:attr/colorPrimaryDark)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878510Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (3, 0): style attribute 'attr/colorAccent (aka CustomRenderer.Android:attr/colorAccent)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878640Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: Resources/values/styles.xml: (4, 0): style attribute 'attr/windowActionModeOverlay (aka CustomRenderer.Android:attr/windowActionModeOverlay)' not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6878720Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6924630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:29.6954030Z","@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":"2023-04-07T17:59:29.6959640Z","@mt":"Restoring packages for {ProjectPath} with dotnet restore","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.DotnetRestorePackageRestorer"}
+{"@t":"2023-04-07T17:59:30.3704390Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Determining projects to restore...","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:36.4518910Z","@mt":"[{Tool}] {Data}","@l":"Debug","Tool":"dotnet-restore","Data":" Restored /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj (in 5.73 sec).","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:36.4540950Z","@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":"2023-04-07T17:59:45.8182220Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T17:59:45.8399290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:45.8646170Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Convert project file to SDK style","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.TryConvert.TryConvertProjectConverterStep"}
+{"@t":"2023-04-07T17:59:46.6028370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6029540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e3761378-fc94-4366-84ac-a8fe6f137da2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6032020Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6036360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6036590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6042430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6042930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f47af80c-0fa1-41c8-8405-3970ebf5ec28/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6044440Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6047670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6047880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6052490Z","@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":"2023-04-07T17:59:46.6079570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6175690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/82061714-3a47-4233-9898-833031207057/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6177110Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6180620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6182440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6191400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6191790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5c57229c-df63-4f56-bbd9-4616f17280be/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6192590Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6195530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6195960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6201550Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.6208800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6210490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5d8b77bb-1953-4832-abf9-bf7a62c15a72/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6212460Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6216380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6216630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6223110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6223720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b3bd757e-6a79-4527-8782-7a35e897d249/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6224680Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6228000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6228560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6232550Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add TargetFramework for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.6238440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6238870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8865c8cd-b487-4b08-b03b-6508e1f94669/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6239550Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6243410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6243640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6249240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6249790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/26585343-389a-4453-aac2-826cc8889d35/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6250760Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6254050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6254250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6257900Z","@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":"2023-04-07T17:59:46.6258220Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.6262620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6262970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/28f41cf4-e18a-41e2-b22b-7ed776090a9c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6263520Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6266410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6266540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6271410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6271590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/098afd52-7b97-482a-999d-eebb0e999c34/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6272010Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:46.6274670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.6274770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:46.9500610Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Installed Workload Id Manifest Version Installation Source ","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:46.9502790Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"--------------------------------------------------------------------------------------------","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:46.9503500Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"maui 8.0.0-preview.2.7832/8.0.100-preview.2 SDK 8.0.100-preview.2","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:46.9503960Z","@mt":"[{Tool}] {Data}","Tool":"dotnet","Data":"Use `dotnet workload search` to find additional workloads to install.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.ProcessRunner"}
+{"@t":"2023-04-07T17:59:46.9760050Z","@mt":".NET MAUI workloads installed: MauiAndroid, MauiiOS","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiWorkloadUpgradeStep"}
+{"@t":"2023-04-07T17:59:46.9761990Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Install .NET MAUI Workload","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9763210Z","@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":"2023-04-07T17:59:46.9765330Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9765990Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9766290Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9770640Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9771730Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9772070Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9772180Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9773360Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9774720Z","@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":"2023-04-07T17:59:46.9817810Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9818080Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9818610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:46.9819420Z","@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":"2023-04-07T17:59:46.9825820Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9827420Z","@mt":"Removing outdated package reference: {PackageReference}","PackageReference":"Xamarin.Forms, Version=5.0.0.1874","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:46.9828970Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Remove package 'Xamarin.Forms'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9829460Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:46.9829820Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:50.9078270Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T17:59:50.9161840Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:50.9176230Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5306370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5307250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5de3064c-ce23-4762-8b56-55c8e1bde79e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5309070Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5313330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5313540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5318920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5319190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/02be69c2-2406-4759-8427-5abd3f7a2fda/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5320700Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5323720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5323900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5330040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5330260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0071f58c-849a-4971-b026-07db3c0af9f2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5330780Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5333520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5333660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5337570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5337790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/976efc46-904f-4ef3-aa49-62fcb1c27282/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5338180Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5340850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5340970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5346380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5346600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e6729598-21e5-4213-8384-b81009f399a8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5347110Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5349910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5350060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5353930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5354250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8af8d57b-bd2a-47d8-8ef8-908aa67a350c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5354650Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5357300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5357420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5362210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5362420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b11baba2-8aa5-44f2-aa5c-a6dd46c602fc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5362850Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5366510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5366960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5372960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5373290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5b9ecaef-e753-43cd-a2ed-5cff86a73e44/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5373810Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:51.5376510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5376630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:51.5379390Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5381270Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5381410Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5381850Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5381940Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5383550Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5391720Z","@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":"2023-04-07T17:59:51.5694090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":" OK https://api.nuget.org/v3/registration5-gz-semver2/microsoft.dotnet.upgradeassistant.extensions.default.analyzers/index.json 30ms","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:51.5740890Z","@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.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.UpgradeAssistantReferenceAnalyzer"}
+{"@t":"2023-04-07T17:59:51.5752520Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5752750Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5753200Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:51.5753580Z","@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":"2023-04-07T17:59:51.5781490Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5782500Z","@mt":"Adding package reference: {PackageReference}","PackageReference":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:51.5783530Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add package 'Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers'","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5783970Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:51.5784350Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:55.3434370Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T17:59:55.3518950Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T17:59:55.3533500Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0057810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0058560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8f4a78da-8f73-4434-b89b-e158e1c18195/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0059920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0063550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0063730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0069450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0069980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e19a265c-e5e5-476e-8d07-874a8e690c5e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0070570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0073470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0073630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0079560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0080130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/769b4278-7f42-41cd-9069-c708121fbe68/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0080570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0083260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0083390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0087030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0087330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/68cfe5af-9818-4a6e-bcd5-5e8a0a2cc2bc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0089860Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0092610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0092750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0122040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0122440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2f3c8f42-afee-41e7-ba5f-24a7dd71c057/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0123090Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0125930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0126060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0130390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0130570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6856b959-fced-4929-b6de-4ece603b25e5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0130970Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0133650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0133760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0138730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0139000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1fbcb70f-a187-46a7-90bd-2226d129e089/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0139380Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0142040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0142160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0145590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0146080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0253bdf1-9d22-41e7-ab61-f4a62ae0ae0a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0146460Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0149130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0149240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0151930Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0153850Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0154040Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0154490Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0154580Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0156120Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0156630Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:59:56.0156710Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0157090Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0157200Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0158760Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0161350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0161690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8cee8f86-91e5-41d3-b4cb-397faa267de2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0163390Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0166610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0166780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0172350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0172590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6725b972-c772-4f1d-b5b0-bf2d4935c424/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0173280Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0176280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0176460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0179490Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0180130Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0180320Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0181670Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0184910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0185200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7d6694b2-d44b-47e3-aa33-553920d01e19/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0185680Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0188460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0188590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0195080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0195480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4fc05c33-92ee-47ce-ab75-d8c18a4d2d77/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0196160Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0199000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0199150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0202120Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0202710Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0202840Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0204110Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0206830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0207050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/32a16f0f-9297-4723-a263-363f83fffaa1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0207660Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0210540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0210690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0212440Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0212890Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0213250Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Clean up NuGet package references","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterPreTFMStep"}
+{"@t":"2023-04-07T17:59:56.0213650Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0213940Z","@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":"2023-04-07T17:59:56.0214030Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0217640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0218130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0ebb04e2-59a8-4a3d-999e-03d763ed0606/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0219520Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0222300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0222430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0226180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0226400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e1c0cc5f-3789-4f91-9df0-3d75a5a0d234/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0228350Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0247150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0247460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0250900Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:56.0251690Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:56.0252350Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T17:59:56.0253100Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update TFM","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0253260Z","@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":"2023-04-07T17:59:56.0253410Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0254190Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0254320Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0255670Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0256530Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0256930Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Duplicate reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0257010Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0258150Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0258480Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0258870Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Package map reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0258950Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0260130Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0264880Z","@mt":"NuGet package {NuGetPackage} loaded from {PackagePath}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","PackagePath":"/Users/dmo/.nuget/packages/Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers/0.4.410601/Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.410601.nupkg","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:56.0274370Z","@mt":"Found target frameworks for package {NuGetPackage}: {TargetFrameworks}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers.0.4.410601","TargetFrameworks":["Any,Version=v0.0"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.PackageLoader"}
+{"@t":"2023-04-07T17:59:56.0274850Z","@mt":"Package {NuGetPackage} will work on {TargetFramework}","@l":"Debug","NuGetPackage":"Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.410601","TargetFramework":["net7.0-android"],"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.Analyzers.TargetCompatibilityReferenceAnalyzer"}
+{"@t":"2023-04-07T17:59:56.0274960Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0275380Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Target compatibility reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0275470Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0277000Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0277140Z","@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":"2023-04-07T17:59:56.0277230Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0277610Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Upgrade assistant reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0277710Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0278910Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0279050Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0279390Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows Compatibility Pack Analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0279460Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0280590Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0280780Z","@mt":"{Project} is not a VB class library","@l":"Debug","Project":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.VisualBasic.MyDotAnalyzer"}
+{"@t":"2023-04-07T17:59:56.0280850Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0281160Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"MyDotAnalyzer reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0281230Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0282350Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0286280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0286670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8151d249-837d-4c71-a002-2e15ae6b67aa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0287290Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0290150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0290260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0294070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0294260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a62d3285-2fe5-47c1-bec1-ae55bfdcf942/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0294800Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0298320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0298720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0302350Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0302990Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Newtonsoft.Json reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0303140Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0304480Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0308220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0308510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5ec52e73-1e2a-4093-8273-37d9dab77e21/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0309060Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0311940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0312070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0316220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0316430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3798b426-efd2-4fd2-961e-54eb0ea56aaf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0316900Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0319580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0319700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0322590Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0323390Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Windows App SDK package analysis","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0323560Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0324990Z","@mt":"Analyzing packages with {AnalyzerName}","@l":"Debug","AnalyzerName":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0327910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0328200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0e6b6ae2-bda3-4f35-ac6e-5da04c167aca/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0328690Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0331460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0331560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0333000Z","@mt":"No package updates needed","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0333410Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0333740Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update NuGet Packages","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Packages.PackageUpdaterStep"}
+{"@t":"2023-04-07T17:59:56.0334120Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Transitive reference analyzer","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0336860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0337360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f84f0a93-9e94-4da1-9a68-d2bfa77ba0f7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0337740Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0340380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0340490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0344130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0344350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/82ff8093-11c0-44d1-8c49-2379543a5847/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0344690Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0347270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0347380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0349990Z","@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":"2023-04-07T17:59:56.0350170Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0352830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0353030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c45c9950-647f-4d28-9abb-7f727f8869dd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0353500Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0356200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0356320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0359860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0360060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/735c7290-a17d-4822-b50b-ad17ba6e28f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0360430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0363070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0363190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0365560Z","@mt":".NET MAUI Project Properties need to be added.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:56.0365920Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0383640Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T17:59:56.0386720Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T17:59:56.0391470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0392060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4e15e88c-2678-4d3f-bf32-6de994099ca8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0394810Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0397980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0398120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0405030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0405580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/639e1fc2-779f-49f8-96fc-c418334e1666/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0406750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T17:59:56.0432980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0433260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T17:59:56.0443990Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidResgenFile","PropertyValue":"Resources\\Resource.designer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:56.0445190Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidHttpClientHandlerType","PropertyValue":"Xamarin.Android.Net.AndroidClientHandler","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:56.0445790Z","@mt":"Removing Project Property: {ProjectProperty} Value : {PropertyValue}","ProjectProperty":"AndroidUseSharedRuntime","PropertyValue":"false","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T17:59:56.0447490Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T18:00:00.8571210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T18:00:00.8572210Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.Android:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:00.8572390Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:00.8665370Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:00.8755470Z","@mt":"Updated {ProjectType} project properties for .NET MAUI project {ProjectName}","ProjectType":"MauiAndroid","ProjectName":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T18:00:00.8764960Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update Project Properties for .NET MAUI Project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiAddProjectPropertiesStep"}
+{"@t":"2023-04-07T18:00:01.5335950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5336740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/17703991-bc90-490d-a45b-77e49ae76bbd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5339080Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5343400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5343610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5349440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5349630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3d1e8a3c-174b-445c-8524-87aa844c0cd1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5350210Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5352940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5353080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5359700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5359910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/096dbf8e-126b-4f1a-91a0-f2188b404655/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5360740Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5363680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5363830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5368290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5368760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/64280711-9eac-419a-ac03-c5964a080ba7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5369390Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5372180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5372320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5378080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5378560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/efdb75c2-12ed-4eaa-8a8e-936ee069160b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5379370Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5382320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5382480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5386900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5387510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8cce62d1-1ad2-4c6e-a09a-5bf7275e29d9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5388120Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5390850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5390990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5394090Z","@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":"2023-04-07T18:00:01.5396900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5397130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a201476-7c76-4481-8270-3b0299cd8e70/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5397680Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5400370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5400500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5404140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5404450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31989b95-33ca-4073-bc5f-23b8835fc8aa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5404940Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5407590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5407710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5412790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5413030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eb6fc9fa-06b2-4bce-9e1e-550afe086e46/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5413690Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5416470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5416610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5420750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5421150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2f19acff-14aa-4fee-a6d2-b115181254a0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5421760Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5424490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5424620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5448580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5448930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a964ee6d-19ba-40c7-bf82-64d50153d5e1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5449810Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5452770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5452930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5457290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5457770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d41f2650-3f83-4b44-966c-a3d08ed4ba58/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5458350Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5461080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5461210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5464100Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:01.5467800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5467990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e8139325-ff62-43c5-9612-56791dd315e7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5468670Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5471460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5471610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5475560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5475780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/62992561-11e8-48db-b9c9-a186b753e237/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5476310Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5479000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5479190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5484560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5484950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/257c5f3d-c73c-4ed7-9ba4-8fb25d503110/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5486490Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5489710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5489890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5495740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5495990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ba64b4fa-3355-4dd3-8dec-375fccebfbb0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5496580Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5499320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5499460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5505300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5505860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1e39f6b5-80e1-4c79-95ef-ad741e2e94b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5506570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5509350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5509480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5513610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5513830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f293f122-6ddd-4eec-9886-9109c7f669f2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5514400Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:01.5517140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5517280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:01.5521560Z","@mt":"{FilesNeededCount} expected template items needed","FilesNeededCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:01.5522230Z","@mt":"Needed items: {NeededFiles}","@l":"Debug","NeededFiles":"MainApplication.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:01.5522440Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:01.5522570Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:01.5524980Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:01.5526050Z","@mt":"Resolved project property {PropertyKey} to {PropertyValue}","@l":"Debug","PropertyKey":"RootNamespace","PropertyValue":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:01.5552720Z","@mt":"Added template file MainApplication.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:05.0480080Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T18:00:05.0480890Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.Android:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:05.0481030Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:05.0562530Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:05.3506930Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T18:00:08.8842290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T18:00:08.8842960Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.Android:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:08.8843100Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:08.8918780Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:08.8932420Z","@mt":"{ItemCount} template items added","ItemCount":1,"SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:08.8933310Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Add template files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Templates.TemplateInserterStep"}
+{"@t":"2023-04-07T18:00:09.5309250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5310220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f42c63ee-bbf7-4dc0-aef9-f7454e214abb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5312160Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5334390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5334730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5341160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5341420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9e2275f9-fcd7-45ec-a176-a4521882c228/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5342140Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5344890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5345040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5351410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5351690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b4732944-6311-435c-9319-7f21af692e81/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5352250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5354920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5355050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5361330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5361840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bddfce66-d414-4b67-9bd1-90c3f388b154/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5362760Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5365850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5366030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5372610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5372980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5bf4c962-dd49-480c-8a26-f06cbb66cf7c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5373700Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5376740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5376990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5381970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5382220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c814f5bc-459f-4751-b110-46c01e1667d4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5382930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5385700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5385850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5391620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5391980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3563111f-1dc4-4129-b3e1-c66fe5b38c12/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5392520Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5395210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5395340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5399240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5399410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7ff09db4-caa5-4b9e-958b-6cf3d3951364/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5399910Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5402540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5402660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5405470Z","@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":"2023-04-07T18:00:09.5408300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5408560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/af00ef30-50d3-485d-bba7-e0c79318dbaa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5409360Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5412300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5412470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5417040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5417490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7fd4ea2e-ba71-4d45-91a4-84cfdf9c39d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5418070Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5420760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5420880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5426390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5426600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/309a320a-5484-4034-9896-d6ae0ccde484/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5427220Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5445750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5445980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5451370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5451650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/99797a43-f898-48b5-a22a-042ace7e5561/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5452290Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5455020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5455170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5460750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5460980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/139b010e-ab4e-4856-8af0-ced6b5cff238/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5461480Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5464120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5464240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5467890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5468060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7641dad9-8866-433e-a7dd-d64e33e146b8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5468960Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5471970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5472130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5478350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5478610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ecfbc93-d2ca-480b-8880-5a1387f91c26/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5479230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5481930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5482070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5485840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5486020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9a0cbac0-1199-4657-bc83-a47e9f1272d9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5486810Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5489750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5489920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5492860Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:09.5493830Z","@mt":".NET MAUI project does not contain any XAML files","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.XamlNamespaceUpgradeStep"}
+{"@t":"2023-04-07T18:00:09.5494450Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update XAML Namespaces","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:09.5500370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5500630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ec76538-0ad5-4aba-8d79-f78878e91f73/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5501520Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5504450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5504610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5509220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5509420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bf2037ca-b86d-4c0f-adf3-76e31f2cb6f2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5509970Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5512720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5512850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5517360Z","@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":"2023-04-07T18:00:09.5517670Z","@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":"2023-04-07T18:00:09.5517830Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:09.5518390Z","@mt":"Opening project {ProjectPath}","@l":"Debug","ProjectPath":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:09.5518540Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:09.5525670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5526200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fd816c6d-af81-4459-9cc9-8e15ac9898c6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5526940Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5529770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5529910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5534360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5534550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/90bcaa20-b84e-41c0-b0a1-405e531c77d5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5535070Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5537760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5537870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5588480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5589040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d67e92e7-d328-41c2-9c60-86caadb0eca1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5590540Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5594000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5594290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5598730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5598930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/54b10b70-ed00-4193-ae04-950c70b64083/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5599700Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5602490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5602630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5608190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5608400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/be9a7781-b374-45f5-bad9-2bfc42bad722/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5608950Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5611670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5611800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5615610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5615790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/08a472a4-c4e5-4452-8f61-fc4c0421c732/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5616290Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5618990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5619120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5624230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5624410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/09484e5f-1438-407b-9682-52de3de6d3a6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5624910Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5627590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5627740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5631390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5631590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b2f08251-05f6-4593-8424-dc663bf9e330/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5632320Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5635220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5635370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5643340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5643600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ed99246f-bff5-4847-81cd-e61bd0bc67a9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5644340Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5647290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5647460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5651940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5652200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ef44cada-55c3-4d7c-ab1e-64318a34fc1e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5652800Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5655570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5655730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5661350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5661570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e007914a-cc5a-4c47-ae63-409f4e186f4f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5662100Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5664730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5664850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5668540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5668820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e6fe5c44-a153-4608-b4fd-4d4c0b1d07c8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5669490Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5683330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5683560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5692200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5692610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/738a79d4-8303-4354-aac2-57f842d076b2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5693320Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5696050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5696180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5699960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5700390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3adcb8cc-1a1c-41a6-816c-bb50414a67c4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5700900Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5703530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5703640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5709350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5709570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9fe82a02-8a63-4183-ba34-d57f92ae6506/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5710090Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5712840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5712980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5717300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5717660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/79ad5cce-276b-4060-a5f0-fa7a48c1e492/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5718250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5721580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5721830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5729290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5729640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1b17831c-4691-420a-a695-0e30ee8bece3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5730160Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5732930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5733060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5736930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5737140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/376673f0-530b-4bc5-b07b-ee0ef0942148/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5738130Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5740910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5741040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5749310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5749860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/becbca85-9771-4f3a-a907-af8ec8661805/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5751230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5754050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5754180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5758100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5758260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a56048e9-eb14-450b-add1-f49ecb3f77fb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5758810Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5761490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5761650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5767730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5768050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/009d4bee-9fda-456a-bca8-f0ab2a131529/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5769220Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5772370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5772550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5777720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5777960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/42554dc1-b46e-4ff8-8688-ef481f8c8290/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5778680Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5793510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5793770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5800840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5801070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7bd4cdab-aa9b-4b55-ad6e-4fde619331f9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5801690Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5804360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5804520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5808260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5808400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0460229e-8af9-40dc-927a-0cafa543962e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5808880Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5811540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5811660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5817000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5817170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5db4db9c-dfe9-4310-bc1a-0b31bd2dd5a4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5817670Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5820290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5820400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5823760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5823900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b39fa40c-d1d9-4287-9efb-68bbbde0d04e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5824360Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5826960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5827070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5832640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5832830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f278fb6a-7a49-4a66-92a8-66c7802e0888/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5833330Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5835990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5836100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5839540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5839720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/18bd007a-8dc6-43f2-bf62-af4280577ffc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5840180Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5842880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5843010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5848260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5848430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8b79361b-762f-45e4-9b51-3b9595532cdb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5848920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5851560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5851690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5855120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5855520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2b01d82c-7442-4ca4-b969-e5b45b84c0e4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5856200Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5859020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5859350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5864840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5865160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cf7e8c0d-4e7d-4b8b-97ef-6d3d7f4ef785/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5866270Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5869320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5869460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5874290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5874630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/86316074-887b-47fc-87fd-fcfb1e7e3142/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5875170Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:09.5889900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.5890170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:09.7117940Z","@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":"2023-04-07T18:00:09.7123980Z","@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":"2023-04-07T18:00:09.7126260Z","@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":"2023-04-07T18:00:09.7130500Z","@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":"2023-04-07T18:00:09.7143890Z","@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":"2023-04-07T18:00:09.7148060Z","@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":"2023-04-07T18:00:09.7179460Z","@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":"2023-04-07T18:00:09.7586990Z","@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":"2023-04-07T18:00:09.7591510Z","@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":"2023-04-07T18:00:09.7593760Z","@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":"2023-04-07T18:00:09.7596880Z","@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":"2023-04-07T18:00:09.7600800Z","@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":"2023-04-07T18:00:09.7603790Z","@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":"2023-04-07T18:00:17.3419180Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":3,"ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:17.3422590Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0001","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423090Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0002","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423210Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0005","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423300Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0006","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423400Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0007","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423490Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0008","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423570Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0010","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3423650Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0012","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3424050Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":3,"DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3424850Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA0015","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425030Z","@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":"2023-04-07T18:00:17.3425150Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA307","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425240Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA309","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425350Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA310","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425430Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA311","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425520Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"UA312","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425600Z","@mt":"Identified {DiagnosticCount} fixable {DiagnosticId} diagnostics","@l":"Debug","DiagnosticCount":0,"DiagnosticId":"[UA313, UA314]","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3425710Z","@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":"2023-04-07T18:00:17.3425970Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:17.3433260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3433630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dd315b3c-7cd3-4a4d-98df-fe12b8a95280/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3434850Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3438070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3438270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3443340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3443610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5737516d-a97d-4325-81f2-d9723ace22f9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3444170Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3446900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3447030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3454120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3454730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6763bca1-b8f1-4810-b08a-307b9201b674/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3456390Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3460260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3460530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3465220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3465500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/10be7093-8c3a-4d11-9674-2815d53f592c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3466260Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3469100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3469280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3475500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3506140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f55d717b-542c-467b-966d-d29bee73dc88/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3507270Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3510410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3510600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3516910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3517140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cc748ef9-4b10-4973-9af3-45bf56d6895d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3517740Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3520580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3520730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3527640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3527910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/be4c18c6-3d79-4abf-88dc-85eae88ad96b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3528530Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3531310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3531450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3535690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3535860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9057aeb6-f896-4961-9b08-42940252584e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3536370Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3539070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3539220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3545250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3545490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/658dc71c-9df6-4370-954d-7ab052259f8d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3546060Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3548800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3548930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3552780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3553130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/875a2b90-28e1-49ef-8338-f8081a3130a3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3553760Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3589680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3590180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3599540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3599830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/92d86d89-ad1b-4425-9449-648eed9b3a19/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3600630Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3603470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3603600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3607860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3608070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/33bfccab-d0dd-4f0e-a85a-bbe30e3784ba/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3608790Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3611610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3611760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3618910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3619150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/74d4fb6e-afb5-4276-8b29-aa0a0fc7b491/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3619750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3622510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3622640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3626550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3626730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fb777329-a530-4805-a664-120371f4b6dc/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3627230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3629900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3630030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3633260Z","@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":"2023-04-07T18:00:17.3635720Z","@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":"2023-04-07T18:00:17.3691890Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:17.3692400Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MainActivity.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3731440Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:17.3731790Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:17.3732380Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:17.3740620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3741520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/45630635-ebff-4774-ac5e-d8f1c11833c7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3742490Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3745950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3746130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3750990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3751180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/262f2355-675a-4e76-95ac-a28198d40cc6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3751750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3754480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3754610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3761420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3761660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f6bc8a31-5073-49c0-97fe-1d5e199cf471/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3762260Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3765210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3765340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3769170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3769340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9799482f-6a10-411e-a03b-f3e8b29168e5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3769850Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3810460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3810980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3820710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3820990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/648d4609-d2d7-4f71-bdde-284dc945cf72/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3821820Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3824660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3824800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3828690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3828850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/281dc82f-1369-4578-be62-23482c820c51/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3829380Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3832030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3832160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3837540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3837720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8d488ecf-67fe-4464-9bc7-fccf42a9e24b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3838230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3841060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3841190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3844780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3844930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f2b7cba3-0838-42ff-b9c4-eeaee43a4cf6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3845410Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3848060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3848190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3853480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3853660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fe0574c5-9146-4360-9200-e8174690b053/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3854190Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3856940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3857060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3860660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3860820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d4622ce9-51de-4616-a7a6-900f9ac9f5d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3861300Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3864840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3865510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3875070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3875370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/69cc1342-b191-45a5-952a-20d8db08f040/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3876000Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3878840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3878970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3883380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3883540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bac9c1b2-71ed-423c-8c5b-05a3dd8d7366/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3884050Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3886710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3886820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3894070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3894310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ff45a3d2-85c0-4d4c-b9f9-2159098a74fa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3894840Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3898560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3898740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3903710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3903970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/206b6011-21d2-4042-8456-c4ba0ad6bac5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3905250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3963960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3964710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3975900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3976530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/edc258b8-0a4a-4d5a-89ad-ec9be53ad7ee/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3979230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3982520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3982690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3988030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3988430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/542cf843-880f-4e0e-972a-e37d6040d801/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3989230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.3992300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.3992510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4001480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4001790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9d6a1644-7b23-4cad-b412-4ff10a054930/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4002740Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4005670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4005830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4010360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4010590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/89172e7b-c3d2-4cb1-8181-aa58242861aa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4011150Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4013850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4013980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4021620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4022080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f99312c8-18ad-4c24-a7c5-f71776355f5d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4023070Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4026130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4026310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4031840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4032130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/78f4b819-8e74-4ded-b77e-57f46baa560b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4032800Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4035720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4035880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4043110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4043690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/61fc6f25-f776-4ece-b58e-eabc2b650892/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4044410Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4047190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4047330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4051400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4051560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ba6a9861-c306-4d29-98d6-4cc189140ffe/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4052100Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4054800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4054920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4060690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4060890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9c707784-568b-43f4-8d6f-e2d52b6a56d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4061420Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4064790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4065300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4071620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4071880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c2e8fb0f-be46-41aa-b3bf-2a32dcccaec3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4072760Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4092660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4093010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4100610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4100870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b81aa31f-d3ee-489f-963b-1a4c4b1d74b0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4101570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4104350Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4104500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4108520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4108990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/18e889fe-d6ce-4721-8c3c-04c8c325b156/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4111680Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4114850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4115040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4123700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4123980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e9ce590b-fbfd-438d-bb02-49ae3dc65dcb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4124720Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4127550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4127690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4132160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4132410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/417bcbbc-be93-41f4-9e1c-35c75c5afaa0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4133030Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4135750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4135880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4141400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4141640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/75f42895-8a4d-44a3-8950-08e862aff3fa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4142210Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4144950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4145070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4148730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4148950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6835d74b-2049-45f0-8fb4-fbb127b6aa2e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4149510Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4152300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4152430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4158300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4158620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/29b66181-3f27-4547-9b0d-d97e768129fd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4159170Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4161920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4162040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4165830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4166020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/242e0359-5009-4a57-992a-9edfcba5ae37/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4166720Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:17.4169390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:17.4169540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9053310Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":1,"ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:24.9087540Z","@mt":"Source successfully updated","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:24.9088220Z","@mt":"Diagnostic UA0014 fixed in /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/MyEntryRenderer.cs","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:24.9088850Z","@mt":"Running analyzers on {ProjectName}","ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:24.9097490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9098070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/67ddc92b-3328-4839-a7b9-1e1837a94504/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9101890Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9105520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9105760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9112530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9112780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/160a0f73-70ee-42bf-90ea-c127fd9481e8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9113570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9116320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9116460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9123620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9123870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/42aa9086-3785-479d-9a79-8194dd245fc7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9124920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9128080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9128250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9133270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9133550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6003bf8d-59e8-487c-bd4b-be66d7c8f5a5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9134400Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9137330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9137490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9143890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9144120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/98b265cd-4904-4111-a3a1-72efaf40be8a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9144710Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9147430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9147560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9151410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9151580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/94f5eecf-168a-4a6e-8633-8a0c07e46a89/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9152090Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9154810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9154940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9160720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9161000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/69a9a160-afd6-40ba-8b93-1be72f08257b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9161670Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9201140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9201540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9207740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9208030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/976e3670-dc14-453c-a8a9-21ed1b0e3353/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9209120Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9212230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9212390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9220540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9220910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/99825682-34a4-4758-9e0d-8418920bd4aa/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9221690Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9224640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9224800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9229450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9229650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a2f3b93-b201-47bc-81d1-eeeac4298580/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9230250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9233030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9233180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9239240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9239660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d9e5e2d0-604d-49b5-bf16-170ac268d65f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9240220Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9242950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9243070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9246890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9247060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d70ba4eb-ba93-446d-9b5d-e3a3ff18099f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9247600Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9250290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9250420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9257140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9257510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/5fe053af-0187-44b4-9c5f-59af8109ba47/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9258730Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9261790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9261960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9267150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9267390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/83492eeb-91e9-454d-b2ad-e9fe98e9acd7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9268230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9271130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9271280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9278300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9278770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/08f2432c-25d0-47c3-b430-ee1c1c54789f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9281280Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9284790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9284980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9289020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9289210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e0ce1e4b-f82f-4bdb-bc1e-1bf182b54382/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9289920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9292620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9292750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9298710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9299100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0645a9c7-692a-4f27-8b6a-c7d860befcec/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9299830Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9333620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9334080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9339930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9340210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/592a41fe-abad-47d6-b4fe-bdd3ae198954/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9341230Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9344210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9344380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9352150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9352540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6acdeab9-2045-40e0-b962-9ec611585528/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9353750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9356870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9357030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9362660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9362900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8c930231-a262-4d1e-ab11-00772c946e4a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9363630Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9366420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9366560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9372510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9372720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b54cac00-2587-4c3d-9161-3caa16811036/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9373260Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9375950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9376090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9379720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9380100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a2310b3f-7382-41ab-90ae-7b1dbc020c7c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9380860Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9383730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9383880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9391390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9391980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/2f4b0048-c44f-4924-b0dc-24cbcfc6dc38/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9392670Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9395570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9395710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9399770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9400070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fc7d7dd6-d731-47e2-a152-dedf9568e116/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9400770Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9403530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9403710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9409970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9410150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6b617c95-1077-45c0-a4e7-8e69af197b00/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9410830Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9413630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9413780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9417830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9418000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/851be9ca-f8a7-443b-a273-64e7080af992/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9418620Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9421370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9421490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9476710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9477270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/22766be7-6d93-4dd1-8c5b-d35d056dbd5e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9478260Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9481290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9481480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9486990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9487180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ffbe4caf-0d39-492b-8ed7-ae436f3b5879/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9487740Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9490450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9490590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9497390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9497790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/98cb0fdb-100f-4e6b-9c10-3299fae11439/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9498340Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9501010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9501130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9504750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9504940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/07e93a53-432f-4e30-81d4-898f905005b8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9505630Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9508480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9508640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9514880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9515100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ec1a9f27-535c-402c-8892-5e5d982ef827/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9515800Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9518640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9518800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9523000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9523390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/79b6b980-63f3-4190-b97b-a421ee0a1bf1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9524970Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:24.9527770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:24.9527930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:32.4201080Z","@mt":"Identified {DiagnosticCount} diagnostics in project {ProjectName}","DiagnosticCount":0,"ProjectName":"CustomRenderer.Android","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.RoslynDiagnosticProvider"}
+{"@t":"2023-04-07T18:00:32.4204780Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:36.2462190Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T18:00:36.2463150Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.Android:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:36.2463290Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:36.2605700Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:36.5493280Z","@mt":"Saving changes to project file","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildProject"}
+{"@t":"2023-04-07T18:00:40.1042690Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/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":"2023-04-07T18:00:40.1043490Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): resource style/Widget.Material3.CompoundButton.CheckBox (aka CustomRenderer.Android:style/Widget.Material3.CompoundButton.CheckBox) not found.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:40.1043630Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/Android/CustomRenderer.Android.csproj' with message: /usr/local/share/dotnet/packs/Microsoft.Android.Sdk.Darwin/33.0.26/tools/Xamarin.Android.Aapt2.targets: (156, 3): failed linking references.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:40.1120910Z","@mt":"[{Level}] Problem loading file in MSBuild workspace {Message}","@l":"Debug","Level":"Failure","Message":"Msbuild failed when processing the file '/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj' with message: The imported project \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" was not found. Confirm that the expression in the Import declaration \"/Users/dmo/.dotnet-upgrade-assistant/dotnet-sdk/7.0.200/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets\" is correct, and that the file exists on disk. /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.MSBuild.MSBuildWorkspaceUpgradeContext"}
+{"@t":"2023-04-07T18:00:40.1136720Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Update source code","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:40.1137930Z","@mt":"All instances of {DiagnosticId} fixed","@l":"Debug","DiagnosticId":"UA0014","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Source.SourceUpdaterStep"}
+{"@t":"2023-04-07T18:00:40.1138090Z","@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":"2023-04-07T18:00:40.8526510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8527260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/871cdac6-c13c-4e69-aa90-501239871972/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8528990Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8533320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8533530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8540100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8540360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e3b228ad-fa9d-4eaa-b2a3-694804c236ee/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8541090Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8544170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8544320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8551700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8552220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4f3feb02-bd32-4a28-9c3e-452b5fbbe7ce/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8553510Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8556640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8556820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8562220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8562470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/618fa84e-db32-427e-9e06-ff5d708092a0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8563070Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8565850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8565990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8572600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8573030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/13155cd6-3865-42e6-a3a5-7b0c582522b9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8573730Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8576580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8576720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8581120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8581370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/21e79363-fa3a-486c-a15a-694931cdf889/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8581940Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8584650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8584780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8591250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8591700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/523da800-6a15-4b1c-9133-49b476180f0b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8592500Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8596060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8596480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8625070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8625520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/081e55f9-2574-4eda-bac5-f3dd955fb4f9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8626430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8629290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8629440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8640000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8640430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8b82d1a4-71b0-47fb-9de9-934e5e66ef89/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8641150Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8644050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8644190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8648700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8648940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8833dc29-11c6-44c0-9bd1-f4830f1f9652/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8649570Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8652270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8652400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8655980Z","@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":"2023-04-07T18:00:40.8659560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8660180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1f69422e-1f46-4897-972c-a6d364bec36f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8660860Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8663690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8663840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8668130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8668670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e7be427a-c243-42f3-9a63-78a7a870e186/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8669380Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8672120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8672260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8678250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8678570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a3b1046-e1ac-430a-a85d-7d9dd2e89ef6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8680240Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8683140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8683290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8687680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8687880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/28505c99-998a-4517-835b-70519e69eae8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8688430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8691100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8691220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8697650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8698210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/15cb19b5-2bba-49c6-9435-6b2250187e18/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8698950Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8701820Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8701970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8706270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8706460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/962dae4e-4716-46d1-9b44-c973aa8faf1c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8707000Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8709690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8709830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8715510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8715740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/956aa1ff-ecc2-4325-8cd2-c3420ec99188/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8716420Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8719230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8719380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8743190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8743490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aed5484f-97b0-4fbf-b58f-4d1d6b4d99ff/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8744300Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8747210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8747370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8754760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8755000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/21bc572d-f8d6-4870-890a-518a8f00b8b1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8755640Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8758400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8758530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8762340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8762540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1f42ed50-534f-4875-a6a3-66347ada66d8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8763130Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8765830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8765950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8771650Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8771880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/555c80c9-cae6-4e8d-81b0-6263f301bd2e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8772430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8775100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8775240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8779260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8779440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eb554a53-0a63-41d9-ba38-8a243d9001d2/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8779930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8782710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8782840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8788670Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8788890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad70b16b-1271-4451-8bc7-131e5e287583/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8789400Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8792620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8793240Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8799610Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8800220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1da9203a-7516-4cc8-842e-24084221ee0d/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8800930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8803740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8803880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8810030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8810490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b1432db0-50e2-49c4-a7a0-8e319cf735a1/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8812530Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8815420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8815550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8819410Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8819590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f2433f2b-23f3-4e32-b614-ef21f0eace16/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8820100Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8822800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8822930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8828340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8828560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1b69cd06-74ee-405f-a162-9313c83f6441/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8829140Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8870590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8870960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8877320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8877860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9263276f-c139-451b-8fae-a7a4248b5216/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8878890Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8881830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8881970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8890010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8890560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d6dacdd6-7f3e-47f5-9008-816041c18d31/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8893170Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8897690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8897920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8903950Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8904250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/1ae960f5-f82a-47ab-879f-36df6bd6f07c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8905110Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8908030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8908190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8915250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8915700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d63e9df0-9f59-4b97-9ce5-e0ec468d7abd/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8916330Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8919180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8919310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8923270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8923840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a2ed15fc-f39a-4827-877d-52772eb20824/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8925200Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8928300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8928470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8937680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8937970Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/39b7a5aa-809c-44e7-b6a7-ebfc3b376060/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8938590Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8941330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8941470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8946250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8946600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/17e0a8f0-fb8d-4062-bda0-0ab8967bcfed/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8947400Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8950290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8950440Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8957900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8958190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/31fa43a8-7675-4291-b64e-0ffd1b61f666/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8958800Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8961980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8962300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8967080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8967590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f2e66b9d-e005-414a-9603-987b3d44de9e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8968470Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8971390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8971550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8979680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8979890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/4e9a709a-33c7-492f-bbd2-9e06f18c55b6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8980650Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.8997290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.8997560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9002770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9003020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/bb931149-4bf1-438d-b37a-16d278041423/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9003720Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9006510Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9006640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9013280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9013490Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/486f5264-5dfa-4236-8f14-6651ce62b3d7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9014210Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9016960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9017090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9020960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9021120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/c712c613-2a30-4004-b2a7-4b1e7c6703e7/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9021630Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9024300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9024420Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9030470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9030700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e58c3465-92ba-4a0f-872d-acba0d4b9a56/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9031540Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9035000Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9035540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9041810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9042100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/864762a5-9f43-461f-8b51-07bf73075c4e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9042920Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9045810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9045960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9052810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9053090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dfc10352-74d9-4493-96e7-c676f12fe472/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9053830Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9056640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9056780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9061570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9061870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d9b8c868-1c07-4953-8ae6-164b60758dc3/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9062540Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9065400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9065550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9071680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9072140Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/405fcd2a-534c-45e4-a579-bf2acd2d2b4a/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9072930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9075880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9076050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9080660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9081040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9d729a79-2622-4c86-8f82-bc5f18acb78e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9081590Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9084300Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9084430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9091020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9091360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/deb78109-8ab0-4cfd-9bca-e6d58829a6f8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9092080Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9109030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9109270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9114340Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9114540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/7aebcc26-73af-4a26-a3e8-a9a4648ff613/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9115250Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9118590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9118840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9127020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9127630Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a62bda5-600c-4973-83e0-416e33b09aa9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9128260Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9131100Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9131270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9135840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9136090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/593fb063-54f4-4550-a9d3-3748a6911f34/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9136840Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9139710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9139870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9147120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9147500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/69173c78-2342-43b7-9d64-771478355e81/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9148930Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9151860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9152020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9156730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9156940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/8d23d694-1d51-4e0d-8610-eab1108dd8fb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9157490Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:40.9160180Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9160320Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9163470Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:40.9164170Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:40.9164290Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:40.9166960Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T18:00:40.9167650Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Move to next project","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.NextProjectStep"}
+{"@t":"2023-04-07T18:00:40.9172660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9173070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d499f999-a6b7-4f98-a919-ad03e8ae0d82/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9174150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9180040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9180190Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9180770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9180860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9186010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9186210Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/728f43e2-64f3-4854-844b-1d5b1218b03b/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9186640Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9192070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9192290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9192740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9192850Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9196460Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:40.9197550Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:40.9220270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9220890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/3a4c2af5-5453-479f-9496-51146ccf1b1e/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9221870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9227360Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9227500Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9227870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9227960Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9234230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9234480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/32189bcc-5244-4c01-8562-8950a58c6197/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9235380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9240930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9241090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9241460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9241560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:40.9245000Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:40.9245830Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0261160Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0261750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ad653a25-9194-4e1b-a812-3ea65e6e3f95/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0262860Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0266200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0266390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0270990Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0271430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/aba78ab3-8cb1-4a8e-8ce7-f43ff0c4c014/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0271920Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0274730Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0274870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0277460Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0278170Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0278830Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0282840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0283030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/b86638be-1a6b-4ea5-8eeb-34c39202c353/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0283750Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0286550Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0286700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0290660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0290830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/140190a3-a6e3-418d-a296-f54006eba1d5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0291430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0294590Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0294740Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0298540Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0299060Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0299660Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0304290Z","@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":"2023-04-07T18:00:41.0307220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0307400Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/42b9415d-ec99-4e95-ba0e-0fa3bc50ab53/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0307890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0313130Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0313260Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0313620Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0313710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0318380Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0318530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/17a52189-3f31-4e38-b1f5-7bb2d725e555/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0319030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0324310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0324470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0324880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0325020Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0328020Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0328920Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0332050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0332290Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/de0654a2-2ec7-4ac6-9dae-892a86a918d0/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0332760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0409770Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0410370Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0410780Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0410890Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0419530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0420070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/eeca81a5-0589-442b-a4d1-12bd1930f176/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0421760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0427830Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0428270Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0428690Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0428790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0433150Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0434160Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0439310Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0439930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/d3c2fda3-b019-4ab6-b47f-b2f73e9b0cb6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0442640Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0446660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0446880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0451930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0452220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e267e39a-2372-4ba1-a682-bf024d4ce761/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0452930Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0455790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0455930Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0458630Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0459330Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0460100Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0463880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0464330Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/49b467b8-d4f4-43ef-842b-091bebcf15c6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0465100Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0467920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0468070Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0472200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0472390Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/fa00619f-e101-4c36-9138-9ffcda2c7df6/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0472940Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0475660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0475800Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0479320Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0479920Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0480620Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0485050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0485710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6b872fc6-b506-440d-b639-9d5b58743b68/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0486540Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0492060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0492220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0492600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0492700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0498860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0499280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/ec3bc331-d07f-4f7c-84ad-f15db703bd2c/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0499870Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0529750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0530050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0530460Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0530560Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0534490Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0535350Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0539760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0540010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/f48579ef-a3db-4a20-819a-6899bb00f1fb/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0540600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0545940Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0546060Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0546430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0546520Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0551280Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0551430Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/6ad073e5-602b-40d9-a16c-95ac7e421de9/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0551840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0557010Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0557110Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0557470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0557580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0560460Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0561170Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0564530Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0565030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/0b3ae054-e5fc-4715-be08-312d91eadadf/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0565670Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0568580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0568720Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0572860Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0573090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/9772ab59-0da0-44c1-8c07-f2aa6d6c8d57/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0573720Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0576600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0576750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0579270Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0579830Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0580480Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0584230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0584450Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e4b1b859-43a9-4736-9b2c-76e22a06ed3f/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0585040Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0587790Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0587920Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0591710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0591880Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/dc2040f3-c410-46d1-8de5-838e73ab5fe8/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0592410Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0595090Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0595220Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0598480Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0599090Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0599810Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0600620Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0605710Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0606050Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/faecfd22-b999-40f2-910e-590467f02370/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0606580Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0632250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0632600Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0632980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0633080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0639570Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0639840Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/cf6de280-5f4d-4b7c-b525-2bd3dd1d64f4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0640480Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Platform version is not present for one or more target frameworks, even though they have specified a platform: net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0645700Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0645810Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0646170Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0646250Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0649310Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0650050Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI with multiple TFMs: {TFMs}","TFM":"net7.0-android","Name":"CustomRenderer.csproj","TFMs":"net7.0-android, net7.0-ios","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0653470Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0653680Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/a2a6004a-ab25-42ef-b9d4-737d2637a924/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0654200Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0656910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0657040Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0660750Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0660980Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/765c6024-a14f-4fd4-952b-b648c1554a49/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0661430Z","@mt":"[NuGet] {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":"2023-04-07T18:00:41.0664120Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0664230Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-ios.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0666480Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0666950Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0667520Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:iOS","TFM":"net7.0-ios","Name":"CustomRenderer.iOS.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0670660Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0670900Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/e7398d53-7fae-4dc5-8ace-c050ca6230b5/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0671430Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0674080Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0674200Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0677760Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Running restore with 8 concurrent jobs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0677910Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Reading project file /var/folders/ky/mryfht710lx_c_lbbyckfr600000gp/T/dotnet-ua/restores/abbd6d8b-3647-403b-a743-5e4d269433e4/project.txt.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0678410Z","@mt":"[NuGet] {NuGetMessage}","@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":"2023-04-07T18:00:41.0681030Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"Checking compatibility of packages on net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0681150Z","@mt":"[NuGet] {NuGetMessage}","@l":"Debug","NuGetMessage":"All packages and projects are compatible with net7.0-android.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.NuGet.NuGetTransitiveDependencyIdentifier"}
+{"@t":"2023-04-07T18:00:41.0684180Z","@mt":"Skip minimum dependency check because .NET MAUI supports multiple TFMs.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.DependencyMinimumTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0684640Z","@mt":"Recommending executable TFM {TFM} for project {Name} because the project builds to an executable","TFM":"net7.0","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.TargetFramework.ExecutableTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0685200Z","@mt":"Recommending TFM {TFM} for project {Name} because project is of type .NET MAUI Target:Android","TFM":"net7.0-android","Name":"CustomRenderer.Android.csproj","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.Maui.MauiTargetFrameworkSelectorFilter"}
+{"@t":"2023-04-07T18:00:41.0704750Z","@mt":"Project {File} cannot be loaded: {Message}","@l":"Error","File":"/Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UWP/CustomRenderer.UWP.csproj","Message":"Could not load project. Please ensure the selected VS instance has the correct workloads installed for your projects. If Upgrade Assistant selected the incorrect VS version, please pass the argument --vs-path with the appropriate path. You can see the Visual Studio instances searched by running with the --verbose flag. If you are migrating UWP to Windows App SDK project, make sure you are using the latest version of VS 2022 (>17.2)","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Checks.CanLoadProjectFile"}
+{"@t":"2023-04-07T18:00:41.0705650Z","@mt":"No projects need to be upgraded for selected entrypoint","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.CurrentProjectSelectionStep"}
+{"@t":"2023-04-07T18:00:41.0706140Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Select project to upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0710890Z","@mt":"Initializing upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0714620Z","@mt":"Step {StepTitle} initialized","@l":"Debug","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0714810Z","@mt":"Identified upgrade step {UpgradeStep} as the next step","@l":"Debug","UpgradeStep":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0716090Z","@mt":"Applying upgrade step {StepTitle}","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"}
+{"@t":"2023-04-07T18:00:41.0721110Z","@mt":"Upgrade step {StepTitle} applied successfully","StepTitle":"Finalize upgrade","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Steps.Solution.FinalizeSolutionStep"}
+{"@t":"2023-04-07T18:00:41.0721880Z","@mt":"No applicable upgrade steps found","@l":"Debug","SourceContext":"Microsoft.DotNet.UpgradeAssistant.UpgraderManager"}
+{"@t":"2023-04-07T18:00:41.0722450Z","@mt":"Upgrade has completed. Please review any changes.","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"}
+{"@t":"2023-04-07T18:00:41.1706740Z","@mt":"The Upgrade Report is generated at /Users/dmo/work/xamarin-forms-samples/CustomRenderers/Entry/UpgradeReport.sarif","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Cli.ConsoleUpgrade"}
+{"@t":"2023-04-07T18:00:41.1801820Z","@mt":"Hosting started","@l":"Debug","EventId":{"Id":2,"Name":"Started"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
+{"@t":"2023-04-07T18:00:41.1817630Z","@mt":"Hosting stopping","@l":"Debug","EventId":{"Id":3,"Name":"Stopping"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
+{"@t":"2023-04-07T18:00:41.1820710Z","@mt":"Hosting stopped","@l":"Debug","EventId":{"Id":4,"Name":"Stopped"},"SourceContext":"Microsoft.Extensions.Hosting.Internal.Host"}
+{"@t":"2023-04-07T18:00:41.1835770Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_NuGet25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836250Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_BinaryAnalysis25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836430Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Default25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836520Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_try-convert25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836590Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_VB25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836690Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_Web25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836770Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_windows25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836840Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_MAUI25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
+{"@t":"2023-04-07T18:00:41.1836900Z","@mt":"{Name} extension is unloading","@l":"Debug","Name":"UA_WCFUpdater25dd463fd0ca44a5a3d5c1ecb793e373","SourceContext":"Microsoft.DotNet.UpgradeAssistant.Extensions.ExtensionInstance"}
diff --git a/Upgrading/CustomRenderer/MultiProject/README.md b/Upgrading/CustomRenderer/MultiProject/README.md
new file mode 100644
index 000000000..9b1280dc9
--- /dev/null
+++ b/Upgrading/CustomRenderer/MultiProject/README.md
@@ -0,0 +1,17 @@
+---
+name: Using Custom Renderers in .NET MAUI with multiple projects
+description: "Sample for using custom renderers in .NET MAUI."
+page_type: sample
+languages:
+- csharp
+- xaml
+products:
+- dotnet-maui
+- dotnet-core
+urlFragment: custom-renderers
+---
+
+# Custom Renderers with Multiple Projects
+
+When upgrading from Xamarin.Forms to .NET MAUI, custom renderers can be left in the platform projects. To register them, add a `MauiProgram.cs` file to each project and apply the platform specific code there. This sample demonstrates this approach.
+