<?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:#FFF4CE;color:black}
					tr.error td{background-color:#FDE7E9;color:black}

					<!-- Make sure descriptions, which often contain call stacks, are formatted with their newlines intact -->
					#description {white-space:pre-wrap}

					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/05/17 12:50:14.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.33711.286</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2023/05/17 12:50:14.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{EFD73D12-5748-4EA6-BC6D-57137832321E}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2023/05/17 12:50:14.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2023/05/17 12:50:14.654</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2023/05/17 12:50:14.658</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2023/05/17 12:50:14.658</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2023/05/17 12:50:14.694</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2023/05/17 12:50:14.698</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2023/05/17 12:50:14.698</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2023/05/17 12:50:14.698</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>173</record>
    <time>2023/05/17 12:50:20.450</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>248</record>
    <time>2023/05/17 12:50:23.616</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.VC.RecommendationProvider, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\IntelliCode\IntelliCodeCpp.dll</path>
  </entry>
  <entry>
    <record>249</record>
    <time>2023/05/17 12:50:23.620</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.UpgradeAssistant, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\XamlLanguageService\Microsoft.VisualStudio.DesignTools.XamlUpgradeAssistant.dll</path>
  </entry>
  <entry>
    <record>250</record>
    <time>2023/05/17 12:50:23.624</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.CppSvc.Internal, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CodeAnalysis\Microsoft.VisualStudio.CodeAnalysis.VCPlugin.dll</path>
  </entry>
  <entry>
    <record>251</record>
    <time>2023/05/17 12:50:23.628</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.LiveShare.WebEditors, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\Microsoft.VisualStudio.LanguageServices.LiveShare.dll</path>
  </entry>
  <entry>
    <record>252</record>
    <time>2023/05/17 12:50:23.632</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.VCProjectEngine, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\NuGet.PackageManagement.VisualStudio.dll</path>
  </entry>
  <entry>
    <record>318</record>
    <time>2023/05/17 12:50:31.499</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>IncompatibilityList - Did not look for incompatible extensions.Configuration or the user compatibility list file did not change</description>
  </entry>
  <entry>
    <record>319</record>
    <time>2023/05/17 12:50:31.499</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>LastCompatibilityListCheck - 133288001848030406</description>
  </entry>
  <entry>
    <record>320</record>
    <time>2023/05/17 12:50:31.499</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>NewConfigurationChangedTimestamp - 133288001777706868</description>
  </entry>
  <entry>
    <record>321</record>
    <time>2023/05/17 12:50:31.499</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>UserCompatibilityListTimestamp - 133288001838514023</description>
  </entry>
  <entry>
    <record>322</record>
    <time>2023/05/17 12:50:33.577</time>
    <type>Information</type>
    <source>VSPackage</source>
    <description>Next update check in &apos;86400000&apos; ms </description>
  </entry>
  <entry>
    <record>323</record>
    <time>2023/05/17 12:50:34.212</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileColorPackage]</description>
    <guid>{949BB610-6840-4ADE-8C75-55CDB16BF0E8}</guid>
  </entry>
  <entry>
    <record>324</record>
    <time>2023/05/17 12:50:34.232</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; from Process denied because the service is only exposed RemoteExclusiveClient, LiveShareGuest.</description>
  </entry>
  <entry>
    <record>325</record>
    <time>2023/05/17 12:50:34.232</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; is declined: ServiceAudienceMismatch.</description>
  </entry>
  <entry>
    <record>326</record>
    <time>2023/05/17 12:50:34.244</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileColorPackage]</description>
    <guid>{949BB610-6840-4ADE-8C75-55CDB16BF0E8}</guid>
  </entry>
  <entry>
    <record>327</record>
    <time>2023/05/17 12:50:35.292</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>328</record>
    <time>2023/05/17 12:50:35.296</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>329</record>
    <time>2023/05/17 12:50:41.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in User Groups: Administrators Users</description>
  </entry>
  <entry>
    <record>330</record>
    <time>2023/05/17 12:50:41.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Available Drive Space: C:\ drive has 30263119872 bytes; D:\ drive has 5895999488 bytes; E:\ drive has 2059071488 bytes</description>
  </entry>
  <entry>
    <record>331</record>
    <time>2023/05/17 12:50:41.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Internet Explorer Version: 11.0.22621.1635</description>
  </entry>
  <entry>
    <record>332</record>
    <time>2023/05/17 12:50:41.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>.NET Framework Version: 10.0.22621.1</description>
  </entry>
  <entry>
    <record>333</record>
    <time>2023/05/17 12:50:41.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>MSXML Version: 6.30.22621.1635</description>
  </entry>
  <entry>
    <record>334</record>
    <time>2023/05/17 12:50:54.537</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Solution Telemetry Package]</description>
    <guid>{05B0DCB8-5F74-4A94-AB2F-8B2354C977EF}</guid>
  </entry>
  <entry>
    <record>335</record>
    <time>2023/05/17 12:50:54.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Solution Telemetry Package]</description>
    <guid>{05B0DCB8-5F74-4A94-AB2F-8B2354C977EF}</guid>
  </entry>
  <entry>
    <record>336</record>
    <time>2023/05/17 12:50:54.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Component Enumerator Package]</description>
    <guid>{588205E0-66E0-11D3-8600-00C04F6123B3}</guid>
  </entry>
  <entry>
    <record>337</record>
    <time>2023/05/17 12:50:54.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{588205E0-66E0-11D3-8600-00C04F6123B3}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Packages\*\compsvcspkgui.dll</path>
  </entry>
  <entry>
    <record>338</record>
    <time>2023/05/17 12:50:54.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Component Enumerator Package]</description>
    <guid>{588205E0-66E0-11D3-8600-00C04F6123B3}</guid>
  </entry>
  <entry>
    <record>339</record>
    <time>2023/05/17 12:50:54.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [OperationProgressPackage]</description>
    <guid>{C7821A4F-6708-4F8D-A0AA-D43D06E8D196}</guid>
  </entry>
  <entry>
    <record>340</record>
    <time>2023/05/17 12:50:54.584</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [OperationProgressPackage]</description>
    <guid>{C7821A4F-6708-4F8D-A0AA-D43D06E8D196}</guid>
  </entry>
  <entry>
    <record>341</record>
    <time>2023/05/17 12:50:54.835</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.ProjectSystem.VS.Implementation.Package.ProjectPackage]</description>
    <guid>{3347BEE8-D7A1-4082-95E4-38A439553CC2}</guid>
  </entry>
  <entry>
    <record>342</record>
    <time>2023/05/17 12:50:55.354</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>343</record>
    <time>2023/05/17 12:50:55.354</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>344</record>
    <time>2023/05/17 12:50:55.463</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.ProjectSystem.VS.Implementation.Package.ProjectPackage]</description>
    <guid>{3347BEE8-D7A1-4082-95E4-38A439553CC2}</guid>
  </entry>
  <entry>
    <record>345</record>
    <time>2023/05/17 12:51:08.238</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Build Manager Package]</description>
    <guid>{B718A162-0361-4B0E-920B-D88D70BE609B}</guid>
  </entry>
  <entry>
    <record>346</record>
    <time>2023/05/17 12:51:08.293</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Build Manager Package]</description>
    <guid>{B718A162-0361-4B0E-920B-D88D70BE609B}</guid>
  </entry>
  <entry>
    <record>347</record>
    <time>2023/05/17 12:51:11.396</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>348</record>
    <time>2023/05/17 12:51:11.396</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>349</record>
    <time>2023/05/17 12:51:11.400</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>350</record>
    <time>2023/05/17 12:51:11.400</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>351</record>
    <time>2023/05/17 12:51:12.436</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>352</record>
    <time>2023/05/17 12:51:12.843</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>353</record>
    <time>2023/05/17 12:51:12.859</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>354</record>
    <time>2023/05/17 12:51:12.975</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>355</record>
    <time>2023/05/17 12:51:13.011</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>356</record>
    <time>2023/05/17 12:51:13.039</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>357</record>
    <time>2023/05/17 12:51:13.049</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>358</record>
    <time>2023/05/17 12:51:13.059</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>359</record>
    <time>2023/05/17 12:51:13.065</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>360</record>
    <time>2023/05/17 12:51:13.071</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>361</record>
    <time>2023/05/17 12:51:13.459</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;GitProvider.GitRepositoryManager (1.3)&quot; service failed. ---&gt; System.TypeLoadException: Method &apos;EnsureGitAttributesFileExistsAsync&apos; in type &apos;Microsoft.TeamFoundation.Git.CoreServices.GitRepositoryManager&apos; from assembly &apos;Microsoft.TeamFoundation.Git.CoreServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&apos; does not have an implementation.&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;ProfferServices&gt;b__9_2(AuthorizationServiceClient authClient, IReadOnlyDictionary`2 args)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.CreateService(ServiceMoniker serviceMoniker, AuthorizationServiceClient authorizationServiceClient, ServiceActivationOptions options)&#x000D;&#x000A;   at Microsoft.TeamFoundation.Git.Provider.SccVsRemotingService.&lt;&gt;c__DisplayClass41_0.&lt;&lt;Proffer&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;InvokeFactoryAsync&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.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.ProfferedServiceFactory.&lt;GetProxyAsync&gt;d__30`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>362</record>
    <time>2023/05/17 12:51:13.672</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ProviderPackage]</description>
    <guid>{5F2E5E42-4192-4D79-A0D8-1D881E808829}</guid>
  </entry>
  <entry>
    <record>363</record>
    <time>2023/05/17 12:51:13.953</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ProviderPackage]</description>
    <guid>{5F2E5E42-4192-4D79-A0D8-1D881E808829}</guid>
  </entry>
  <entry>
    <record>364</record>
    <time>2023/05/17 12:51:14.427</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and Project component</description>
  </entry>
  <entry>
    <record>365</record>
    <time>2023/05/17 12:51:14.427</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>Component: 3347bee8-d7a1-4082-95e4-38a439553cc2, Inclusive Cost: 627.9428, Exclusive Cost: 627.9428, Top Level Inclusive Cost: 627.9428</description>
    <guid>{3347BEE8-D7A1-4082-95E4-38A439553CC2}</guid>
  </entry>
  <entry>
    <record>366</record>
    <time>2023/05/17 12:51:14.427</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and Project component</description>
  </entry>
  <entry>
    <record>367</record>
    <time>2023/05/17 12:51:14.435</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>368</record>
    <time>2023/05/17 12:51:14.439</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>369</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and VSPackage component</description>
  </entry>
  <entry>
    <record>370</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>Component: 3347bee8-d7a1-4082-95e4-38a439553cc2, Inclusive Cost: 627.9428, Exclusive Cost: 627.9428, Top Level Inclusive Cost: 627.9428</description>
    <guid>{3347BEE8-D7A1-4082-95E4-38A439553CC2}</guid>
  </entry>
  <entry>
    <record>371</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and VSPackage component</description>
  </entry>
  <entry>
    <record>372</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>373</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>Component: 1c64b9c2-e352-428e-a56d-0ace190b99a6, Inclusive Cost: 110.7496, Exclusive Cost: 109.7489, Top Level Inclusive Cost: 110.7496</description>
    <guid>{1C64B9C2-E352-428E-A56D-0ACE190B99A6}</guid>
  </entry>
  <entry>
    <record>374</record>
    <time>2023/05/17 12:51:14.579</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for SolutionLoad scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>375</record>
    <time>2023/05/17 12:51:14.751</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.WebTools.Publish.WebPublishPackage, Microsoft.WebTools.Publish]</description>
    <guid>{1AD387FC-B1E8-4023-91FE-F22260B661DB}</guid>
  </entry>
  <entry>
    <record>376</record>
    <time>2023/05/17 12:51:14.942</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Shared Web Components]</description>
    <guid>{F285DF87-079E-47A6-80E1-B92CC9305E60}</guid>
  </entry>
  <entry>
    <record>377</record>
    <time>2023/05/17 12:51:14.944</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Shared Web Components]</description>
    <guid>{3EAEE6E8-F9B7-4C06-98A9-A7BEC2DFAB28}</guid>
  </entry>
  <entry>
    <record>378</record>
    <time>2023/05/17 12:51:15.140</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Shared Web Components]</description>
    <guid>{F285DF87-079E-47A6-80E1-B92CC9305E60}</guid>
  </entry>
  <entry>
    <record>379</record>
    <time>2023/05/17 12:51:15.228</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LibraryManagerPackage]</description>
    <guid>{75D8574C-9E92-482C-BF99-E7FBA087C60E}</guid>
  </entry>
  <entry>
    <record>380</record>
    <time>2023/05/17 12:51:15.272</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>381</record>
    <time>2023/05/17 12:51:15.274</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>382</record>
    <time>2023/05/17 12:51:15.280</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LibraryManagerPackage]</description>
    <guid>{75D8574C-9E92-482C-BF99-E7FBA087C60E}</guid>
  </entry>
  <entry>
    <record>383</record>
    <time>2023/05/17 12:51:15.289</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Shared Web Components]</description>
    <guid>{3EAEE6E8-F9B7-4C06-98A9-A7BEC2DFAB28}</guid>
  </entry>
  <entry>
    <record>384</record>
    <time>2023/05/17 12:51:15.302</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [EurekaPackage]</description>
    <guid>{8C28E535-ABC9-4F92-B5C9-6C16617C8884}</guid>
  </entry>
  <entry>
    <record>385</record>
    <time>2023/05/17 12:51:15.320</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.WebTools.Publish.WebPublishPackage, Microsoft.WebTools.Publish]</description>
    <guid>{1AD387FC-B1E8-4023-91FE-F22260B661DB}</guid>
  </entry>
  <entry>
    <record>386</record>
    <time>2023/05/17 12:51:15.333</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.Publish.Framework.VisualStudio.PublishPackage, Microsoft.Publish.Framework]</description>
    <guid>{94FD8BFF-40F1-4EF2-8771-E6BFB05FCB18}</guid>
  </entry>
  <entry>
    <record>387</record>
    <time>2023/05/17 12:51:15.360</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.Publish.Framework.VisualStudio.PublishPackage, Microsoft.Publish.Framework]</description>
    <guid>{94FD8BFF-40F1-4EF2-8771-E6BFB05FCB18}</guid>
  </entry>
  <entry>
    <record>388</record>
    <time>2023/05/17 12:51:15.503</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [EurekaPackage]</description>
    <guid>{8C28E535-ABC9-4F92-B5C9-6C16617C8884}</guid>
  </entry>
  <entry>
    <record>389</record>
    <time>2023/05/17 12:51:15.559</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin import of category &apos;Browser Link_BrowserLinkOptions&apos; ({ecf15adb-ab46-38d6-9d69-060f7552fb26}) from package &apos;EurekaPackage&apos; ({8C28E535-ABC9-4F92-B5C9-6C16617C8884}). 135281323140 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>390</record>
    <time>2023/05/17 12:51:15.563</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End import of category &apos;Browser Link_BrowserLinkOptions&apos; ({ecf15adb-ab46-38d6-9d69-060f7552fb26}) from package &apos;EurekaPackage&apos; ({8C28E535-ABC9-4F92-B5C9-6C16617C8884}). 135281323140 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>391</record>
    <time>2023/05/17 12:51:15.589</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ContainersToolsPackage]</description>
    <guid>{7A3C6F6F-3F4A-4553-93FD-F73F4DB26177}</guid>
  </entry>
  <entry>
    <record>392</record>
    <time>2023/05/17 12:51:15.828</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ContainersToolsPackage]</description>
    <guid>{7A3C6F6F-3F4A-4553-93FD-F73F4DB26177}</guid>
  </entry>
  <entry>
    <record>393</record>
    <time>2023/05/17 12:51:15.857</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSPackage]</description>
    <guid>{1A4EFADE-F6B2-4490-A2EF-21D5F3D1C8E0}</guid>
  </entry>
  <entry>
    <record>394</record>
    <time>2023/05/17 12:51:15.993</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSPackage]</description>
    <guid>{1A4EFADE-F6B2-4490-A2EF-21D5F3D1C8E0}</guid>
  </entry>
  <entry>
    <record>395</record>
    <time>2023/05/17 12:51:15.996</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ManagedProjectSystemPackage]</description>
    <guid>{860A27C0-B665-47F3-BC12-637E16A1050A}</guid>
  </entry>
  <entry>
    <record>396</record>
    <time>2023/05/17 12:51:16.035</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ManagedProjectSystemPackage]</description>
    <guid>{860A27C0-B665-47F3-BC12-637E16A1050A}</guid>
  </entry>
  <entry>
    <record>397</record>
    <time>2023/05/17 12:51:16.036</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ConnectedServicesPackage]</description>
    <guid>{8E15F3DA-B303-4AF9-814A-1DC5C2583398}</guid>
  </entry>
  <entry>
    <record>398</record>
    <time>2023/05/17 12:51:16.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ConnectedServicesPackage]</description>
    <guid>{8E15F3DA-B303-4AF9-814A-1DC5C2583398}</guid>
  </entry>
  <entry>
    <record>399</record>
    <time>2023/05/17 12:51:16.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RestoreManagerPackage]</description>
    <guid>{2B52AC92-4551-426D-BD34-C6D7D9FDD1C5}</guid>
  </entry>
  <entry>
    <record>400</record>
    <time>2023/05/17 12:51:16.229</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RestoreManagerPackage]</description>
    <guid>{2B52AC92-4551-426D-BD34-C6D7D9FDD1C5}</guid>
  </entry>
  <entry>
    <record>401</record>
    <time>2023/05/17 12:51:16.231</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileEnumerationServicePackage]</description>
    <guid>{ED8075A9-3E0C-45B3-83EE-C14B43BC3787}</guid>
  </entry>
  <entry>
    <record>402</record>
    <time>2023/05/17 12:51:16.352</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileEnumerationServicePackage]</description>
    <guid>{ED8075A9-3E0C-45B3-83EE-C14B43BC3787}</guid>
  </entry>
  <entry>
    <record>403</record>
    <time>2023/05/17 12:51:16.417</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TabDesignerLauncherPackage]</description>
    <guid>{B4E787A4-A9FC-4579-945E-D71AFEC4DD90}</guid>
  </entry>
  <entry>
    <record>404</record>
    <time>2023/05/17 12:51:16.483</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TabDesignerLauncherPackage]</description>
    <guid>{B4E787A4-A9FC-4579-945E-D71AFEC4DD90}</guid>
  </entry>
  <entry>
    <record>405</record>
    <time>2023/05/17 12:51:16.484</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IntelliCodePackage]</description>
    <guid>{237BDE42-2754-4B15-ADBD-0B6CECE84300}</guid>
  </entry>
  <entry>
    <record>406</record>
    <time>2023/05/17 12:51:16.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.ProjectSystem.Query.VS.ProjectSystemQueryServicePackage]</description>
    <guid>{84977506-D75D-4895-A0B3-C709C7141C8E}</guid>
  </entry>
  <entry>
    <record>407</record>
    <time>2023/05/17 12:51:16.595</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.ProjectSystem.Query.VS.ProjectSystemQueryServicePackage]</description>
    <guid>{84977506-D75D-4895-A0B3-C709C7141C8E}</guid>
  </entry>
  <entry>
    <record>408</record>
    <time>2023/05/17 12:51:16.609</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; from Process denied because the service is only exposed RemoteExclusiveClient, LiveShareGuest.</description>
  </entry>
  <entry>
    <record>409</record>
    <time>2023/05/17 12:51:16.609</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; is declined: ServiceAudienceMismatch.</description>
  </entry>
  <entry>
    <record>410</record>
    <time>2023/05/17 12:51:16.686</time>
    <type>Information</type>
    <source>Microsoft.VisualStudio.IntelliCode</source>
    <description>Loading IntelliCode extension version 2.2.2620.45573</description>
  </entry>
  <entry>
    <record>411</record>
    <time>2023/05/17 12:51:16.871</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [IntelliCodePackage]</description>
    <guid>{237BDE42-2754-4B15-ADBD-0B6CECE84300}</guid>
  </entry>
  <entry>
    <record>412</record>
    <time>2023/05/17 12:51:16.884</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ScaffoldingVsPackage]</description>
    <guid>{FAA496BF-FB16-4671-B3D5-E4B388A18478}</guid>
  </entry>
  <entry>
    <record>413</record>
    <time>2023/05/17 12:51:18.330</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ScaffoldingVsPackage]</description>
    <guid>{FAA496BF-FB16-4671-B3D5-E4B388A18478}</guid>
  </entry>
  <entry>
    <record>414</record>
    <time>2023/05/17 12:51:18.332</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DotNet Web Project System]</description>
    <guid>{B3AB9E94-3DA2-4CFE-8837-B794B2968195}</guid>
  </entry>
  <entry>
    <record>415</record>
    <time>2023/05/17 12:51:18.342</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DotNet Web Project System]</description>
    <guid>{B3AB9E94-3DA2-4CFE-8837-B794B2968195}</guid>
  </entry>
  <entry>
    <record>416</record>
    <time>2023/05/17 12:51:18.344</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Project System Components]</description>
    <guid>{0BF510CB-15E5-4F27-8219-8D9AA51E49F7}</guid>
  </entry>
  <entry>
    <record>417</record>
    <time>2023/05/17 12:51:18.404</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Project System Components]Source: &apos;System.ComponentModel.Composition&apos; Description: The composition produced a single composition error. The root cause is provided below. Review the CompositionException.Errors property for more detailed information.&#x000D;&#x000A;&#x000D;&#x000A;1) No exports were found that match the constraint: &#x000A;&#x0009;ContractName&#x0009;Microsoft.WebTools.ProjectSystem.Components.Endpoints.IEndpointsManager&#x000A;&#x0009;RequiredTypeIdentity&#x0009;Microsoft.WebTools.ProjectSystem.Components.Endpoints.IEndpointsManager&#x000D;&#x000A;&#x000D;&#x000A;Resulting in: Cannot set import &apos;Microsoft.WebTools.ProjectSystem.Components.Endpoints.EndpointsExplorerTopMenuCommand.EndpointsManager (ContractName=&quot;Microsoft.WebTools.ProjectSystem.Components.Endpoints.IEndpointsManager&quot;)&apos; on part &apos;Microsoft.WebTools.ProjectSystem.Components.Endpoints.EndpointsExplorerTopMenuCommand&apos;.&#x000D;&#x000A;Element: Microsoft.WebTools.ProjectSystem.Components.Endpoints.EndpointsExplorerTopMenuCommand.EndpointsManager (ContractName=&quot;Microsoft.WebTools.ProjectSystem.Components.Endpoints.IEndpointsManager&quot;) --&gt;  Microsoft.WebTools.ProjectSystem.Components.Endpoints.EndpointsExplorerTopMenuCommand&#x000D;&#x000A;&#x000D;&#x000A;</description>
    <guid>{0BF510CB-15E5-4F27-8219-8D9AA51E49F7}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
</activity>
