<?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/01/12 07:34:33.100</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.34511.81</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2025/01/12 07:34:33.100</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{7CE1AF7C-CBF4-4595-B6E4-1DBB8F4720AC}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2025/01/12 07:34:33.100</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2025/01/12 07:34:33.127</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>2025/01/12 07:34:33.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2025/01/12 07:34:33.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2025/01/12 07:34:33.181</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2025/01/12 07:34:33.182</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2025/01/12 07:34:33.182</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>2025/01/12 07:34:33.182</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>1736</record>
    <time>2025/01/12 07:34:55.773</time>
    <type>Error</type>
    <source>PreviewFeaturesPane</source>
    <description>Failed to load package string with id f47a268a-bba9-442d-ac61-eef97f906458 and resource id #1000</description>
  </entry>
  <entry>
    <record>1746</record>
    <time>2025/01/12 07:34:56.626</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{FBE2D754-387C-4F14-9C6E-7C786C0751BB}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1747</record>
    <time>2025/01/12 07:34:56.627</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package MsixProjectExtensionsPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1748</record>
    <time>2025/01/12 07:35:01.280</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1749</record>
    <time>2025/01/12 07:35:01.280</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package Microsoft.VisualStudio.LanguageServices.TypeScript.TypeScriptPackage, Microsoft.VisualStudio.LanguageServices.TypeScript, Version=17.0.0.0, Culture=neutral. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1751</record>
    <time>2025/01/12 07:35:01.580</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>1752</record>
    <time>2025/01/12 07:35:01.631</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C78CA057-CC29-421F-AD6D-3B0943DEBDFC}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: 1
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1753</record>
    <time>2025/01/12 07:35:01.632</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package Windows Forms Remote Designer Hosting Package. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1754</record>
    <time>2025/01/12 07:35:01.943</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: VSMenus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1755</record>
    <time>2025/01/12 07:35:01.945</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1853</record>
    <time>2025/01/12 07:35:10.028</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{FBE2D754-387C-4F14-9C6E-7C786C0751BB}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1854</record>
    <time>2025/01/12 07:35:10.028</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package MsixProjectExtensionsPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1855</record>
    <time>2025/01/12 07:35:16.506</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1856</record>
    <time>2025/01/12 07:35:16.506</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package Microsoft.VisualStudio.LanguageServices.TypeScript.TypeScriptPackage, Microsoft.VisualStudio.LanguageServices.TypeScript, Version=17.0.0.0, Culture=neutral. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1858</record>
    <time>2025/01/12 07:35:16.607</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>1859</record>
    <time>2025/01/12 07:35:16.647</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C78CA057-CC29-421F-AD6D-3B0943DEBDFC}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: 1
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1860</record>
    <time>2025/01/12 07:35:16.648</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package Windows Forms Remote Designer Hosting Package. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1861</record>
    <time>2025/01/12 07:35:16.666</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: VSMenus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1862</record>
    <time>2025/01/12 07:35:16.666</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>3485</record>
    <time>2025/01/12 07:37:14.259</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3486</record>
    <time>2025/01/12 07:37:14.259</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3487</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3488</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3489</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3490</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3491</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3492</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3493</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3494</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3495</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3496</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3497</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3498</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3499</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3500</record>
    <time>2025/01/12 07:37:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3501</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3502</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3503</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3504</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3505</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3506</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3507</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3508</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3509</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3510</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3511</record>
    <time>2025/01/12 07:37:14.261</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3512</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3513</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3514</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3515</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3516</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3517</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3518</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3519</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3520</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3521</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3522</record>
    <time>2025/01/12 07:37:14.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3523</record>
    <time>2025/01/12 07:37:15.531</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\seozpqmx.bx5\Web\FSharp\Web\1033\Web\Web.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\seozpqmx.bx5\Web\FSharp\.NET\1033\Web\Web.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3524</record>
    <time>2025/01/12 07:37:15.548</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\L5ZSAFSL.3CN\XUnitTest\VisualBasic\.NET\1033\XUnitTest\XUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\L5ZSAFSL.3CN\XUnitTest\VisualBasic\Test\1033\XUnitTest\XUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3525</record>
    <time>2025/01/12 07:37:15.555</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\l5zsafsl.3cn\MSTest\VisualBasic\.NET\1033\MSTest\MSTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\l5zsafsl.3cn\MSTest\VisualBasic\Test\1033\MSTest\MSTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3526</record>
    <time>2025/01/12 07:37:15.556</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\L5ZSAFSL.3CN\NUnitTest\VisualBasic\.NET\1033\NUnitTest\NUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\L5ZSAFSL.3CN\NUnitTest\VisualBasic\Test\1033\NUnitTest\NUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3527</record>
    <time>2025/01/12 07:37:15.578</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\ASROWK15.WIM\XUnitTest\FSharp\.NET\1033\XUnitTest\XUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\ASROWK15.WIM\XUnitTest\FSharp\Test\1033\XUnitTest\XUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3528</record>
    <time>2025/01/12 07:37:15.583</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\asrowk15.wim\MSTest\FSharp\.NET\1033\MSTest\MSTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\asrowk15.wim\MSTest\FSharp\Test\1033\MSTest\MSTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3529</record>
    <time>2025/01/12 07:37:15.585</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\ASROWK15.WIM\NUnitTest\FSharp\.NET\1033\NUnitTest\NUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\ASROWK15.WIM\NUnitTest\FSharp\Test\1033\NUnitTest\NUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3530</record>
    <time>2025/01/12 07:37:15.853</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\SCIOGH52.BAC\XUnitTest\CSharp\.NET\1033\XUnitTest\XUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\SCIOGH52.BAC\XUnitTest\CSharp\Test\1033\XUnitTest\XUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3531</record>
    <time>2025/01/12 07:37:15.858</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\sciogh52.bac\MSTest\CSharp\.NET\1033\MSTest\MSTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\Common7\IDE\EXTENSIONS\sciogh52.bac\MSTest\CSharp\Test\1033\MSTest\MSTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3532</record>
    <time>2025/01/12 07:37:15.861</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found templates with duplicate template ids at &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\SCIOGH52.BAC\NUnitTest\CSharp\.NET\1033\NUnitTest\NUnitTest.vstemplate&quot; and &quot;C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\SCIOGH52.BAC\NUnitTest\CSharp\Test\1033\NUnitTest\NUnitTest.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>3533</record>
    <time>2025/01/12 07:37:22.927</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>Finding sdk version for 17.8</description>
  </entry>
  <entry>
    <record>3534</record>
    <time>2025/01/12 07:37:22.940</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>sdk version: 8.0.101, dotnet root path: C:\Program Files\dotnet</description>
  </entry>
  <entry>
    <record>3535</record>
    <time>2025/01/12 07:37:23.519</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>template packages: </description>
  </entry>
  <entry>
    <record>3536</record>
    <time>2025/01/12 07:37:23.727</time>
    <type>Information</type>
    <source>AggregateTemplatePackageProvider.FinalizePackages</source>
    <description>Templates to install: C:\Program Files\dotnet\templates\3.1.33\microsoft.aspnetcore.components.webassembly.templates.3.2.1.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.common.itemtemplates.8.0.101.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.common.projecttemplates.3.1.3.1.27.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.test.projecttemplates.3.1.1.1.0-rc.22558.1.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.itemtemplates.5.0.17.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.web.projecttemplates.3.1.3.1.32.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.web.spa.projecttemplates.3.1.3.1.32.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.winforms.projecttemplates.8.0.1-servicing.23580.6.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.wpf.projecttemplates.8.0.1-servicing.23580.5.nupkg,C:\Program Files\dotnet\templates\5.0.17\nunit3.dotnetnew.template.1.8.1.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.common.projecttemplates.5.0.5.0.403.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.test.projecttemplates.5.0.1.1.0-rc.23410.2.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.projecttemplates.5.0.5.0.17.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.spa.projecttemplates.5.0.5.0.17.nupkg,C:\Program Files\dotnet\templates\6.0.25\microsoft.dotnet.common.projecttemplates.6.0.6.0.302.nupkg,C:\Program Files\dotnet\templates\6.0.25\microsoft.dotnet.test.projecttemplates.6.0.1.1.0-rc.23410.2.nupkg,C:\Program Files\dotnet\templates\6.0.25\microsoft.dotnet.web.itemtemplates.6.0.6.0.25.nupkg,C:\Program Files\dotnet\templates\6.0.25\microsoft.dotnet.web.projecttemplates.6.0.6.0.25.nupkg,C:\Program Files\dotnet\templates\6.0.25\microsoft.dotnet.web.spa.projecttemplates.6.0.6.0.25.nupkg,C:\Program Files\dotnet\templates\7.0.14\microsoft.dotnet.common.projecttemplates.7.0.7.0.100.nupkg,C:\Program Files\dotnet\templates\7.0.14\microsoft.dotnet.test.projecttemplates.7.0.1.1.0-rc.23410.2.nupkg,C:\Program Files\dotnet\templates\7.0.14\microsoft.dotnet.web.itemtemplates.7.0.7.0.14.nupkg,C:\Program Files\dotnet\templates\7.0.14\microsoft.dotnet.web.projecttemplates.7.0.7.0.14.nupkg,C:\Program Files\dotnet\templates\7.0.14\microsoft.dotnet.web.spa.projecttemplates.7.0.7.0.14.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.common.projecttemplates.8.0.8.0.101.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.test.projecttemplates.8.0.1.1.0-rc.23410.2.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.web.itemtemplates.8.0.8.0.1.nupkg,C:\Program Files\dotnet\templates\8.0.1\microsoft.dotnet.web.projecttemplates.8.0.8.0.1.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.CSharp.17.8.1.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.VisualBasic.17.8.1.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.WebTools.Http.Template.17.8.1.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\templateengine\Microsoft.VisualStudio.TemplateEngine.FallbackHostData.17.8.358.nupkg</description>
  </entry>
  <entry>
    <record>3537</record>
    <time>2025/01/12 07:37:34.668</time>
    <type>Error</type>
    <source>GetKeyBindingsImpl</source>
    <description>Encountered an ArgumentException when trying to look up the key binding information for ({1e198c22-5980-4e7e-92f3-f73168d1fb63},512) in the scope {5efc7975-14bc-11cf-9b2b-00aa00573819}.</description>
  </entry>
  <entry>
    <record>3538</record>
    <time>2025/01/12 07:37:34.700</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>3539</record>
    <time>2025/01/12 07:37:34.839</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>3540</record>
    <time>2025/01/12 07:37:36.216</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>3541</record>
    <time>2025/01/12 07:37:36.489</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileSystemPackage]</description>
    <guid>{AC2BF811-80A4-4FA9-A405-21EC39316782}</guid>
  </entry>
  <entry>
    <record>3542</record>
    <time>2025/01/12 07:37:36.621</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UnifiedSettingsPackage]</description>
    <guid>{CB9107B5-6429-4C8A-B20B-1258255E59D0}</guid>
  </entry>
  <entry>
    <record>3543</record>
    <time>2025/01/12 07:37:36.723</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileSystemPackage]</description>
    <guid>{AC2BF811-80A4-4FA9-A405-21EC39316782}</guid>
  </entry>
  <entry>
    <record>3544</record>
    <time>2025/01/12 07:37:36.910</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>3545</record>
    <time>2025/01/12 07:37:37.398</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[WriteCache]: Start ForceRebuild=False CacheExists=True</description>
  </entry>
  <entry>
    <record>3546</record>
    <time>2025/01/12 07:37:37.977</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[WriteCache]: End</description>
  </entry>
  <entry>
    <record>3547</record>
    <time>2025/01/12 07:37:38.142</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>3548</record>
    <time>2025/01/12 07:37:38.161</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>3549</record>
    <time>2025/01/12 07:37:38.165</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3550</record>
    <time>2025/01/12 07:37:38.178</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3551</record>
    <time>2025/01/12 07:37:38.768</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeatureRegistryPackage]</description>
    <guid>{D4C6B5F0-210D-4BFB-8C08-086F78C0B907}</guid>
  </entry>
  <entry>
    <record>3552</record>
    <time>2025/01/12 07:37:38.772</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dynamically generated rule for conditional feature {27a2baad-4bb1-4ae5-b72c-bbff54ae9e28}&apos; for UI context 27a2baad-4bb1-4ae5-b72c-bbff54ae9e28.</description>
  </entry>
  <entry>
    <record>3553</record>
    <time>2025/01/12 07:37:38.772</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dynamically generated rule for conditional feature {737236a8-daaf-4404-b2eb-73fe2317062e}&apos; for UI context 737236a8-daaf-4404-b2eb-73fe2317062e.</description>
  </entry>
  <entry>
    <record>3554</record>
    <time>2025/01/12 07:37:38.772</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dynamically generated rule for conditional feature {e3dce4e2-7057-4206-a700-214e05c33743}&apos; for UI context e3dce4e2-7057-4206-a700-214e05c33743.</description>
  </entry>
  <entry>
    <record>3555</record>
    <time>2025/01/12 07:37:38.772</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeatureRegistryPackage]</description>
    <guid>{D4C6B5F0-210D-4BFB-8C08-086F78C0B907}</guid>
  </entry>
  <entry>
    <record>3556</record>
    <time>2025/01/12 07:37:38.788</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>3557</record>
    <time>2025/01/12 07:37:38.839</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>3558</record>
    <time>2025/01/12 07:37:38.904</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]</description>
    <guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid>
  </entry>
  <entry>
    <record>3559</record>
    <time>2025/01/12 07:37:38.991</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3560</record>
    <time>2025/01/12 07:37:39.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3561</record>
    <time>2025/01/12 07:37:39.105</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Debugger]</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
  </entry>
  <entry>
    <record>3562</record>
    <time>2025/01/12 07:37:39.105</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Packages\Debugger\*\VSDebugUI.dll</path>
  </entry>
  <entry>
    <record>3563</record>
    <time>2025/01/12 07:37:39.194</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Debugger]</description>
    <guid>{C9DD4A57-47FB-11D2-83E7-00C04F9902C1}</guid>
  </entry>
  <entry>
    <record>3564</record>
    <time>2025/01/12 07:37:39.198</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3565</record>
    <time>2025/01/12 07:37:39.226</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3566</record>
    <time>2025/01/12 07:37:39.703</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RestPackage]</description>
    <guid>{70A33EE9-3617-487C-A918-66212BC6B2EC}</guid>
  </entry>
  <entry>
    <record>3567</record>
    <time>2025/01/12 07:37:39.789</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RestPackage]</description>
    <guid>{70A33EE9-3617-487C-A918-66212BC6B2EC}</guid>
  </entry>
  <entry>
    <record>3568</record>
    <time>2025/01/12 07:37:39.813</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SQL Language Services Package]</description>
    <guid>{ED19932F-5443-4587-A005-1CB9158B2F64}</guid>
  </entry>
  <entry>
    <record>3569</record>
    <time>2025/01/12 07:37:42.634</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SQL Language Services Package]</description>
    <guid>{ED19932F-5443-4587-A005-1CB9158B2F64}</guid>
  </entry>
  <entry>
    <record>3570</record>
    <time>2025/01/12 07:37:43.139</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3571</record>
    <time>2025/01/12 07:37:43.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3572</record>
    <time>2025/01/12 07:37:43.444</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3573</record>
    <time>2025/01/12 07:37:43.447</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3574</record>
    <time>2025/01/12 07:37:43.464</time>
    <type>Warning</type>
    <source>XamlLanguagePackage</source>
    <description>About to block on async service creation because &apos;Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.XamlFileInformationService&apos; was requested via GetService. This has the potential to deadlock. Async initializing services should be retrieved via GetServiceAsync.</description>
  </entry>
  <entry>
    <record>3575</record>
    <time>2025/01/12 07:37:43.465</time>
    <type>Warning</type>
    <source>XamlLanguagePackage</source>
    <description>About to block on async service creation because &apos;Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.Metadata.IProjectMetadataService&apos; was requested via GetService. This has the potential to deadlock. Async initializing services should be retrieved via GetServiceAsync.</description>
  </entry>
  <entry>
    <record>3576</record>
    <time>2025/01/12 07:37:44.683</time>
    <type>Warning</type>
    <source>XamlLanguagePackage</source>
    <description>About to block on async service creation because &apos;Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.Metadata.Extensibility.IDesignAssemblyMetadataManagerFactory&apos; was requested via GetService. This has the potential to deadlock. Async initializing services should be retrieved via GetServiceAsync.</description>
  </entry>
  <entry>
    <record>3577</record>
    <time>2025/01/12 07:37:44.774</time>
    <type>Warning</type>
    <source>XamlLanguagePackage</source>
    <description>About to block on async service creation because &apos;Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.ResourceResolver.IXamlResourceService&apos; was requested via GetService. This has the potential to deadlock. Async initializing services should be retrieved via GetServiceAsync.</description>
  </entry>
  <entry>
    <record>3578</record>
    <time>2025/01/12 07:37:44.787</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3579</record>
    <time>2025/01/12 07:37:44.789</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3580</record>
    <time>2025/01/12 07:37:44.817</time>
    <type>Warning</type>
    <source>XamlLanguagePackage</source>
    <description>About to block on async service creation because &apos;Microsoft.VisualStudio.DesignTools.Xaml.LanguageService.IXamlIntelliCodeService&apos; was requested via GetService. This has the potential to deadlock. Async initializing services should be retrieved via GetServiceAsync.</description>
  </entry>
  <entry>
    <record>3581</record>
    <time>2025/01/12 07:37:45.001</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio XML Editor Package]</description>
    <guid>{87569308-4813-40A0-9CD0-D7A30838CA3F}</guid>
  </entry>
  <entry>
    <record>3582</record>
    <time>2025/01/12 07:37:45.262</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Visual Studio XML Editor Package]Source: &apos;Microsoft.XmlEditor&apos; Description: Object reference not set to an instance of an object.&#x000D;&#x000A;System.NullReferenceException: Object reference not set to an instance of an object.&#x000D;&#x000A;   at Microsoft.XmlEditor.MyAppId.AppId..ctor(IServiceProvider sp)&#x000D;&#x000A;   at Microsoft.XmlEditor.Package.Initialize()&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)</description>
    <guid>{87569308-4813-40A0-9CD0-D7A30838CA3F}</guid>
    <hr>0x80004003 - E_POINTER</hr>
    <errorinfo></errorinfo>
  </entry>
  <entry>
    <record>3583</record>
    <time>2025/01/12 07:37:45.305</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio XML Editor Package]</description>
    <guid>{87569308-4813-40A0-9CD0-D7A30838CA3F}</guid>
  </entry>
  <entry>
    <record>3584</record>
    <time>2025/01/12 07:37:45.336</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Visual Studio XML Editor Package]Source: &apos;Microsoft.XmlEditor&apos; Description: Object reference not set to an instance of an object.&#x000D;&#x000A;System.NullReferenceException: Object reference not set to an instance of an object.&#x000D;&#x000A;   at Microsoft.XmlEditor.MyAppId.AppId..ctor(IServiceProvider sp)&#x000D;&#x000A;   at Microsoft.XmlEditor.Package.Initialize()&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Package.Microsoft.VisualStudio.Shell.Interop.IVsPackage.SetSite(IServiceProvider sp)</description>
    <guid>{87569308-4813-40A0-9CD0-D7A30838CA3F}</guid>
    <hr>0x80004003 - E_POINTER</hr>
    <errorinfo></errorinfo>
  </entry>
</activity>
