CosmosOS / Cosmos

Cosmos is an operating system "construction kit". Build your own OS using managed languages such as C#, VB.NET, and more!
https://www.goCosmos.org
BSD 3-Clause "New" or "Revised" License
2.94k stars 551 forks source link

System.Exception on Create #2584

Open MarcTho8 opened 1 year ago

MarcTho8 commented 1 year ago

Have you checked Github Issues for similar errors? Yep, there is none.

Exception Post the exception returned by Visual Studio System.Exception

Visual Studio Output Logs Post the entire output log given by Visual Studio for the build It makes the comment too long How To Reproduce Describe any changes done to a clean kernel for this error to occur. On vs2022: Create a project (or, atleast try to)

Screenshots If applicable, add screenshots to help explain your problem. image

Context Before posting please confirm that the following are in order [Y] Both Cosmos VS Extensions are installed

image

[?] In the NuGet Package Manager "Include prerelease" is selected

[Y] The Cosmos NuGet package store is selected (NOT nuget.org) in 'Manage NuGet Packages'

image

[?] The Cosmos NuGet packages are installed

image

Add any other context about the problem which might be helpful.

quajak commented 1 year ago

Can you see if VS generated any kind of log file with more details?

MarcTho8 commented 1 year ago

It generates a activity log, should i upload it?

quajak commented 1 year ago

Yes please

MarcTho8 commented 1 year ago
<?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/02/22 02:13:04.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.33213.231</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2023/02/22 02:13:04.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{4EF783F4-0980-4349-AE04-9E5F895E8B78}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2023/02/22 02:13:04.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2023/02/22 02:13:04.621</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/02/22 02:13:04.622</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2023/02/22 02:13:04.622</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2023/02/22 02:13:04.638</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2023/02/22 02:13:04.638</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2023/02/22 02:13:04.638</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/02/22 02:13:04.638</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>1400</record>
    <time>2023/02/22 02:13:08.127</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>1410</record>
    <time>2023/02/22 02:13:08.287</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>1411</record>
    <time>2023/02/22 02:13:08.287</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>1412</record>
    <time>2023/02/22 02:13:08.639</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>1413</record>
    <time>2023/02/22 02:13:08.639</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>1415</record>
    <time>2023/02/22 02:13:08.661</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>1416</record>
    <time>2023/02/22 02:13:08.670</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>1417</record>
    <time>2023/02/22 02:13:08.670</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>1418</record>
    <time>2023/02/22 02:13:08.690</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>1419</record>
    <time>2023/02/22 02:13:08.690</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1917</record>
    <time>2023/02/22 02:13:10.881</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>1918</record>
    <time>2023/02/22 02:13:10.881</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>1919</record>
    <time>2023/02/22 02:13:10.881</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>1920</record>
    <time>2023/02/22 02:13:10.881</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>1921</record>
    <time>2023/02/22 02:13:10.881</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>1922</record>
    <time>2023/02/22 02:13:10.881</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>1959</record>
    <time>2023/02/22 02:13:14.897</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template parsing failed to load localized string resource #10007 from package {F1C25864-3097-11D2-A5C5-00C04F7968B4}</description>
  </entry>
  <entry>
    <record>2505</record>
    <time>2023/02/22 02:13:16.722</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\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>2506</record>
    <time>2023/02/22 02:13:16.722</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;csharp]: Tag appended: csharp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2507</record>
    <time>2023/02/22 02:13:16.722</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\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2508</record>
    <time>2023/02/22 02:13:16.722</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\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2509</record>
    <time>2023/02/22 02:13:16.722</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\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2510</record>
    <time>2023/02/22 02:13:16.722</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\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2511</record>
    <time>2023/02/22 02:13:16.722</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;service]: Tag appended: service</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\WorkerTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>2512</record>
    <time>2023/02/22 02:13:16.723</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\ProjectTemplates\CSharp\1033\SharedProject\SharedProject.vstemplate&quot; and &quot;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\CSharp\Windows\1033\SharedProject\SharedProject.vstemplate&quot;</description>
  </entry>
  <entry>
    <record>2513</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;querylanguage]: Tag appended: querylanguage</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2514</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2515</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2516</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2517</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2518</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;querylanguage]: Tag appended: querylanguage</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAProject.vstemplate</path>
  </entry>
  <entry>
    <record>2519</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAProject.vstemplate</path>
  </entry>
  <entry>
    <record>2520</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAProject.vstemplate</path>
  </entry>
  <entry>
    <record>2521</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAProject.vstemplate</path>
  </entry>
  <entry>
    <record>2522</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAProject.vstemplate</path>
  </entry>
  <entry>
    <record>2523</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;csharp]: Tag appended: csharp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAUDFProject.vstemplate</path>
  </entry>
  <entry>
    <record>2524</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAUDFProject.vstemplate</path>
  </entry>
  <entry>
    <record>2525</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAUDFProject.vstemplate</path>
  </entry>
  <entry>
    <record>2526</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAUDFProject.vstemplate</path>
  </entry>
  <entry>
    <record>2527</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAUDFProject.vstemplate</path>
  </entry>
  <entry>
    <record>2528</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;csharp]: Tag appended: csharp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASACustomDeserializerProject.vstemplate</path>
  </entry>
  <entry>
    <record>2529</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASACustomDeserializerProject.vstemplate</path>
  </entry>
  <entry>
    <record>2530</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASACustomDeserializerProject.vstemplate</path>
  </entry>
  <entry>
    <record>2531</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASACustomDeserializerProject.vstemplate</path>
  </entry>
  <entry>
    <record>2532</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASACustomDeserializerProject.vstemplate</path>
  </entry>
  <entry>
    <record>2533</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;querylanguage]: Tag appended: querylanguage</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2534</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2535</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2536</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2537</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeEmptyProject.vstemplate</path>
  </entry>
  <entry>
    <record>2538</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;querylanguage]: Tag appended: querylanguage</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeProject.vstemplate</path>
  </entry>
  <entry>
    <record>2539</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeProject.vstemplate</path>
  </entry>
  <entry>
    <record>2540</record>
    <time>2023/02/22 02:13:16.739</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\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeProject.vstemplate</path>
  </entry>
  <entry>
    <record>2541</record>
    <time>2023/02/22 02:13:16.739</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\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeProject.vstemplate</path>
  </entry>
  <entry>
    <record>2542</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Stream Analytics]: Tag appended: Stream Analytics</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman\ASAEdgeProject.vstemplate</path>
  </entry>
  <entry>
    <record>2543</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.DocumentDBReaderSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2544</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.DocumentDBWriterSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2545</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.EventHubReaderSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2546</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.EventHubWriterSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2547</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.HBaseReaderSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2548</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.HBaseWriterSampleApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2549</record>
    <time>2023/02/22 02:13:16.739</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\ADL TOOLS\2.6.5000.0\ProjectTemplates\templateManifest1.noloc.vstman). Invalid template element (TemplateID) value (Microsoft.Azure.HDInsight.Storm.SqlAzureWriterStormApplicationTemplate).</description>
  </entry>
  <entry>
    <record>2550</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;csharp]: Tag appended: csharp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\CSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2551</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Bare Metal]: Tag appended: Bare Metal</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\CSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2552</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cosmos]: Tag appended: Cosmos</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\CSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2553</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;fsharp]: Tag appended: fsharp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\FSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2554</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Bare Metal]: Tag appended: Bare Metal</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\FSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2555</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cosmos]: Tag appended: Cosmos</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\FSharpProject.vstemplate</path>
  </entry>
  <entry>
    <record>2556</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;visualbasic]: Tag appended: visualbasic</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\VisualBasicProject.vstemplate</path>
  </entry>
  <entry>
    <record>2557</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Bare Metal]: Tag appended: Bare Metal</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\VisualBasicProject.vstemplate</path>
  </entry>
  <entry>
    <record>2558</record>
    <time>2023/02/22 02:13:16.746</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cosmos]: Tag appended: Cosmos</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\Cosmos\ProjectSystem\ProjectTemplates\templateManifest0.noloc.vstman\VisualBasicProject.vstemplate</path>
  </entry>
  <entry>
    <record>2559</record>
    <time>2023/02/22 02:13:16.915</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>2560</record>
    <time>2023/02/22 02:13:16.916</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>2561</record>
    <time>2023/02/22 02:13:16.916</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>2562</record>
    <time>2023/02/22 02:13:16.961</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>2563</record>
    <time>2023/02/22 02:13:16.962</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>2564</record>
    <time>2023/02/22 02:13:16.962</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>2565</record>
    <time>2023/02/22 02:13:16.963</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>2566</record>
    <time>2023/02/22 02:13:16.965</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>2567</record>
    <time>2023/02/22 02:13:16.966</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>2568</record>
    <time>2023/02/22 02:13:16.966</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>2569</record>
    <time>2023/02/22 02:13:17.192</time>
    <type>Information</type>
    <source>AggregateTemplatePackageProvider.FinalizePackages</source>
    <description>Templates to install: C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.common.itemtemplates.7.0.102.nupkg,C:\Program Files\dotnet\templates\6.0.11\microsoft.dotnet.common.projecttemplates.6.0.6.0.302.nupkg,C:\Program Files\dotnet\templates\6.0.11\microsoft.dotnet.test.projecttemplates.6.0.1.0.2-beta4.22503.2.nupkg,C:\Program Files\dotnet\templates\6.0.11\microsoft.dotnet.web.itemtemplates.6.0.6.0.11.nupkg,C:\Program Files\dotnet\templates\6.0.11\microsoft.dotnet.web.projecttemplates.6.0.6.0.11.nupkg,C:\Program Files\dotnet\templates\6.0.11\microsoft.dotnet.web.spa.projecttemplates.6.0.6.0.11.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.winforms.projecttemplates.7.0.2-servicing.22606.8.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.wpf.projecttemplates.7.0.2-servicing.22606.2.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.common.projecttemplates.7.0.7.0.102.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.test.projecttemplates.7.0.1.0.2-beta4.22503.2.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.web.itemtemplates.7.0.7.0.2.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.web.projecttemplates.7.0.7.0.2.nupkg,C:\Program Files\dotnet\templates\7.0.2\microsoft.dotnet.web.spa.projecttemplates.7.0.7.0.2.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.CSharp.17.4.7.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.VisualBasic.17.4.7.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\templateengine\Microsoft.VisualStudio.TemplateEngine.FallbackHostData.17.4.326.nupkg</description>
  </entry>
  <entry>
    <record>2570</record>
    <time>2023/02/22 02:13:18.197</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>2571</record>
    <time>2023/02/22 02:13:18.231</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>2572</record>
    <time>2023/02/22 02:13:18.255</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>2573</record>
    <time>2023/02/22 02:13:18.258</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>2574</record>
    <time>2023/02/22 02:13:18.258</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>2575</record>
    <time>2023/02/22 02:13:18.259</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>2576</record>
    <time>2023/02/22 02:13:18.320</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>2577</record>
    <time>2023/02/22 02:13:18.322</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>2578</record>
    <time>2023/02/22 02:13:18.336</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>2579</record>
    <time>2023/02/22 02:13:18.341</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>2580</record>
    <time>2023/02/22 02:13:18.345</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>2581</record>
    <time>2023/02/22 02:13:18.345</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [HQLPackagePackage]</description>
    <guid>{E4147000-7310-422F-A7C1-4266AF76C974}</guid>
  </entry>
  <entry>
    <record>2582</record>
    <time>2023/02/22 02:13:18.349</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [HQLPackagePackage]</description>
    <guid>{E4147000-7310-422F-A7C1-4266AF76C974}</guid>
  </entry>
  <entry>
    <record>2583</record>
    <time>2023/02/22 02:13:18.356</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>2584</record>
    <time>2023/02/22 02:13:18.356</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>2585</record>
    <time>2023/02/22 02:13:18.379</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>2586</record>
    <time>2023/02/22 02:13:18.379</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>2587</record>
    <time>2023/02/22 02:13:18.382</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>2588</record>
    <time>2023/02/22 02:13:18.456</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>2589</record>
    <time>2023/02/22 02:13:18.772</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>2590</record>
    <time>2023/02/22 02:13:18.825</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [StreamAnalyticsLanaguageServicePackage]</description>
    <guid>{DB748D03-3EC0-43AC-8FB4-152EAFB65F96}</guid>
  </entry>
  <entry>
    <record>2591</record>
    <time>2023/02/22 02:13:18.831</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [StreamAnalyticsLanaguageServicePackage]</description>
    <guid>{DB748D03-3EC0-43AC-8FB4-152EAFB65F96}</guid>
  </entry>
  <entry>
    <record>2592</record>
    <time>2023/02/22 02:13:18.835</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>2593</record>
    <time>2023/02/22 02:13:18.841</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>2594</record>
    <time>2023/02/22 02:13:18.862</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>2595</record>
    <time>2023/02/22 02:13:18.862</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>2596</record>
    <time>2023/02/22 02:13:18.865</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>2597</record>
    <time>2023/02/22 02:13:18.865</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>2598</record>
    <time>2023/02/22 02:13:18.994</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>2599</record>
    <time>2023/02/22 02:13:18.996</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>2600</record>
    <time>2023/02/22 02:13:18.997</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>2601</record>
    <time>2023/02/22 02:13:18.997</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>2602</record>
    <time>2023/02/22 02:13:18.998</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>2603</record>
    <time>2023/02/22 02:13:19.011</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>2604</record>
    <time>2023/02/22 02:13:19.026</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>
quajak commented 1 year ago

The error does not seem to be related to be Cosmos and caused by "Visual Studio XML Editor Package"

MarcTho8 commented 1 year ago

Well any other project works.

The error does not seem to be related to be Cosmos and caused by "Visual Studio XML Editor Package"

quajak commented 1 year ago

From the logs you provided, it is impossible to determine the issue. Can you see if any other logs were created? Alternatively, you can use the devkit and the IDE.sln to start the VS extension in debug mode to have a debugger attached when it crashes.

ecliipt commented 1 year ago

@MarcTho8 were you able to solve this issue? I'm also facing a problem like this