<?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>2025/05/08 10:15:55.833</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.35931.197</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2025/05/08 10:15:55.833</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{37D932CA-E064-488C-A07C-BAE467167CBB}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2025/05/08 10:15:55.833</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>D:\Microsoft\VisualStudio\2022\Community\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>D:\Microsoft\VisualStudio\2022\Community\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2025/05/08 10:15:55.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>D:\Microsoft\VisualStudio\2022\Community\</path>
  </entry>
  <entry>
    <record>262</record>
    <time>2025/05/08 10:15:59.710</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and VSPackage component</description>
  </entry>
  <entry>
    <record>263</record>
    <time>2025/05/08 10:15:59.711</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>264</record>
    <time>2025/05/08 10:15:59.711</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>Component: 3ae79031-e1bc-11d0-8f78-00a0c9110057, Inclusive Cost: 187.7378, Exclusive Cost: 187.7378, Top Level Inclusive Cost: 187.7378</description>
    <guid>{3AE79031-E1BC-11D0-8F78-00A0C9110057}</guid>
  </entry>
  <entry>
    <record>265</record>
    <time>2025/05/08 10:15:59.711</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>266</record>
    <time>2025/05/08 10:15:59.729</time>
    <type>Information</type>
    <source>UIDelayNotifications</source>
    <description>UI-delay processor started successfully.</description>
  </entry>
  <entry>
    <record>267</record>
    <time>2025/05/08 10:15:59.894</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MSEnv Settings Observer Package]</description>
    <guid>{CDF3513F-B741-452D-8B94-C3F74578C41D}</guid>
  </entry>
  <entry>
    <record>268</record>
    <time>2025/05/08 10:15:59.894</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MSEnv Settings Observer Package]</description>
    <guid>{CDF3513F-B741-452D-8B94-C3F74578C41D}</guid>
  </entry>
  <entry>
    <record>269</record>
    <time>2025/05/08 10:15:59.954</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccProviderStubPackage]</description>
    <guid>{7FE5C29F-58EC-45F0-AF68-EC00D9ECD138}</guid>
  </entry>
  <entry>
    <record>270</record>
    <time>2025/05/08 10:16:00.031</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>271</record>
    <time>2025/05/08 10:16:00.031</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>LastCompatibilityListCheck - 133911702510467831</description>
  </entry>
  <entry>
    <record>272</record>
    <time>2025/05/08 10:16:00.031</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>NewConfigurationChangedTimestamp - 133911702467525369</description>
  </entry>
  <entry>
    <record>273</record>
    <time>2025/05/08 10:16:00.031</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>UserCompatibilityListTimestamp - 133911681439612208</description>
  </entry>
  <entry>
    <record>274</record>
    <time>2025/05/08 10:16:00.191</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio CRC package]</description>
    <guid>{6B238C39-B163-467E-83DB-A2DEC10459ED}</guid>
  </entry>
  <entry>
    <record>275</record>
    <time>2025/05/08 10:16:00.193</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio CRC package]</description>
    <guid>{6B238C39-B163-467E-83DB-A2DEC10459ED}</guid>
  </entry>
  <entry>
    <record>276</record>
    <time>2025/05/08 10:16:00.198</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>277</record>
    <time>2025/05/08 10:16:00.234</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.Packages.OnlineLicensing.OnlineLicensingManagerPackage]</description>
    <guid>{A5C25D8F-4D74-4924-BD8C-F3C2B860F4EC}</guid>
  </entry>
  <entry>
    <record>278</record>
    <time>2025/05/08 10:16:00.235</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.Packages.OnlineLicensing.OnlineLicensingManagerPackage]</description>
    <guid>{A5C25D8F-4D74-4924-BD8C-F3C2B860F4EC}</guid>
  </entry>
  <entry>
    <record>279</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Windows Software Development Kit for Windows Store Apps&apos; (Microsoft.Windows.DevelopmentKit.WindowsStore)...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\WINDOWS STORE SDK\</path>
  </entry>
  <entry>
    <record>280</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Windows Desktop SDK&apos; (Microsoft.Windows.DevelopmentKit.Desktop)...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\DESKTOP SDK\</path>
  </entry>
  <entry>
    <record>281</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\WINDOWS STORE SDK\</path>
  </entry>
  <entry>
    <record>282</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\DESKTOP SDK\</path>
  </entry>
  <entry>
    <record>283</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Windows Desktop SDK Additions for ARM&apos; (Microsoft.Windows.DevelopmentKit.DesktopArmAdditions)...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\SDK ARM ADDITIONS\</path>
  </entry>
  <entry>
    <record>284</record>
    <time>2025/05/08 10:16:00.330</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\SDK ARM ADDITIONS\</path>
  </entry>
  <entry>
    <record>285</record>
    <time>2025/05/08 10:16:00.333</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Common IDE Package]</description>
    <guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid>
  </entry>
  <entry>
    <record>286</record>
    <time>2025/05/08 10:16:00.337</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>287</record>
    <time>2025/05/08 10:16:00.397</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SccProviderStubPackage]</description>
    <guid>{7FE5C29F-58EC-45F0-AF68-EC00D9ECD138}</guid>
  </entry>
  <entry>
    <record>288</record>
    <time>2025/05/08 10:16:00.419</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IdentityServicePackage]</description>
    <guid>{C35E0ABB-7F17-447F-B054-7B73D6D7581D}</guid>
  </entry>
  <entry>
    <record>289</record>
    <time>2025/05/08 10:16:00.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ImageRegistrationPackage]</description>
    <guid>{F019A060-2752-4884-AA33-EBB9EF87164D}</guid>
  </entry>
  <entry>
    <record>290</record>
    <time>2025/05/08 10:16:00.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ImageRegistrationPackage]</description>
    <guid>{F019A060-2752-4884-AA33-EBB9EF87164D}</guid>
  </entry>
  <entry>
    <record>291</record>
    <time>2025/05/08 10:16:00.480</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>292</record>
    <time>2025/05/08 10:16:00.483</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MaintenanceTaskProcessorPackage]</description>
    <guid>{D614C115-7269-44A9-ABE2-16763CB95155}</guid>
  </entry>
  <entry>
    <record>293</record>
    <time>2025/05/08 10:16:00.489</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>294</record>
    <time>2025/05/08 10:16:00.495</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>295</record>
    <time>2025/05/08 10:16:00.496</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Web Browser Package]</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
  </entry>
  <entry>
    <record>296</record>
    <time>2025/05/08 10:16:00.496</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
    <path>D:\Microsoft\VisualStudio\2022\Community\Common7\IDE*\msenvui.dll</path>
  </entry>
  <entry>
    <record>297</record>
    <time>2025/05/08 10:16:00.497</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Web Browser Package]</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
  </entry>
  <entry>
    <record>298</record>
    <time>2025/05/08 10:16:00.690</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [IdentityServicePackage]</description>
    <guid>{C35E0ABB-7F17-447F-B054-7B73D6D7581D}</guid>
  </entry>
  <entry>
    <record>299</record>
    <time>2025/05/08 10:16:00.761</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;99c7f08cf0ec441f889daa5ee6ed1ad5&apos;, expression=&apos;c0 &amp; c1&apos;, terms=&apos;ActiveProjectCapability:CSharp, ActiveProjectBuildProperty:TargetFrameworkMoniker=[.]NETFramework.*&apos;]</description>
  </entry>
  <entry>
    <record>300</record>
    <time>2025/05/08 10:16:00.762</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.2)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>301</record>
    <time>2025/05/08 10:16:00.763</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.1)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>302</record>
    <time>2025/05/08 10:16:00.765</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 99c7f08cf0ec441f889daa5ee6ed1ad5 does not exist.</description>
  </entry>
  <entry>
    <record>303</record>
    <time>2025/05/08 10:16:00.765</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;99c7f08cf0ec441f889daa5ee6ed1ad5&apos;, expression=&apos;c0 &amp; c1&apos;, terms=&apos;ActiveProjectCapability:CSharp, ActiveProjectBuildProperty:TargetFrameworkMoniker=[.]NETFramework.*&apos;]</description>
  </entry>
  <entry>
    <record>304</record>
    <time>2025/05/08 10:16:00.775</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;5e1d28c9574d44e38d5f6df4f502416d&apos;, expression=&apos;c0&apos;, terms=&apos;ClientUIContext:d5801818-6009-40be-9204-8897c23d2856&apos;]</description>
  </entry>
  <entry>
    <record>305</record>
    <time>2025/05/08 10:16:00.775</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 5e1d28c9574d44e38d5f6df4f502416d does not exist.</description>
  </entry>
  <entry>
    <record>306</record>
    <time>2025/05/08 10:16:00.775</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;5e1d28c9574d44e38d5f6df4f502416d&apos;, expression=&apos;c0&apos;, terms=&apos;ClientUIContext:d5801818-6009-40be-9204-8897c23d2856&apos;]</description>
  </entry>
  <entry>
    <record>307</record>
    <time>2025/05/08 10:16:00.961</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ToastNotificationsPackage]</description>
    <guid>{C931D979-CA1A-41E8-8A23-E86B85E3141B}</guid>
  </entry>
  <entry>
    <record>308</record>
    <time>2025/05/08 10:16:00.963</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ToastNotificationsPackage]</description>
    <guid>{C931D979-CA1A-41E8-8A23-E86B85E3141B}</guid>
  </entry>
  <entry>
    <record>309</record>
    <time>2025/05/08 10:16:00.992</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>310</record>
    <time>2025/05/08 10:16:00.994</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>311</record>
    <time>2025/05/08 10:16:02.879</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>C:\Users\chen\AppData\Local\Microsoft\VisualStudio\17.0_04603345\ComponentModelCache\Microsoft.VisualStudio.Default.cache</description>
  </entry>
  <entry>
    <record>312</record>
    <time>2025/05/08 10:16:03.311</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GlobalSearchPackage]</description>
    <guid>{18333854-D2FF-44A3-98D8-40501B914D7D}</guid>
  </entry>
  <entry>
    <record>313</record>
    <time>2025/05/08 10:16:03.314</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GlobalSearchPackage]</description>
    <guid>{18333854-D2FF-44A3-98D8-40501B914D7D}</guid>
  </entry>
  <entry>
    <record>314</record>
    <time>2025/05/08 10:16:03.438</time>
    <type>Information</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Delete any existing VS MEF catalog or graph cache files;VS.Platform.ExtensibilityHosting.DeleteCaches.StackTrace=   &#x5728; Microsoft.VisualStudio.ExtensibilityHosting.VsExportProviderFactory.DeleteCaches(String catalogName)&#x000D;&#x000A;   &#x5728; Microsoft.VisualStudio.ComponentModelHost.ComponentModel.Factory.&lt;GetMEFV3ExportProviderWrapperAsync&gt;d__10.MoveNext()&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Runtime.CompilerServices.AsyncMethodBuilderCore.MoveNextRunner.Run()&#x000D;&#x000A;   &#x5728; Microsoft.VisualStudio.Threading.JoinableTaskFactory.SingleExecuteProtector.TryExecute()&#x000D;&#x000A;   &#x5728; System.Threading.Tasks.Task.Execute()&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Threading.Tasks.Task.ExecuteWithThreadLocal(Task&amp; currentTaskSlot)&#x000D;&#x000A;   &#x5728; System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)&#x000D;&#x000A;   &#x5728; Microsoft.VisualStudio.Services.TaskSchedulerService.VsUIThreadBlockableTaskScheduler.DoOneTask(Int32&amp; dequeuedTaskCount)&#x000D;&#x000A;   &#x5728; Microsoft.VisualStudio.Services.TaskSchedulerService.VsUIBackgroundPriorityScheduler.ProcessTasksWithTimeLimit(Int32&amp; dequeuedTaskCount)&#x000D;&#x000A;   &#x5728; Microsoft.VisualStudio.Services.TaskSchedulerService.VsUIBackgroundPriorityScheduler.ProcessQueue(String caller)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.DispatcherOperation.InvokeImpl()&#x000D;&#x000A;   &#x5728; MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj)&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)&#x000D;&#x000A;   &#x5728; System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)&#x000D;&#x000A;   &#x5728; MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.DispatcherOperation.Invoke()&#x000D;&#x000A;   &#x5728; System.Windows.Threading.Dispatcher.ProcessQueue()&#x000D;&#x000A;   &#x5728; System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp; handled)&#x000D;&#x000A;   &#x5728; MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp; handled)&#x000D;&#x000A;   &#x5728; MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)&#x000D;&#x000A;   &#x5728; System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)&#x000D;&#x000A;   &#x5728; MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)&#x000D;&#x000A;;VS.Platform.ExtensibilityHosting.DeleteCaches.CatalogName=Microsoft.VisualStudio.Default*;VS.Platform.ExtensibilityHosting.DeleteCaches.CatalogCacheFolderRelativePath=Local/Microsoft/VisualStudio/17.0_04603345/ComponentModelCache&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>315</record>
    <time>2025/05/08 10:16:03.583</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LiveSharePackage]</description>
    <guid>{67658630-052D-4894-A9D2-184CE702F7A7}</guid>
  </entry>
  <entry>
    <record>316</record>
    <time>2025/05/08 10:16:03.583</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LiveSharePackage]</description>
    <guid>{67658630-052D-4894-A9D2-184CE702F7A7}</guid>
  </entry>
  <entry>
    <record>317</record>
    <time>2025/05/08 10:16:03.628</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.UserInformation.UserInformationPackage]</description>
    <guid>{5E80A5A1-B722-4727-9015-148AAB6310B0}</guid>
  </entry>
  <entry>
    <record>318</record>
    <time>2025/05/08 10:16:03.632</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.UserInformation.UserInformationPackage]</description>
    <guid>{5E80A5A1-B722-4727-9015-148AAB6310B0}</guid>
  </entry>
  <entry>
    <record>319</record>
    <time>2025/05/08 10:16:03.633</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.Packages.Subscriptions.SubscriptionsPackage]</description>
    <guid>{C81BD43F-26D0-4D3D-B07B-F5DEE15C4D1B}</guid>
  </entry>
  <entry>
    <record>320</record>
    <time>2025/05/08 10:16:03.635</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.Packages.Subscriptions.SubscriptionsPackage]</description>
    <guid>{C81BD43F-26D0-4D3D-B07B-F5DEE15C4D1B}</guid>
  </entry>
  <entry>
    <record>321</record>
    <time>2025/05/08 10:16:03.693</time>
    <type>Information</type>
    <source>ClientRights</source>
    <description>The clients rights token could not be found</description>
  </entry>
  <entry>
    <record>322</record>
    <time>2025/05/08 10:16:03.751</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>323</record>
    <time>2025/05/08 10:16:03.754</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>324</record>
    <time>2025/05/08 10:16:03.802</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Shell.Connected.AccountManagerService.AccountManagerPackage]</description>
    <guid>{9C987E78-F0BF-45CA-9BA5-96D3E4B2BAC6}</guid>
  </entry>
  <entry>
    <record>325</record>
    <time>2025/05/08 10:16:03.802</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Shell.Connected.AccountManagerService.AccountManagerPackage]</description>
    <guid>{9C987E78-F0BF-45CA-9BA5-96D3E4B2BAC6}</guid>
  </entry>
  <entry>
    <record>326</record>
    <time>2025/05/08 10:16:03.802</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IdentityNexusIntegrationPackage]</description>
    <guid>{F7000CD0-C21D-11EA-B3DE-0242AC130004}</guid>
  </entry>
  <entry>
    <record>327</record>
    <time>2025/05/08 10:16:03.818</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [IdentityNexusIntegrationPackage]</description>
    <guid>{F7000CD0-C21D-11EA-B3DE-0242AC130004}</guid>
  </entry>
  <entry>
    <record>328</record>
    <time>2025/05/08 10:16:03.849</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccDisplayInformationPackage]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>329</record>
    <time>2025/05/08 10:16:03.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>330</record>
    <time>2025/05/08 10:16:03.951</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SccDisplayInformationPackage]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>331</record>
    <time>2025/05/08 10:16:03.951</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>332</record>
    <time>2025/05/08 10:16:04.098</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>333</record>
    <time>2025/05/08 10:16:04.099</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>334</record>
    <time>2025/05/08 10:16:04.155</time>
    <type>Information</type>
    <source>ClientRights</source>
    <description>Client rights determined: {&quot;CurrentClientRights&quot;:{&quot;LicenseSource&quot;:0,&quot;LicenseSource2&quot;:0,&quot;IsSubscriptionBased&quot;:false,&quot;DaysSinceCreation&quot;:-1,&quot;LicenseType&quot;:1,&quot;AuthorizedVsEdition&quot;:0,&quot;AuthorizedVsEdition2&quot;:200,&quot;DaysToExpire&quot;:-2,&quot;IsLicenseGood&quot;:true,&quot;LicenseDescription&quot;:&quot;&#x5DF2;&#x5E94;&#x7528;&#x4EA7;&#x54C1;&#x5BC6;&#x94A5;&quot;,&quot;LicenseStatus&quot;:1,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;MayUplevel&quot;:false,&quot;LicensedUserId&quot;:&quot;00000000-0000-0000-0000-000000000000&quot;,&quot;LicensedUserName&quot;:&quot;&quot;,&quot;LicensingAccount&quot;:&quot;&quot;,&quot;ReleaseType&quot;:1},&quot;CurrentLicenseSource&quot;:0,&quot;CurrentLicenseSource2&quot;:0,&quot;IDEUserClientRights&quot;:null,&quot;PIDClientRights&quot;:{&quot;LicenseSource&quot;:0,&quot;LicenseSource2&quot;:0,&quot;IsSubscriptionBased&quot;:false,&quot;DaysSinceCreation&quot;:-1,&quot;LicenseType&quot;:1,&quot;AuthorizedVsEdition&quot;:0,&quot;AuthorizedVsEdition2&quot;:200,&quot;DaysToExpire&quot;:-2,&quot;IsLicenseGood&quot;:true,&quot;LicenseDescription&quot;:&quot;&#x5DF2;&#x5E94;&#x7528;&#x4EA7;&#x54C1;&#x5BC6;&#x94A5;&quot;,&quot;LicenseStatus&quot;:1,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;MayUplevel&quot;:false,&quot;LicensedUserId&quot;:&quot;00000000-0000-0000-0000-000000000000&quot;,&quot;LicensedUserName&quot;:&quot;&quot;,&quot;LicensingAccount&quot;:&quot;&quot;,&quot;ReleaseType&quot;:1}}; Account identity provider: </description>
  </entry>
  <entry>
    <record>335</record>
    <time>2025/05/08 10:16:05.552</time>
    <type>Information</type>
    <source>DetectRunAs</source>
    <description>COMPATLAYER __COMPAT_LAYER is </description>
  </entry>
  <entry>
    <record>336</record>
    <time>2025/05/08 10:16:05.552</time>
    <type>Information</type>
    <source>DetectRunAs</source>
    <description>RunAs results: check enabled: True detected:False currentSid:S-1-5-21-1521475365-3116606030-990149959-1001 shellSid:S-1-5-21-1521475365-3116606030-990149959-1001</description>
  </entry>
  <entry>
    <record>337</record>
    <time>2025/05/08 10:16:05.631</time>
    <type>Information</type>
    <source>BuiltInSettings</source>
    <description>{&#x000D;&#x000A;  &quot;$schema&quot;: &quot;./WellKnownCloudConfiguration.schema.json&quot;,&#x000D;&#x000A;  &quot;WellKnownClouds&quot;: [&#x000D;&#x000A;    {&#x000D;&#x000A;      &quot;DisplayName&quot;: &quot;Azure In China&quot;,&#x000D;&#x000A;      &quot;AccountProviderIdentifier&quot;: &quot;552afc90-145a-469c-8c31-943595db4a66&quot;,&#x000D;&#x000A;      &quot;SerializedConfiguration&quot;: {&#x000D;&#x000A;        &quot;AuthenticationQueryParameters&quot;: null,&#x000D;&#x000A;        &quot;AsmEndPoint&quot;: &quot;https://management.core.chinacloudapi.cn&quot;,&#x000D;&#x000A;        &quot;Authority&quot;: &quot;https://login.chinacloudapi.cn/&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementEndpoint&quot;: &quot;https://management.chinacloudapi.cn/&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementAudienceEndpoints&quot;: [&#x000D;&#x000A;          &quot;https://management.core.chinacloudapi.cn/&quot;&#x000D;&#x000A;        ],&#x000D;&#x000A;        &quot;ClientIdentifier&quot;: &quot;04f0c124-f2bc-4f59-8241-bf6df9866bbd&quot;,&#x000D;&#x000A;        &quot;EnvironmentName&quot;: &quot;Azure In China&quot;,&#x000D;&#x000A;        &quot;GraphEndpoint&quot;: &quot;https://graph.chinacloudapi.cn&quot;,&#x000D;&#x000A;        &quot;MsaHomeTenantId&quot;: &quot;00000000-0000-0000-0000-000000000000&quot;,&#x000D;&#x000A;        &quot;NativeClientRedirect&quot;: &quot;https://login.microsoftonline.com/common/oauth2/nativeclient&quot;,&#x000D;&#x000A;        &quot;PortalEndpoint&quot;: &quot;https://portal.azure.cn&quot;,&#x000D;&#x000A;        &quot;ResourceEndpoint&quot;: &quot;https://management.core.chinacloudapi.cn/&quot;,&#x000D;&#x000A;        &quot;ValidateAuthority&quot;: true,&#x000D;&#x000A;        &quot;VisualStudioOnlineEndpoint&quot;: null,&#x000D;&#x000A;        &quot;VisualStudioOnlineAudience&quot;: null&#x000D;&#x000A;      },&#x000D;&#x000A;      &quot;Authority&quot;: &quot;https://login.chinacloudapi.cn/&quot;,&#x000D;&#x000A;      &quot;AuthorizedVsEdition&quot;: 0,&#x000D;&#x000A;      &quot;Visible&quot;: true&#x000D;&#x000A;    },&#x000D;&#x000A;    {&#x000D;&#x000A;      &quot;DisplayName&quot;: &quot;Azure&quot;,&#x000D;&#x000A;      &quot;AccountProviderIdentifier&quot;: &quot;552afc90-145a-469c-8c31-943595db4a66&quot;,&#x000D;&#x000A;      &quot;SerializedConfiguration&quot;: {&#x000D;&#x000A;        &quot;AuthenticationQueryParameters&quot;: null,&#x000D;&#x000A;        &quot;AsmEndPoint&quot;: &quot;https://management.core.windows.net/&quot;,&#x000D;&#x000A;        &quot;Authority&quot;: &quot;https://login.microsoftonline.com/&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementEndpoint&quot;: &quot;https://management.azure.com/&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementAudienceEndpoints&quot;: [&#x000D;&#x000A;          &quot;https://management.core.windows.net/&quot;&#x000D;&#x000A;        ],&#x000D;&#x000A;        &quot;ClientIdentifier&quot;: &quot;04f0c124-f2bc-4f59-8241-bf6df9866bbd&quot;,&#x000D;&#x000A;        &quot;EnvironmentName&quot;: &quot;AzureCloud&quot;,&#x000D;&#x000A;        &quot;GraphEndpoint&quot;: &quot;https://graph.windows.net/&quot;,&#x000D;&#x000A;        &quot;MsaHomeTenantId&quot;: &quot;f8cdef31-a31e-4b4a-93e4-5f571e91255a&quot;,&#x000D;&#x000A;        &quot;NativeClientRedirect&quot;: &quot;https://login.microsoftonline.com/common/oauth2/nativeclient&quot;,&#x000D;&#x000A;        &quot;PortalEndpoint&quot;: &quot;https://portal.azure.com/&quot;,&#x000D;&#x000A;        &quot;ResourceEndpoint&quot;: &quot;https://management.core.windows.net/&quot;,&#x000D;&#x000A;        &quot;ValidateAuthority&quot;: true,&#x000D;&#x000A;        &quot;VisualStudioOnlineEndpoint&quot;: &quot;https://app.vssps.visualstudio.com/&quot;,&#x000D;&#x000A;        &quot;VisualStudioOnlineAudience&quot;: &quot;499b84ac-1321-427f-aa17-267ca6975798&quot;&#x000D;&#x000A;      },&#x000D;&#x000A;      &quot;Authority&quot;: &quot;https://login.microsoftonline.com/&quot;,&#x000D;&#x000A;      &quot;AuthorizedVsEdition&quot;: 0,&#x000D;&#x000A;      &quot;Visible&quot;: false&#x000D;&#x000A;    },&#x000D;&#x000A;    {&#x000D;&#x000A;      &quot;DisplayName&quot;: &quot;Azure U.S. Government&quot;,&#x000D;&#x000A;      &quot;AccountProviderIdentifier&quot;: &quot;552afc90-145a-469c-8c31-943595db4a66&quot;,&#x000D;&#x000A;      &quot;SerializedConfiguration&quot;: {&#x000D;&#x000A;        &quot;AuthenticationQueryParameters&quot;: null,&#x000D;&#x000A;        &quot;AsmEndPoint&quot;: &quot;https://management.core.usgovcloudapi.net/&quot;,&#x000D;&#x000A;        &quot;Authority&quot;: &quot;https://login.microsoftonline.us/&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementEndpoint&quot;: &quot;https://management.usgovcloudapi.net&quot;,&#x000D;&#x000A;        &quot;AzureResourceManagementAudienceEndpoints&quot;: [&#x000D;&#x000A;          &quot;https://management.core.usgovcloudapi.net&quot;&#x000D;&#x000A;        ],&#x000D;&#x000A;        &quot;ClientIdentifier&quot;: &quot;04f0c124-f2bc-4f59-8241-bf6df9866bbd&quot;,&#x000D;&#x000A;        &quot;EnvironmentName&quot;: &quot;Azure U.S. Government&quot;,&#x000D;&#x000A;        &quot;GraphEndpoint&quot;: &quot;https://graph.microsoftazure.us&quot;,&#x000D;&#x000A;        &quot;MsaHomeTenantId&quot;: &quot;00000000-0000-0000-0000-000000000000&quot;,&#x000D;&#x000A;        &quot;NativeClientRedirect&quot;: &quot;https://login.microsoftonline.com/common/oauth2/nativeclient&quot;,&#x000D;&#x000A;        &quot;PortalEndpoint&quot;: &quot;https://portal.azure.us/&quot;,&#x000D;&#x000A;        &quot;ResourceEndpoint&quot;: &quot;https://management.core.usgovcloudapi.net&quot;,&#x000D;&#x000A;        &quot;ValidateAuthority&quot;: true,&#x000D;&#x000A;        &quot;VisualStudioOnlineEndpoint&quot;: null,&#x000D;&#x000A;        &quot;VisualStudioOnlineAudience&quot;: null&#x000D;&#x000A;      },&#x000D;&#x000A;      &quot;Authority&quot;: &quot;https://login.microsoftonline.us/&quot;,&#x000D;&#x000A;      &quot;AuthorizedVsEdition&quot;: 0,&#x000D;&#x000A;      &quot;Visible&quot;: true&#x000D;&#x000A;    }&#x000D;&#x000A;  ]&#x000D;&#x000A;}</description>
  </entry>
  <entry>
    <record>338</record>
    <time>2025/05/08 10:16:09.804</time>
    <type>Information</type>
    <source>VSPackage</source>
    <description>Parsing compatibility list file for VS assemblies that should not be in GAC - C:\Users\chen\AppData\Local\Microsoft\VisualStudio\17.0_04603345\Extensions\CompatibilityList.xml</description>
  </entry>
  <entry>
    <record>339</record>
    <time>2025/05/08 10:16:09.915</time>
    <type>Information</type>
    <source>VSPackage</source>
    <description>Should automatically check for an update</description>
  </entry>
  <entry>
    <record>340</record>
    <time>2025/05/08 10:16:09.916</time>
    <type>Information</type>
    <source>VSPackage</source>
    <description>Next update check in &apos;83691418&apos; ms </description>
  </entry>
  <entry>
    <record>341</record>
    <time>2025/05/08 10:16:11.185</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UnifiedSettingsCommandsPackage]</description>
    <guid>{0A2E4C8C-77BB-496A-928D-EF4828488BCB}</guid>
  </entry>
  <entry>
    <record>342</record>
    <time>2025/05/08 10:16:11.187</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UnifiedSettingsCommandsPackage]</description>
    <guid>{0A2E4C8C-77BB-496A-928D-EF4828488BCB}</guid>
  </entry>
  <entry>
    <record>343</record>
    <time>2025/05/08 10:16:11.242</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{317F9928-FDE3-410A-98A6-DF20D6CECCA0} (SqlIPToolsOptionsIntegration) LANG:0804 ID:110&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>344</record>
    <time>2025/05/08 10:16:11.245</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{317F9928-FDE3-410A-98A6-DF20D6CECCA0} (SqlIPToolsOptionsIntegration) LANG:0804 ID:201&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>345</record>
    <time>2025/05/08 10:16:11.306</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{871D2A70-12A2-4E42-9440-425DD92A4116} (FSharpPackage) LANG:0804 ID:6000&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>346</record>
    <time>2025/05/08 10:16:11.314</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{871D2A70-12A2-4E42-9440-425DD92A4116} (FSharpPackage) LANG:0804 ID:6001&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>347</record>
    <time>2025/05/08 10:16:11.343</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{237BDE42-2754-4B15-ADBD-0B6CECE84300} (IntelliCodePackage) LANG:0804 ID:211&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>348</record>
    <time>2025/05/08 10:16:11.406</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC} (DockerLanguageServicePackage) LANG:0804 ID:100&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>349</record>
    <time>2025/05/08 10:16:11.413</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{871D2A70-12A2-4E42-9440-425DD92A4116} (FSharpPackage) LANG:0804 ID:100&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>350</record>
    <time>2025/05/08 10:16:11.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{00000000-0000-0000-0000-000000000000} LANG:0804 ID:1004&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>351</record>
    <time>2025/05/08 10:16:11.453</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603} (XamlLanguagePackage) LANG:0804 ID:1001&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>352</record>
    <time>2025/05/08 10:16:11.463</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603} (XamlLanguagePackage) LANG:0804 ID:2000&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>353</record>
    <time>2025/05/08 10:16:11.465</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603} (XamlLanguagePackage) LANG:0804 ID:2001&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>354</record>
    <time>2025/05/08 10:16:11.467</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603} (XamlLanguagePackage) LANG:0804 ID:2002&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>355</record>
    <time>2025/05/08 10:16:11.468</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Performance warning: String load failed. Pkg:{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603} (XamlLanguagePackage) LANG:0804 ID:2006&#x000D;&#x000A;</description>
  </entry>
  <entry>
    <record>356</record>
    <time>2025/05/08 10:16:11.478</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Text Management Package]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>357</record>
    <time>2025/05/08 10:16:11.492</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Text Management Package]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>358</record>
    <time>2025/05/08 10:16:11.495</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]</description>
    <guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid>
  </entry>
  <entry>
    <record>359</record>
    <time>2025/05/08 10:16:11.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>360</record>
    <time>2025/05/08 10:16:11.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>361</record>
    <time>2025/05/08 10:16:23.458</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: &apos;(null)&apos; Description: &#x672A;&#x6307;&#x5B9A;&#x7684;&#x9519;&#x8BEF;&#x000D;&#x000A;&#x000D;&#x000A;</description>
    <guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid>
    <hr>0x80004003 - E_POINTER</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>362</record>
    <time>2025/05/08 10:16:24.975</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>363</record>
    <time>2025/05/08 10:16:24.975</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MaintenanceTaskProcessorPackage]</description>
    <guid>{D614C115-7269-44A9-ABE2-16763CB95155}</guid>
  </entry>
  <entry>
    <record>364</record>
    <time>2025/05/08 10:16:24.975</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>365</record>
    <time>2025/05/08 10:16:24.975</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MefServiceBrokerPackage]</description>
    <guid>{95FAA709-2640-4F04-A6B5-657B26D9D494}</guid>
  </entry>
  <entry>
    <record>366</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerBroadcastService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>367</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerBroadcastService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>368</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Editor.TextEditorSynchronizationService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>369</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>370</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>371</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticViewerService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>372</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticViewerService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>373</record>
    <time>2025/05/08 10:16:25.022</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MefServiceBrokerPackage]</description>
    <guid>{95FAA709-2640-4F04-A6B5-657B26D9D494}</guid>
  </entry>
  <entry>
    <record>374</record>
    <time>2025/05/08 10:16:25.027</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [PromotionsPackage]</description>
    <guid>{B596A79C-0044-4FC4-AAF6-A700B6FDC9ED}</guid>
  </entry>
  <entry>
    <record>375</record>
    <time>2025/05/08 10:16:25.032</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [PromotionsPackage]</description>
    <guid>{B596A79C-0044-4FC4-AAF6-A700B6FDC9ED}</guid>
  </entry>
  <entry>
    <record>376</record>
    <time>2025/05/08 10:16:25.032</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GlobalHubClientPackage]</description>
    <guid>{11AD60FC-6D87-4674-8F88-9ABE79176CBE}</guid>
  </entry>
  <entry>
    <record>377</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: 7BED179A-3BE7-414D-8C40-914B591EF553</description>
  </entry>
  <entry>
    <record>378</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: 7BED179A-3BE7-414D-8C40-914B591EF553</description>
  </entry>
  <entry>
    <record>379</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: 93EA625A-53B4-4003-B56F-AB936759983B</description>
  </entry>
  <entry>
    <record>380</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: 93EA625A-53B4-4003-B56F-AB936759983B</description>
  </entry>
  <entry>
    <record>381</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: DED7D4AD-2C83-4B10-BC64-5C8DF0C052A5</description>
  </entry>
  <entry>
    <record>382</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: DED7D4AD-2C83-4B10-BC64-5C8DF0C052A5</description>
  </entry>
  <entry>
    <record>383</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: 45E4D712-83A8-4F72-8AAF-94284ADE1D6A</description>
  </entry>
  <entry>
    <record>384</record>
    <time>2025/05/08 10:16:25.077</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: 45E4D712-83A8-4F72-8AAF-94284ADE1D6A</description>
  </entry>
  <entry>
    <record>385</record>
    <time>2025/05/08 10:16:25.224</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.2)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>386</record>
    <time>2025/05/08 10:16:25.224</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.1)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>387</record>
    <time>2025/05/08 10:16:25.263</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GlobalHubClientPackage]</description>
    <guid>{11AD60FC-6D87-4674-8F88-9ABE79176CBE}</guid>
  </entry>
  <entry>
    <record>388</record>
    <time>2025/05/08 10:16:25.263</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [StartPagePackage]</description>
    <guid>{933D4FD6-4649-41CE-A397-82948D812534}</guid>
  </entry>
  <entry>
    <record>389</record>
    <time>2025/05/08 10:16:25.263</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [StartPagePackage]</description>
    <guid>{933D4FD6-4649-41CE-A397-82948D812534}</guid>
  </entry>
  <entry>
    <record>390</record>
    <time>2025/05/08 10:16:25.263</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [WhatsNewPackage]</description>
    <guid>{ADCCE324-D32C-4758-98CF-687CE2CD668E}</guid>
  </entry>
  <entry>
    <record>391</record>
    <time>2025/05/08 10:16:25.277</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [WhatsNewPackage]</description>
    <guid>{ADCCE324-D32C-4758-98CF-687CE2CD668E}</guid>
  </entry>
  <entry>
    <record>392</record>
    <time>2025/05/08 10:24:57.205</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Windows Forms Designer Package]</description>
    <guid>{7494682B-37A0-11D2-A273-00C04F8EF4FF}</guid>
  </entry>
  <entry>
    <record>393</record>
    <time>2025/05/08 10:24:57.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Windows Forms Designer Package]</description>
    <guid>{7494682B-37A0-11D2-A273-00C04F8EF4FF}</guid>
  </entry>
  <entry>
    <record>394</record>
    <time>2025/05/08 10:25:00.818</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]</description>
    <guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid>
  </entry>
  <entry>
    <record>395</record>
    <time>2025/05/08 10:25:00.848</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: &apos;(null)&apos; Description: &#x672A;&#x6307;&#x5B9A;&#x7684;&#x9519;&#x8BEF;&#x000D;&#x000A;&#x000D;&#x000A;</description>
    <guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid>
    <hr>0x80131509</hr>
    <errorinfo></errorinfo>
  </entry>
</activity>
