<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="#stylesheet"?>
<activity>
	<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="stylesheet" xml:id="stylesheet">
		<xsl:output method="html"  encoding="utf-16"/>
		<!-- Don't reprint text nodes within the xsl:stylesheet node -->
		<xsl:template match="text()"/>
		<xsl:template match="activity">
			<head>
				<title>Activity Monitor Log</title>
				<style type="text/css">
					body{ text-align: left; width: 100%;  font-family: Verdana, sans-serif; }

					table{ border: none;  border-collapse: separate;  width: 100%; }

					tr.title td{ font-size: 24px;  font-weight: bold; }

					th{ background: #d0d0d0;  font-weight: bold;  font-size: 10pt;  text-align: left; }
					tr{ background: #eeeeee}
					td, th{ font-size: 8pt;  padding: 1px;  border: none; }

					tr.info td{}
					tr.warning td{background-color:yellow;color:black}
					tr.error td{background-color:red;color:black}

					span {text-decoration:underline}
					a:hover{text-transform:uppercase;color: #9090F0;}
				</style>
			</head>

			<body>
				<table>
					<tr class="title">
						<td colspan="7">Activity Monitor Log</td>
					</tr>
					<tr>
						<td colspan="2">infos</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Information'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">warnings</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Warning'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">errors</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Error'])"/>
						</td>
					</tr>
					<tr>
						<th width="20">#</th>
						<th width="50">Type</th>
						<th>Description</th>
						<th width="280">GUID</th>
						<th>Hr</th>
						<th>Source</th>
						<th>Time (UTC)</th>
					</tr>
					<xsl:apply-templates/>
				</table>

			</body>
		</xsl:template>

		<xsl:template match="entry">
			<!-- example 

          <entry>
            <record>136</record>
            <time>2004/02/26 00:42:59.706</time>
            <type>Error</type>
            <source>Microsoft Visual Studio</source>
            <description>Loading UI library</description>
            <guid>{00000000-0000-0000-0000-000000000000}</guid>
            <hr>800a006f</hr>
            <path></path>
        </entry>

        -->
			<xsl:choose>

				<xsl:when test="type='Information'">
					<tr id="info" class="info">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td></td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Warning'">
					<tr id="warning" class="warning">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>Warning</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Error'">
					<tr id="error" class="error">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>ERROR</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

			</xsl:choose>

		</xsl:template>

		<xsl:template name="row">
			<td id="description">
				<xsl:value-of select="description"/>
				<xsl:if test="path">
					<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<xsl:value-of select="path"/>
				</xsl:if>
			</td>
			<td id="guid">
				<xsl:value-of select="guid"/>
			</td>
			<td id="hr">
				<xsl:value-of select="hr"/>
			</td>
			<td>
				<xsl:value-of select="source"/>
			</td>
			<td>
				<xsl:value-of select="time"/>
			</td>
		</xsl:template>

	</xsl:stylesheet>

  <entry>
    <record>1</record>
    <time>2023/04/04 19:35:47.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.33402.68</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2023/04/04 19:35:47.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{F7D93602-3952-4866-8F2E-58FC0691F86A}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2023/04/04 19:35:47.737</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2023/04/04 19:35:47.740</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2023/04/04 19:35:47.741</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2023/04/04 19:35:47.741</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2023/04/04 19:35:47.762</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2023/04/04 19:35:47.763</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2023/04/04 19:35:47.763</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2023/04/04 19:35:47.763</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>1654</record>
    <time>2023/04/04 19:35:50.302</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>1661</record>
    <time>2023/04/04 19:35:50.445</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{94FD8BFF-40F1-4EF2-8771-E6BFB05FCB18}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Cannot find the requested resource: 'Commands.ctmenu'.</errorinfo>
  </entry>
  <entry>
    <record>1662</record>
    <time>2023/04/04 19:35:50.445</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package Microsoft.Publish.Framework.VisualStudio.PublishPackage, Microsoft.Publish.Framework. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1663</record>
    <time>2023/04/04 19:35:50.631</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{FBE2D754-387C-4F14-9C6E-7C786C0751BB}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Cannot find the requested resource: 'Menus.ctmenu'.</errorinfo>
  </entry>
  <entry>
    <record>1664</record>
    <time>2023/04/04 19:35:50.631</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package MsixProjectExtensionsPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1665</record>
    <time>2023/04/04 19:35:50.855</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Cannot find the requested resource: 'Menus.ctmenu'.</errorinfo>
  </entry>
  <entry>
    <record>1666</record>
    <time>2023/04/04 19:35:50.856</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>1668</record>
    <time>2023/04/04 19:35:50.885</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>1669</record>
    <time>2023/04/04 19:35:50.891</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C78CA057-CC29-421F-AD6D-3B0943DEBDFC}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Cannot find the requested resource: '1'.</errorinfo>
  </entry>
  <entry>
    <record>1670</record>
    <time>2023/04/04 19:35:50.891</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>1671</record>
    <time>2023/04/04 19:35:50.906</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Cannot find the requested resource: 'VSMenus.ctmenu'.</errorinfo>
  </entry>
  <entry>
    <record>1672</record>
    <time>2023/04/04 19:35:50.907</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>2231</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2232</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2233</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2234</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2235</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2236</record>
    <time>2023/04/04 19:35:52.965</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2240</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2243</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2244</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2245</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2246</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>2247</record>
    <time>2023/04/04 19:35:52.966</time>
    <type>Error</type>
    <source>Extension Manager</source>
    <description>Unable to load extension at: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\. Exception text: Microsoft.VisualStudio.ExtensionManager.InvalidExtensionManifestException: The extension manifest file must be named &apos;extension.vsixmanifest&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ExtensionImpl..ctor(String path)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.InstalledExtensionImpl..ctor(String vsixManifestPath, IEngineHost engineHost, Boolean installedPerMachine, CultureInfo preferredCulture, IList`1 extensionPackVsixIds, IList`1 packageGuids)&#x000D;&#x000A;   at Microsoft.VisualStudio.ExtensionManager.ScanModule.TryLoadExtension(ExtensionLocations location, String fullPath, String normalizedPath, InstalledExtensionImpl&amp; installedExtension, Int32 retryCount, Int32 retryDelay, Int32 attempts).</description>
  </entry>
  <entry>
    <record>3007</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3008</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3009</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3010</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3011</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3012</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3013</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3014</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3015</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3016</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3017</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3018</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3019</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3020</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3021</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3022</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3023</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3024</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3025</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3026</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3027</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3028</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3029</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3030</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3031</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3032</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3033</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3034</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3035</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3036</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3037</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3038</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3039</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3040</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3041</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3042</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3043</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3044</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3045</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3046</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3047</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3048</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3049</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3050</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3051</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3052</record>
    <time>2023/04/04 19:36:00.977</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3053</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3054</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3055</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3056</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3057</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3058</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3059</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3060</record>
    <time>2023/04/04 19:36:00.978</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3061</record>
    <time>2023/04/04 19:36:01.114</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>3062</record>
    <time>2023/04/04 19:36:01.114</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>3063</record>
    <time>2023/04/04 19:36:01.115</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>3064</record>
    <time>2023/04/04 19:36:01.116</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>3065</record>
    <time>2023/04/04 19:36:01.117</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>3066</record>
    <time>2023/04/04 19:36:01.117</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>3067</record>
    <time>2023/04/04 19:36:01.118</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>3068</record>
    <time>2023/04/04 19:36:01.128</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>3069</record>
    <time>2023/04/04 19:36:01.129</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>3070</record>
    <time>2023/04/04 19:36:01.129</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>3071</record>
    <time>2023/04/04 19:36:01.552</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\7.0.3\microsoft.dotnet.common.itemtemplates.7.0.103.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.0.2-beta4.22503.2.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\7.0.3\microsoft.dotnet.winforms.projecttemplates.7.0.3-servicing.23072.1.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.wpf.projecttemplates.7.0.3-servicing.23073.1.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.0.2-beta4.22503.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.13\microsoft.dotnet.common.projecttemplates.6.0.6.0.302.nupkg,C:\Program Files\dotnet\templates\6.0.13\microsoft.dotnet.test.projecttemplates.6.0.1.0.2-beta4.22503.2.nupkg,C:\Program Files\dotnet\templates\6.0.13\microsoft.dotnet.web.itemtemplates.6.0.6.0.13.nupkg,C:\Program Files\dotnet\templates\6.0.13\microsoft.dotnet.web.projecttemplates.6.0.6.0.13.nupkg,C:\Program Files\dotnet\templates\6.0.13\microsoft.dotnet.web.spa.projecttemplates.6.0.6.0.13.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.common.projecttemplates.7.0.7.0.103.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.test.projecttemplates.7.0.1.0.2-beta4.22503.2.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.web.itemtemplates.7.0.7.0.3.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.web.projecttemplates.7.0.7.0.3.nupkg,C:\Program Files\dotnet\templates\7.0.3\microsoft.dotnet.web.spa.projecttemplates.7.0.7.0.3.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\templateengine\Microsoft.VisualStudio.TemplateEngine.FallbackHostData.17.4.337.nupkg</description>
  </entry>
  <entry>
    <record>3072</record>
    <time>2023/04/04 19:36:02.931</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>3073</record>
    <time>2023/04/04 19:36:02.956</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>3074</record>
    <time>2023/04/04 19:36:02.981</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>3075</record>
    <time>2023/04/04 19:36:02.983</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>3076</record>
    <time>2023/04/04 19:36:02.983</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Managed RunningDocumentTable Package]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3077</record>
    <time>2023/04/04 19:36:02.984</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Managed RunningDocumentTable Package]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3078</record>
    <time>2023/04/04 19:36:03.034</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Task Status Center]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>3079</record>
    <time>2023/04/04 19:36:03.037</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Task Status Center]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>3080</record>
    <time>2023/04/04 19:36:03.047</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>3081</record>
    <time>2023/04/04 19:36:03.055</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3082</record>
    <time>2023/04/04 19:36:03.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3083</record>
    <time>2023/04/04 19:36:03.060</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>3084</record>
    <time>2023/04/04 19:36:03.060</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>3085</record>
    <time>2023/04/04 19:36:03.081</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>3086</record>
    <time>2023/04/04 19:36:03.082</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3087</record>
    <time>2023/04/04 19:36:03.085</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3088</record>
    <time>2023/04/04 19:36:03.155</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>3089</record>
    <time>2023/04/04 19:36:03.424</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>3090</record>
    <time>2023/04/04 19:36:03.472</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3091</record>
    <time>2023/04/04 19:36:03.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3092</record>
    <time>2023/04/04 19:36:03.508</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3093</record>
    <time>2023/04/04 19:36:03.509</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3094</record>
    <time>2023/04/04 19:36:03.513</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>3095</record>
    <time>2023/04/04 19:36:03.513</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>3096</record>
    <time>2023/04/04 19:36:03.736</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>3097</record>
    <time>2023/04/04 19:36:03.739</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>3098</record>
    <time>2023/04/04 19:36:03.741</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3099</record>
    <time>2023/04/04 19:36:03.741</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3100</record>
    <time>2023/04/04 19:36:03.744</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>3101</record>
    <time>2023/04/04 19:36:03.758</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>3102</record>
    <time>2023/04/04 19:36:03.776</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>3103</record>
    <time>2023/04/04 19:36:03.778</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>3104</record>
    <time>2023/04/04 19:36:03.783</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>3105</record>
    <time>2023/04/04 19:36:03.895</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.TestTools.TestCaseManagement.QualityToolsPackage]</description>
    <guid>{A9405AE6-9AC6-4F0E-A03F-7AFE45F6FCB7}</guid>
  </entry>
  <entry>
    <record>3106</record>
    <time>2023/04/04 19:36:03.946</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>SetSite failed for package [Microsoft.VisualStudio.TestTools.TestCaseManagement.QualityToolsPackage]Source: &apos;Microsoft.VisualStudio.QualityTools.Vsip&apos; Description: Failed to get service EnvDTE._DTE.&#x000D;&#x000A;</description>
    <guid>{A9405AE6-9AC6-4F0E-A03F-7AFE45F6FCB7}</guid>
    <hr>0x80131500</hr>
    <errorinfo></errorinfo>
  </entry>
</activity>
