<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="#stylesheet"?>
<activity>
	<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="stylesheet" xml:id="stylesheet">
		<xsl:output method="html"  encoding="utf-16"/>
		<!-- Don't reprint text nodes within the xsl:stylesheet node -->
		<xsl:template match="text()"/>
		<xsl:template match="activity">
			<head>
				<title>Activity Monitor Log</title>
				<style type="text/css">
					body{ text-align: left; width: 100%;  font-family: Verdana, sans-serif; }

					table{ border: none;  border-collapse: separate;  width: 100%; }

					tr.title td{ font-size: 24px;  font-weight: bold; }

					th{ background: #d0d0d0;  font-weight: bold;  font-size: 10pt;  text-align: left; }
					tr{ background: #eeeeee}
					td, th{ font-size: 8pt;  padding: 1px;  border: none; }

					tr.info td{}
					tr.warning td{background-color:yellow;color:black}
					tr.error td{background-color:red;color:black}

					span {text-decoration:underline}
					a:hover{text-transform:uppercase;color: #9090F0;}
				</style>
			</head>

			<body>
				<table>
					<tr class="title">
						<td colspan="7">Activity Monitor Log</td>
					</tr>
					<tr>
						<td colspan="2">infos</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Information'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">warnings</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Warning'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">errors</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Error'])"/>
						</td>
					</tr>
					<tr>
						<th width="20">#</th>
						<th width="50">Type</th>
						<th>Description</th>
						<th width="280">GUID</th>
						<th>Hr</th>
						<th>Source</th>
						<th>Time (UTC)</th>
					</tr>
					<xsl:apply-templates/>
				</table>

			</body>
		</xsl:template>

		<xsl:template match="entry">
			<!-- example 

          <entry>
            <record>136</record>
            <time>2004/02/26 00:42:59.706</time>
            <type>Error</type>
            <source>Microsoft Visual Studio</source>
            <description>Loading UI library</description>
            <guid>{00000000-0000-0000-0000-000000000000}</guid>
            <hr>800a006f</hr>
            <path></path>
        </entry>

        -->
			<xsl:choose>

				<xsl:when test="type='Information'">
					<tr id="info" class="info">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td></td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Warning'">
					<tr id="warning" class="warning">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>Warning</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Error'">
					<tr id="error" class="error">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>ERROR</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

			</xsl:choose>

		</xsl:template>

		<xsl:template name="row">
			<td id="description">
				<xsl:value-of select="description"/>
				<xsl:if test="path">
					<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<xsl:value-of select="path"/>
				</xsl:if>
			</td>
			<td id="guid">
				<xsl:value-of select="guid"/>
			</td>
			<td id="hr">
				<xsl:value-of select="hr"/>
			</td>
			<td>
				<xsl:value-of select="source"/>
			</td>
			<td>
				<xsl:value-of select="time"/>
			</td>
		</xsl:template>

	</xsl:stylesheet>

  <entry>
    <record>1</record>
    <time>2023/01/25 13:56:29.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.33213.231</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2023/01/25 13:56:29.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{6D78AFAD-F150-4E1F-9AB9-86B48DB1477B}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2023/01/25 13:56:29.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2023/01/25 13:56:29.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2023/01/25 13:56:29.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2023/01/25 13:56:29.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2023/01/25 13:56:29.481</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\</path>
  </entry>
  <entry>
    <record>11</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\devenv.admin.pkgdef</path>
  </entry>
  <entry>
    <record>12</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ImageManifestSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions;C:\Users\rdesautel\AppData\Local\Microsoft\VisualStudio\17.0_12e16254\Extensions</path>
  </entry>
  <entry>
    <record>13</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ApplicationExtensionsFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>14</record>
    <time>2023/01/25 13:56:29.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>&quot;ZeroImpact&quot; = dword:0, &quot;MergeRegistry&quot; = dword:3</description>
  </entry>
  <entry>
    <record>15</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>Microsoft Visual Studio Appid Stub</source>
    <description>Application launch on system with DPI X/Y: 96/96</description>
  </entry>
  <entry>
    <record>16</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Could not open key to check ConfigurationChanged timestamp.</description>
    <hr>0x80070002</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>17</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: timestamps are current.</description>
  </entry>
  <entry>
    <record>18</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Could not open key to check ConfigurationChanged timestamp.</description>
    <hr>0x80070002</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>19</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: timestamps are current.</description>
  </entry>
  <entry>
    <record>20</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>CPkgDefCacheNonVolatileBase: PkgDef cache is current.</description>
  </entry>
  <entry>
    <record>21</record>
    <time>2023/01/25 13:56:29.487</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement startup complete</description>
  </entry>
  <entry>
    <record>22</record>
    <time>2023/01/25 13:56:29.488</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Configuration file to be used for CLR initialization</description>
    <path>C:\Users\rdesautel\AppData\Local\Microsoft\VisualStudio\17.0_12e16254\devenv.exe.config</path>
  </entry>
  <entry>
    <record>23</record>
    <time>2023/01/25 13:56:29.488</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>AppId starting registry detouring</description>
  </entry>
  <entry>
    <record>24</record>
    <time>2023/01/25 13:56:29.512</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Delay Attribution Package]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>25</record>
    <time>2023/01/25 13:56:29.651</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized ServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>26</record>
    <time>2023/01/25 13:56:29.652</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Delay Attribution Package]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>27</record>
    <time>2023/01/25 13:56:29.652</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>28</record>
    <time>2023/01/25 13:56:29.660</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>29</record>
    <time>2023/01/25 13:56:29.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Task Scheduler Package]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>30</record>
    <time>2023/01/25 13:56:29.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Task Scheduler Package]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>31</record>
    <time>2023/01/25 13:56:29.668</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Async Query Service Package]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>32</record>
    <time>2023/01/25 13:56:29.668</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Async Query Service Package]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>33</record>
    <time>2023/01/25 13:56:29.669</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Threaded Wait Dialog Package]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>34</record>
    <time>2023/01/25 13:56:29.672</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Threaded Wait Dialog Package]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>35</record>
    <time>2023/01/25 13:56:29.673</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Background Initialization Safety Checker Package]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>36</record>
    <time>2023/01/25 13:56:29.673</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized AsyncServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>37</record>
    <time>2023/01/25 13:56:29.673</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Background Initialization Safety Checker Package]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>38</record>
    <time>2023/01/25 13:56:29.684</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Remote Settings Service Package]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>39</record>
    <time>2023/01/25 13:56:29.686</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Remote Settings Service Package]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>40</record>
    <time>2023/01/25 13:56:29.687</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Experimentation Service Package]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>41</record>
    <time>2023/01/25 13:56:29.687</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Experimentation Service Package]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>42</record>
    <time>2023/01/25 13:56:29.694</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>43</record>
    <time>2023/01/25 13:56:29.707</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Feature Flags Package]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>44</record>
    <time>2023/01/25 13:56:29.708</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Feature Flags Package]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>45</record>
    <time>2023/01/25 13:56:29.710</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>46</record>
    <time>2023/01/25 13:56:29.743</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>47</record>
    <time>2023/01/25 13:56:29.743</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GelFactory Package]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>48</record>
    <time>2023/01/25 13:56:29.744</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GelFactory Package]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>49</record>
    <time>2023/01/25 13:56:29.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>50</record>
    <time>2023/01/25 13:56:29.774</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Invoking first launch sequence due to: Failed to read Profile\LastResetSettingsFile from the VS HKCU registry</description>
  </entry>
  <entry>
    <record>51</record>
    <time>2023/01/25 13:56:29.896</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Sign In Package]</description>
    <guid>{FEF989BB-7868-4B73-8864-CC1C3C07A458}</guid>
  </entry>
  <entry>
    <record>52</record>
    <time>2023/01/25 13:56:29.898</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.ConnectedUser.ConnectedUserPackage]</description>
    <guid>{7F679D93-2EB6-47C9-85EB-F6AD16902662}</guid>
  </entry>
  <entry>
    <record>53</record>
    <time>2023/01/25 13:56:29.905</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.Packages.PathTrustVerifier.PathTrustVerifierPackage]</description>
    <guid>{2F6B5046-3BB0-4825-B344-3F4238921119}</guid>
  </entry>
  <entry>
    <record>54</record>
    <time>2023/01/25 13:56:29.905</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.Packages.PathTrustVerifier.PathTrustVerifierPackage]</description>
    <guid>{2F6B5046-3BB0-4825-B344-3F4238921119}</guid>
  </entry>
  <entry>
    <record>55</record>
    <time>2023/01/25 13:56:29.907</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Settings Package]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>56</record>
    <time>2023/01/25 13:56:29.941</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Service Broker Package]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>57</record>
    <time>2023/01/25 13:56:29.941</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Service Broker Package]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>58</record>
    <time>2023/01/25 13:56:30.012</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Settings Package]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable. ---&gt; System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.Settings.SettingsPackage.&lt;InitializeAsync&gt;d__6.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;File name: &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos;&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;&#x000D;&#x000A;WRN: Assembly binding logging is turned OFF.&#x000D;&#x000A;To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.&#x000D;&#x000A;Note: There is some performance penalty associated with assembly bind failure logging.&#x000D;&#x000A;To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].&#x000D;&#x000A;</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>59</record>
    <time>2023/01/25 13:56:30.021</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>60</record>
    <time>2023/01/25 13:56:30.030</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>61</record>
    <time>2023/01/25 14:08:48.633</time>
    <type>Error</type>
    <source>Microsoft.Conex.Trust</source>
    <description>Critical error occurred.  Could not compose Trust Service.  Exception: Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsSettingsPersistenceManager service is unavailable. ---&gt; System.Exception: Expecting object to be local&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Interop.IVsTaskBody.DoWork(IVsTask pTask, UInt32 dwCount, IVsTask[] pParentTasks, Object&amp; pResult)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.&lt;&gt;c__DisplayClass86_0.&lt;GetCallbackForMultipleParent&gt;b__0(Task`1[] _)&#x000D;&#x000A;   at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke()&#x000D;&#x000A;   at System.Threading.Tasks.Task.Execute()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;LoadServicePackageAsync&gt;d__26.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.PathTrustVerifier.VsServiceLayer.&lt;Compose&gt;d__80.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.PathTrustVerifier.CompRoot.&lt;Compose&gt;d__0.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.Packages.PathTrustVerifier.PathTrustVerifierPackage.&lt;CreateSVsPathTrustVerifierAsync&gt;d__4.MoveNext()</description>
  </entry>
  <entry>
    <record>62</record>
    <time>2023/01/25 14:08:48.634</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>63</record>
    <time>2023/01/25 14:08:48.651</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Environment Package Window Management]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;&gt;c__DisplayClass1_0`2.&lt;&lt;GetService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagementPackage.&lt;InitializeAsync&gt;d__15.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>64</record>
    <time>2023/01/25 14:08:49.195</time>
    <type>Error</type>
    <source>vs/ide/trust/service-notifyStart-fault</source>
    <description>Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsPathTrustVerifier service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.ConnectedUser.ConnectedUserPackage.&lt;SetupRestrictedModeReturnPipeAsync&gt;d__34.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.VsTaskLibraryHelper.&lt;&gt;c__DisplayClass35_0.&lt;&lt;FileAndForget&gt;b__0&gt;d.MoveNext()</description>
  </entry>
  <entry>
    <record>65</record>
    <time>2023/01/25 14:08:49.217</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.ConnectedUser.ConnectedUserPackage]</description>
    <guid>{7F679D93-2EB6-47C9-85EB-F6AD16902662}</guid>
  </entry>
  <entry>
    <record>66</record>
    <time>2023/01/25 14:08:49.265</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>Manager ServerUri &apos;https://go.microsoft.com/fwlink/?LinkID=661311&apos;</description>
  </entry>
  <entry>
    <record>67</record>
    <time>2023/01/25 14:08:49.284</time>
    <type>Error</type>
    <source>GetIdeUserContextAsync</source>
    <description>System.TypeInitializationException: The type initializer for &apos;Microsoft.Developer.IdentityService.AccountManager&apos; threw an exception. ---&gt; System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;   at Microsoft.ServiceHub.Client.HubClient..ctor(String clientName, Func`2 configFunc, IHubControllerClient hubController, String controllerPipeName)&#x000D;&#x000A;   at Microsoft.Developer.IdentityService.AccountManager.&lt;&gt;c.&lt;.cctor&gt;b__38_0()&#x000D;&#x000A;   at System.Lazy`1.CreateValue()&#x000D;&#x000A;   at System.Lazy`1.LazyInitValue()&#x000D;&#x000A;   at Microsoft.Developer.IdentityService.AccountManager..cctor()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.ConnectedUser.IdeUserContext.&lt;AdjustSignInStatusAsync&gt;d__11.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.ConnectedUser.ConnectedUserPackage.&lt;GetIdeUserContextAsync&gt;d__17.MoveNext()</description>
  </entry>
  <entry>
    <record>68</record>
    <time>2023/01/25 14:08:49.288</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Sign In Package]</description>
    <guid>{FEF989BB-7868-4B73-8864-CC1C3C07A458}</guid>
  </entry>
  <entry>
    <record>69</record>
    <time>2023/01/25 14:08:49.313</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>70</record>
    <time>2023/01/25 14:08:49.334</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>71</record>
    <time>2023/01/25 14:08:49.405</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>72</record>
    <time>2023/01/25 14:08:49.406</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Environment Package Window Management]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;&gt;c__DisplayClass1_0`2.&lt;&lt;GetService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagementPackage.&lt;InitializeAsync&gt;d__15.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>73</record>
    <time>2023/01/25 14:08:49.467</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Common IDE Package]</description>
    <guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid>
  </entry>
  <entry>
    <record>74</record>
    <time>2023/01/25 14:08:49.470</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ExtensionManagerPackage]</description>
    <guid>{E7576C05-1874-450C-9E98-CF3A0897A069}</guid>
  </entry>
  <entry>
    <record>75</record>
    <time>2023/01/25 14:08:49.510</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Settings Package]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>76</record>
    <time>2023/01/25 14:08:49.529</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Services.UserNotifications.UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>77</record>
    <time>2023/01/25 14:08:49.539</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Settings Package]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable. ---&gt; System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetObjectOrNullForFaultedTaskAsync&gt;d__24.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.Settings.SettingsPackage.&lt;InitializeAsync&gt;d__6.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;File name: &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos;&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetObjectOrNullForFaultedTaskAsync&gt;d__24.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;&#x000D;&#x000A;WRN: Assembly binding logging is turned OFF.&#x000D;&#x000A;To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.&#x000D;&#x000A;Note: There is some performance penalty associated with assembly bind failure logging.&#x000D;&#x000A;To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].&#x000D;&#x000A;</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>78</record>
    <time>2023/01/25 14:08:50.530</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Visual Studio Common IDE Package]Source: &apos;Microsoft.VisualStudio.Validation&apos; Description: Cannot find an instance of the Microsoft.VisualStudio.Settings.ISettingsManager service.&#x000D;&#x000A;</description>
    <guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>79</record>
    <time>2023/01/25 14:08:50.563</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Services.UserNotifications.UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>80</record>
    <time>2023/01/25 14:08:50.710</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [ExtensionManagerPackage]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable. ---&gt; System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetObjectOrNullForFaultedTaskAsync&gt;d__24.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.VSPackage.ExtensionManagerPackage.&lt;InitializeAsync&gt;d__34.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)System.IO.FileNotFoundException: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.&#x000D;&#x000A;File name: &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos;&#x000D;&#x000A;   at Microsoft.VisualStudio.VisualStudioServices.VS2019_9Services.ApplyRecommendations(ServiceJsonRpcDescriptor descriptor)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.&lt;CreateAsync&gt;d__12.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.ServiceBrokerPackage.&lt;&lt;InitializeAsync&gt;b__2_0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass29_0.&lt;&lt;AddService&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AwaitExtensions.ExecuteContinuationSynchronouslyAwaiter`1.GetResult()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.AsyncLazy`1.&lt;&gt;c__DisplayClass13_0.&lt;&lt;GetValueAsync&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetObjectOrNullForFaultedTaskAsync&gt;d__24.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;&gt;c__DisplayClass13_0.&lt;&lt;Microsoft-VisualStudio-OLE-Interop-IServiceProvider-QueryService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.Microsoft.VisualStudio.OLE.Interop.IServiceProvider.QueryService(Guid&amp; guidService, Guid&amp; riid, IntPtr&amp; ppvObject)&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.AsyncQueryService.AsyncServiceProvider.&lt;GetServiceByGuidThrowingAsync&gt;d__23.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;GetServiceAsync&gt;d__3`2.MoveNext()&#x000D;&#x000A;&#x000D;&#x000A;WRN: Assembly binding logging is turned OFF.&#x000D;&#x000A;To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.&#x000D;&#x000A;Note: There is some performance penalty associated with assembly bind failure logging.&#x000D;&#x000A;To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].&#x000D;&#x000A;</description>
    <guid>{E7576C05-1874-450C-9E98-CF3A0897A069}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>81</record>
    <time>2023/01/25 14:08:52.483</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>Unresolved FW Link &apos;https://go.microsoft.com/fwlink/?LinkID=661311&apos; was resolved to &apos;https://app.vssps.visualstudio.com/&apos;</description>
  </entry>
  <entry>
    <record>82</record>
    <time>2023/01/25 14:08:52.514</time>
    <type>Error</type>
    <source>UserConnection</source>
    <description>User:IdeUser, The type initializer for &apos;Microsoft.Developer.IdentityService.AccountManager&apos; threw an exception.: TypeInitializationException [inner: Could not load file or assembly &apos;netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51&apos; or one of its dependencies. The system cannot find the file specified.] during ImplicitSignIn&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.ConnectedUser.IdeConnector.&lt;CreateCredentialsAsync&gt;d__16.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Connected.ConnectedUser.IdeConnector.&lt;ConnectAsync&gt;d__5.MoveNext() (ActivityId: 00000000-0000-0000-0000-000000000000)</description>
  </entry>
  <entry>
    <record>83</record>
    <time>2023/01/25 14:08:53.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{1B027A40-8F43-11D0-8D11-00A0C91BC942} LANG:0409 ID:1301&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>84</record>
    <time>2023/01/25 14:08:53.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{1B027A40-8F43-11D0-8D11-00A0C91BC942} LANG:0409 ID:1301&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>85</record>
    <time>2023/01/25 14:08:53.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{1B027A40-8F43-11D0-8D11-00A0C91BC942} LANG:0409 ID:1301&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>86</record>
    <time>2023/01/25 14:08:53.172</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Image Service Package]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>87</record>
    <time>2023/01/25 14:08:53.173</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Image Service Package]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>88</record>
    <time>2023/01/25 14:08:53.204</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>89</record>
    <time>2023/01/25 14:08:53.226</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>90</record>
    <time>2023/01/25 14:08:53.231</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>91</record>
    <time>2023/01/25 14:08:53.231</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Environment Package Window Management]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;&gt;c__DisplayClass1_0`2.&lt;&lt;GetService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagementPackage.&lt;InitializeAsync&gt;d__15.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>92</record>
    <time>2023/01/25 14:08:53.834</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>93</record>
    <time>2023/01/25 14:08:53.837</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Environment Package Window Management]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;&gt;c__DisplayClass1_0`2.&lt;&lt;GetService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagementPackage.&lt;InitializeAsync&gt;d__15.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>94</record>
    <time>2023/01/25 14:08:54.479</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Logging Package]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>95</record>
    <time>2023/01/25 14:08:54.480</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE*\VsLogUI.dll</path>
  </entry>
  <entry>
    <record>96</record>
    <time>2023/01/25 14:08:54.484</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Logging Package]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>97</record>
    <time>2023/01/25 14:08:54.488</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Rules-based UI contexts implementation]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>98</record>
    <time>2023/01/25 14:08:54.491</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>99</record>
    <time>2023/01/25 14:08:54.492</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Environment Package Window Management]Source: &apos;Microsoft.VisualStudio.Shell.15.0&apos; Description: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;Microsoft.VisualStudio.Shell.ServiceUnavailableException: The SVsBrokeredServiceContainer service is unavailable.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceExtensions.&lt;&gt;c__DisplayClass1_0`2.&lt;&lt;GetService&gt;b__0&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Threading.JoinableTask`1.CompleteOnCurrentThread()&#x000D;&#x000A;   at Microsoft.VisualStudio.Platform.WindowManagement.WindowManagementPackage.&lt;InitializeAsync&gt;d__15.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.AsyncPackage.&lt;&gt;c__DisplayClass21_0.&lt;&lt;Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize&gt;b__1&gt;d.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
</activity>
