Created
September 9, 2023 15:25
-
-
Save hsdk123/9f6eb768e55331bb457e05ce39d9bfab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-16"?> | |
<?xml-stylesheet type="text/xsl" href="#stylesheet"?> | |
<activity> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="stylesheet" xml:id="stylesheet"> | |
<xsl:output method="html" encoding="utf-16"/> | |
<!-- Don't reprint text nodes within the xsl:stylesheet node --> | |
<xsl:template match="text()"/> | |
<xsl:template match="activity"> | |
<head> | |
<title>Activity Monitor Log</title> | |
<style type="text/css"> | |
body{ text-align: left; width: 100%; font-family: Verdana, sans-serif; } | |
table{ border: none; border-collapse: separate; width: 100%; } | |
tr.title td{ font-size: 24px; font-weight: bold; } | |
th{ background: #d0d0d0; font-weight: bold; font-size: 10pt; text-align: left; } | |
tr{ background: #eeeeee} | |
td, th{ font-size: 8pt; padding: 1px; border: none; } | |
tr.info td{} | |
tr.warning td{background-color:#FFF4CE;color:black} | |
tr.error td{background-color:#FDE7E9;color:black} | |
<!-- Make sure descriptions, which often contain call stacks, are formatted with their newlines intact --> | |
#description {white-space:pre-wrap} | |
span {text-decoration:underline} | |
a:hover{text-transform:uppercase;color: #9090F0;} | |
</style> | |
</head> | |
<body> | |
<table> | |
<tr class="title"> | |
<td colspan="7">Activity Monitor Log</td> | |
</tr> | |
<tr> | |
<td colspan="2">infos</td> | |
<td colspan="5"> | |
<xsl:value-of select="count(entry[type='Information'])"/> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="2">warnings</td> | |
<td colspan="5"> | |
<xsl:value-of select="count(entry[type='Warning'])"/> | |
</td> | |
</tr> | |
<tr> | |
<td colspan="2">errors</td> | |
<td colspan="5"> | |
<xsl:value-of select="count(entry[type='Error'])"/> | |
</td> | |
</tr> | |
<tr> | |
<th width="20">#</th> | |
<th width="50">Type</th> | |
<th>Description</th> | |
<th width="280">GUID</th> | |
<th>Hr</th> | |
<th>Source</th> | |
<th>Time (UTC)</th> | |
</tr> | |
<xsl:apply-templates/> | |
</table> | |
</body> | |
</xsl:template> | |
<xsl:template match="entry"> | |
<!-- example | |
<entry> | |
<record>136</record> | |
<time>2004/02/26 00:42:59.706</time> | |
<type>Error</type> | |
<source>Microsoft Visual Studio</source> | |
<description>Loading UI library</description> | |
<guid>{00000000-0000-0000-0000-000000000000}</guid> | |
<hr>800a006f</hr> | |
<path></path> | |
</entry> | |
--> | |
<xsl:choose> | |
<xsl:when test="type='Information'"> | |
<tr id="info" class="info"> | |
<td> | |
<xsl:value-of select="record"/> | |
</td> | |
<td></td> | |
<xsl:call-template name="row"/> | |
</tr> | |
</xsl:when> | |
<xsl:when test="type='Warning'"> | |
<tr id="warning" class="warning"> | |
<td> | |
<xsl:value-of select="record"/> | |
</td> | |
<td>Warning</td> | |
<xsl:call-template name="row"/> | |
</tr> | |
</xsl:when> | |
<xsl:when test="type='Error'"> | |
<tr id="error" class="error"> | |
<td> | |
<xsl:value-of select="record"/> | |
</td> | |
<td>ERROR</td> | |
<xsl:call-template name="row"/> | |
</tr> | |
</xsl:when> | |
</xsl:choose> | |
</xsl:template> | |
<xsl:template name="row"> | |
<td id="description"> | |
<xsl:value-of select="description"/> | |
<xsl:if test="path"> | |
<br/>          <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/09/09 15:21:49.349</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Microsoft Visual Studio 2022 version: 17.0.33801.368</description> | |
</entry> | |
<entry> | |
<record>2</record> | |
<time>2023/09/09 15:21:49.349</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Log ID</description> | |
<guid>{5964DCB5-8CF4-4B58-927F-823537B74508}</guid> | |
</entry> | |
<entry> | |
<record>3</record> | |
<time>2023/09/09 15:21:49.349</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Running in isolation mode.</description> | |
</entry> | |
<entry> | |
<record>4</record> | |
<time>2023/09/09 15:21:49.356</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/09/09 15:21:49.356</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Creating PkgDefCacheNonVolatile</description> | |
</entry> | |
<entry> | |
<record>6</record> | |
<time>2023/09/09 15:21:49.356</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>PkgDefCache flags</description> | |
<hr>0x00013801</hr> | |
</entry> | |
<entry> | |
<record>7</record> | |
<time>2023/09/09 15:21:49.357</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Double-checking master pkgdef file</description> | |
</entry> | |
<entry> | |
<record>8</record> | |
<time>2023/09/09 15:21:49.357</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>PkgDefManagement initialized</description> | |
</entry> | |
<entry> | |
<record>9</record> | |
<time>2023/09/09 15:21:49.357</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/09/09 15:21:49.357</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>ShellFolder</description> | |
<path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path> | |
</entry> | |
<entry> | |
<record>23</record> | |
<time>2023/09/09 15:21:49.483</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>CPkgDefCacheNonVolatileBase: PkgDef cache creation failed. Going volatile and trying again.</description> | |
<hr>0x8000ffff - E_UNEXPECTED</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>935</record> | |
<time>2023/09/09 15:21:51.469</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>937</record> | |
<time>2023/09/09 15:21:51.486</time> | |
<type>Error</type> | |
<source>PreviewFeaturesPane</source> | |
<description>Failed to load package string with id c78ca057-cc29-421f-ad6d-3b0943debdfc and resource id #5001</description> | |
</entry> | |
<entry> | |
<record>946</record> | |
<time>2023/09/09 15:21:51.926</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Loading UI library</description> | |
<guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid> | |
<hr>0x800a006f</hr> | |
<errorinfo>Object reference not set to an instance of an object.</errorinfo> | |
</entry> | |
<entry> | |
<record>947</record> | |
<time>2023/09/09 15:21:51.926</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>949</record> | |
<time>2023/09/09 15:21:51.965</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Failed to find CTMENU resource '#1000' in loaded UI library.</description> | |
</entry> | |
<entry> | |
<record>1721</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: Common7\IDE\VC\vcprojects\Extensibility\Visual Studio Integration Package.vsz, order: 1605</description> | |
</entry> | |
<entry> | |
<record>1722</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalApplication, order: 1900</description> | |
</entry> | |
<entry> | |
<record>1723</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalDll, order: 1901</description> | |
</entry> | |
<entry> | |
<record>1724</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalStaticLibrary, order: 1902</description> | |
</entry> | |
<entry> | |
<record>1725</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.WinUSBUniversalApplication, order: 1903</description> | |
</entry> | |
<entry> | |
<record>1726</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.FilesystemFilter, order: 1904</description> | |
</entry> | |
<entry> | |
<record>1727</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.KMDFUSB, order: 1905</description> | |
</entry> | |
<entry> | |
<record>1728</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.NDISFilter, order: 1906</description> | |
</entry> | |
<entry> | |
<record>1729</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.UMDFV2USB, order: 1907</description> | |
</entry> | |
<entry> | |
<record>1730</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.DriverInstallPackage, order: 1908</description> | |
</entry> | |
<entry> | |
<record>1731</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.WinUSBINFPackage, order: 1909</description> | |
</entry> | |
<entry> | |
<record>1732</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.KMDF, order: 1910</description> | |
</entry> | |
<entry> | |
<record>1733</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.KMDFEmpty, order: 1911</description> | |
</entry> | |
<entry> | |
<record>1734</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.UMDFV2, order: 1912</description> | |
</entry> | |
<entry> | |
<record>1735</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.UMDFV2Empty, order: 1913</description> | |
</entry> | |
<entry> | |
<record>1736</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.WDMDriverEmpty, order: 1914</description> | |
</entry> | |
<entry> | |
<record>1737</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.PrinterDriverV4, order: 1915</description> | |
</entry> | |
<entry> | |
<record>1738</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.CSharp.Driver.PrinterDriverV4PropertyBag, order: 1916</description> | |
</entry> | |
<entry> | |
<record>1739</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.PrinterXPSRender, order: 1917</description> | |
</entry> | |
<entry> | |
<record>1740</record> | |
<time>2023/09/09 15:21:57.486</time> | |
<type>Information</type> | |
<source>Project Template Metadata</source> | |
<description>Overriding project template: microsoft.Cpp.Driver.PrinterDriverInstallPackage, order: 1918</description> | |
</entry> | |
<entry> | |
<record>1741</record> | |
<time>2023/09/09 15:21:57.561</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{DD1683A7-5A4C-4234-81B3-A4CC91DBEAC9} LANG:0409 ID:108
</description> | |
</entry> | |
<entry> | |
<record>1742</record> | |
<time>2023/09/09 15:21:59.354</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{FD8EE466-E18C-45FC-B1A1-CA0DC1EC67FB} (OptionsPagePackage) LANG:0409 ID:0
</description> | |
</entry> | |
<entry> | |
<record>1743</record> | |
<time>2023/09/09 15:21:59.355</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{FD8EE466-E18C-45FC-B1A1-CA0DC1EC67FB} (OptionsPagePackage) LANG:0409 ID:0
</description> | |
</entry> | |
<entry> | |
<record>1744</record> | |
<time>2023/09/09 15:21:59.357</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{237BDE42-2754-4B15-ADBD-0B6CECE84300} (IntelliCodePackage) LANG:0409 ID:211
</description> | |
</entry> | |
<entry> | |
<record>1745</record> | |
<time>2023/09/09 15:21:59.364</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{15021976-647E-4876-9040-2507AFDE45D2} (QtVsToolsPackage) LANG:0409 ID:0
</description> | |
</entry> | |
<entry> | |
<record>1746</record> | |
<time>2023/09/09 15:21:59.364</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{15021976-647E-4876-9040-2507AFDE45D2} (QtVsToolsPackage) LANG:0409 ID:0
</description> | |
</entry> | |
<entry> | |
<record>1747</record> | |
<time>2023/09/09 15:21:59.365</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{15021976-647E-4876-9040-2507AFDE45D2} (QtVsToolsPackage) LANG:0409 ID:0
</description> | |
</entry> | |
<entry> | |
<record>1748</record> | |
<time>2023/09/09 15:21:59.389</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Performance warning: String load failed. Pkg:{00000000-0000-0000-0000-000000000000} LANG:0409 ID:1004
</description> | |
</entry> | |
<entry> | |
<record>1749</record> | |
<time>2023/09/09 15:21:59.512</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Begin package load [Visual Studio Common IDE Package]</description> | |
<guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid> | |
</entry> | |
<entry> | |
<record>1750</record> | |
<time>2023/09/09 15:21:59.518</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>End package load [Visual Studio Common IDE Package]</description> | |
<guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid> | |
</entry> | |
<entry> | |
<record>1751</record> | |
<time>2023/09/09 15:21:59.520</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Begin package load [SetupCompositionPackage]</description> | |
<guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid> | |
</entry> | |
<entry> | |
<record>1752</record> | |
<time>2023/09/09 15:21:59.536</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Begin package load [FileChangePackage]</description> | |
<guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid> | |
</entry> | |
<entry> | |
<record>1753</record> | |
<time>2023/09/09 15:21:59.538</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>End package load [FileChangePackage]</description> | |
<guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid> | |
</entry> | |
<entry> | |
<record>1754</record> | |
<time>2023/09/09 15:21:59.585</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>End package load [SetupCompositionPackage]</description> | |
<guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid> | |
</entry> | |
<entry> | |
<record>1755</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1756</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1757</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1758</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1759</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1760</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1761</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;CMake]: Tag appended: CMake</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\console.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1762</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1763</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1764</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1765</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1766</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1767</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;CMake]: Tag appended: CMake</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\gui.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1768</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\designer.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1769</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\designer.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1770</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\designer.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1771</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\designer.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1772</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\designer.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1773</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\empty.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1774</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\empty.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1775</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\empty.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1776</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\empty.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1777</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1778</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1779</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1780</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1781</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1782</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1783</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1784</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;CMake]: Tag appended: CMake</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\lib.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1785</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1786</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;QML]: Tag appended: QML</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1787</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1788</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1789</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1790</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1791</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1792</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;CMake]: Tag appended: CMake</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\quick.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1793</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [LanguageTag;Cpp]: Tag appended: Cpp</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\server.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1794</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\server.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1795</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Qt]: Tag appended: Qt</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\server.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1796</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\server.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1797</record> | |
<time>2023/09/09 15:21:59.604</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description> | |
<path>C:\USERS\DAEGO\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_787693F6\EXTENSIONS\AWK12DOK.JKH\ProjectTemplates\templateManifest1.1033.vstman\server.vstemplate</path> | |
</entry> | |
<entry> | |
<record>1798</record> | |
<time>2023/09/09 15:21:59.841</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Error in Template (), wrong template type. Template may be placed into the wrong folder.</description> | |
</entry> | |
<entry> | |
<record>1799</record> | |
<time>2023/09/09 15:21:59.841</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Error in Template (), wrong template type. Template may be placed into the wrong folder.</description> | |
</entry> | |
<entry> | |
<record>1800</record> | |
<time>2023/09/09 15:21:59.843</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>One or more templates do not match any installed project packages.</description> | |
</entry> | |
<entry> | |
<record>1801</record> | |
<time>2023/09/09 15:22:00.010</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>End package load [SearchPackage]</description> | |
<guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid> | |
</entry> | |
<entry> | |
<record>1802</record> | |
<time>2023/09/09 15:22:00.036</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>1803</record> | |
<time>2023/09/09 15:22:00.074</time> | |
<type>Error</type> | |
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source> | |
<description>A MEF Component threw an exception at runtime: Microsoft.VisualStudio.Composition.CompositionFailedException: An exception was thrown while initializing part "DMS.GLSL.VsLogger.VsLogger". ---> System.MissingMethodException: Method not found: 'Microsoft.VisualStudio.Threading.JoinableTaskFactory Microsoft.VisualStudio.Shell.ThreadHelper.get_JoinableTaskFactory()'.
 at DMS.GLSL.VsLogger.VsOutput.WindowPane(String message)
 at DMS.GLSL.VsLogger.VsLogger.Log(String message, Boolean highPriority) in C:\projects\glsl\GLSL_Shared\VsLogger\VsLogger.cs:line 44
 --- End of inner exception stack trace ---
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)</description> | |
</entry> | |
<entry> | |
<record>1804</record> | |
<time>2023/09/09 15:22:00.080</time> | |
<type>Error</type> | |
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source> | |
<description>A MEF Component threw an exception at runtime: Microsoft.VisualStudio.Composition.CompositionFailedException: An exception was thrown while initializing part "DMS.GLSL.VsLogger.VsLogger". ---> System.MissingMethodException: Method not found: 'Microsoft.VisualStudio.Threading.JoinableTaskFactory Microsoft.VisualStudio.Shell.ThreadHelper.get_JoinableTaskFactory()'.
 at DMS.GLSL.VsLogger.VsOutput.WindowPane(String message)
 at DMS.GLSL.VsLogger.VsLogger.Log(String message, Boolean highPriority) in C:\projects\glsl\GLSL_Shared\VsLogger\VsLogger.cs:line 44
 --- End of inner exception stack trace ---
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, Boolean lazy, PartLifecycleTracker& partLifecycle)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__11_0(RuntimeImport import)
 at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
 at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
 at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)</description> | |
</entry> | |
<entry> | |
<record>1805</record> | |
<time>2023/09/09 15:22:00.083</time> | |
<type>Error</type> | |
<source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source> | |
<description>A MEF Component threw an exception at runtime: Microsoft.VisualStudio.Composition.CompositionFailedException: An exception was thrown while initializing part "DMS.GLSL.VsLogger.VsLogger". ---> System.MissingMethodException: Method not found: 'Microsoft.VisualStudio.Threading.JoinableTaskFactory Microsoft.VisualStudio.Shell.ThreadHelper.get_JoinableTaskFactory()'.
 at DMS.GLSL.VsLogger.VsOutput.WindowPane(String message)
 at DMS.GLSL.VsLogger.VsLogger.Log(String message, Boolean highPriority) in C:\projects\glsl\GLSL_Shared\VsLogger\VsLogger.cs:line 44
 --- End of inner exception stack trace ---
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, Boolean lazy, PartLifecycleTracker& partLifecycle)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__11_0(RuntimeImport import)
 at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
 at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
 at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, Boolean lazy, PartLifecycleTracker& partLifecycle)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportElement(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import, RuntimeExport export, Func`3 lazyFactory)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.GetValueForImportSite(RuntimePartLifecycleTracker importingPartTracker, RuntimeImport import)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.<CreateValue>b__11_0(RuntimeImport import)
 at System.Linq.Enumerable.WhereSelectArrayIterator`2.MoveNext()
 at System.Linq.Buffer`1..ctor(IEnumerable`1 source)
 at System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source)
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.RuntimePartLifecycleTracker.CreateValue()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.Create()
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveNext(PartLifecycleState nextState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.MoveToState(PartLifecycleState requiredState)
 at Microsoft.VisualStudio.Composition.ExportProvider.PartLifecycleTracker.GetValueReadyToExpose()
 at Microsoft.VisualStudio.Composition.RuntimeExportProviderFactory.RuntimeExportProvider.ConstructExportedValue(RuntimeImport import, RuntimeExport export, RuntimePartLifecycleTracker importingPartTracker, PartLifecycleTracker partLifecycle, ReportFaultCallback faultCallback)</description> | |
</entry> | |
<entry> | |
<record>1806</record> | |
<time>2023/09/09 15:22:00.095</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: '(null)' Description: Unspecified error

</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
<hr>0x80004003 - E_POINTER</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>1807</record> | |
<time>2023/09/09 15:22:00.098</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {E3322D66-3F09-4C6E-8C87-27D416C6ACF6}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1808</record> | |
<time>2023/09/09 15:22:00.101</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Failed to refresh cache for cacheable fonts & colors category {E3322D66-3F09-4C6E-8C87-27D416C6ACF6}</description> | |
</entry> | |
<entry> | |
<record>1809</record> | |
<time>2023/09/09 15:22:00.101</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>1810</record> | |
<time>2023/09/09 15:22:00.103</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: '(null)' Description: Unspecified error

</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
<hr>0x80131509</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>1811</record> | |
<time>2023/09/09 15:22:00.106</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {E3322D66-3F09-4C6E-8C87-27D416C6ACF6}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1812</record> | |
<time>2023/09/09 15:22:00.106</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>1813</record> | |
<time>2023/09/09 15:22:00.107</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: '(null)' Description: Unspecified error

</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
<hr>0x80131509</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>1814</record> | |
<time>2023/09/09 15:22:00.110</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {24908F31-6647-42B7-BEE5-556C73736824}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1815</record> | |
<time>2023/09/09 15:22:00.113</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Failed to refresh cache for cacheable fonts & colors category {24908F31-6647-42B7-BEE5-556C73736824}</description> | |
</entry> | |
<entry> | |
<record>1816</record> | |
<time>2023/09/09 15:22:00.113</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>1817</record> | |
<time>2023/09/09 15:22:00.114</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: '(null)' Description: Unspecified error

</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
<hr>0x80131509</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>1818</record> | |
<time>2023/09/09 15:22:00.117</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {24908F31-6647-42B7-BEE5-556C73736824}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1819</record> | |
<time>2023/09/09 15:22:00.118</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>1820</record> | |
<time>2023/09/09 15:22:00.119</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [Microsoft.VisualStudio.Editor.Implementation.EditorPackage]Source: '(null)' Description: Unspecified error

</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
<hr>0x80131509</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
<entry> | |
<record>1821</record> | |
<time>2023/09/09 15:22:00.128</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {D8D69480-3814-4468-9A5A-104934C9D470}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1822</record> | |
<time>2023/09/09 15:22:00.130</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Failed to refresh cache for cacheable fonts & colors category {D8D69480-3814-4468-9A5A-104934C9D470}</description> | |
</entry> | |
<entry> | |
<record>1823</record> | |
<time>2023/09/09 15:22:00.130</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Load failure limit prevents package from attempting to load</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
</entry> | |
<entry> | |
<record>1824</record> | |
<time>2023/09/09 15:22:00.131</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {D8D69480-3814-4468-9A5A-104934C9D470}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1825</record> | |
<time>2023/09/09 15:22:00.131</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Load failure limit prevents package from attempting to load</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
</entry> | |
<entry> | |
<record>1826</record> | |
<time>2023/09/09 15:22:00.131</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {6FFEE80D-673F-42AE-B15C-BA24A2CAF080}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1827</record> | |
<time>2023/09/09 15:22:00.133</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>Failed to refresh cache for cacheable fonts & colors category {6FFEE80D-673F-42AE-B15C-BA24A2CAF080}</description> | |
</entry> | |
<entry> | |
<record>1828</record> | |
<time>2023/09/09 15:22:00.133</time> | |
<type>Warning</type> | |
<source>VisualStudio</source> | |
<description>Load failure limit prevents package from attempting to load</description> | |
<guid>{E269B994-EF71-4CE0-8BCD-581C217372E8}</guid> | |
</entry> | |
<entry> | |
<record>1829</record> | |
<time>2023/09/09 15:22:00.133</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>QueryService failed to load fonts & colors category {6FFEE80D-673F-42AE-B15C-BA24A2CAF080}. Is the service registered correctly?</description> | |
</entry> | |
<entry> | |
<record>1830</record> | |
<time>2023/09/09 15:22:00.133</time> | |
<type>Information</type> | |
<source>VisualStudio</source> | |
<description>Begin package load [EmbeddedPackage]</description> | |
<guid>{CCFC100E-C8FD-4F9D-ABE1-ABB3F2240048}</guid> | |
</entry> | |
<entry> | |
<record>1831</record> | |
<time>2023/09/09 15:22:00.164</time> | |
<type>Error</type> | |
<source>VisualStudio</source> | |
<description>SetSite failed for package [EmbeddedPackage]Source: 'Microsoft.VisualStudio.Composition' Description: Expected 1 export(s) with contract name "Microsoft.VisualStudio.LiveShare.IStandaloneDebuggerServiceFactory" but found 0 after applying applicable constraints.
Microsoft.VisualStudio.Composition.CompositionFailedException: Expected 1 export(s) with contract name "Microsoft.VisualStudio.LiveShare.IStandaloneDebuggerServiceFactory" but found 0 after applying applicable constraints.
 at Microsoft.VisualStudio.Composition.ExportProvider.GetExports(ImportDefinition importDefinition)
 at Microsoft.VisualStudio.Composition.ExportProvider.GetExports[T,TMetadataView](String contractName, ImportCardinality cardinality)
 at Microsoft.VisualStudio.Composition.ExportProvider.GetExport[T,TMetadataView](String contractName)
 at Microsoft.VisualStudio.Composition.ExportProvider.GetExportedValue[T]()
 at Microsoft.VisualStudio.ComponentModelHost.ComponentModel.GetService[T]()
 at Microsoft.VisualStudio.Embedded.DebugManager.<InitializeAsync>d__17.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
 at Microsoft.VisualStudio.Embedded.EmbeddedPackage.<InitializeAsync>d__9.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
 at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
 at Microsoft.VisualStudio.Shell.AsyncPackage.<>c__DisplayClass21_0.<<Microsoft-VisualStudio-Shell-Interop-IAsyncLoadablePackageInitialize-Initialize>b__1>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
 at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
 at Microsoft.VisualStudio.Services.VsTask.RethrowException(AggregateException e)
 at Microsoft.VisualStudio.Services.VsTask.InternalGetResult(Boolean ignoreUIThreadCheck)</description> | |
<guid>{CCFC100E-C8FD-4F9D-ABE1-ABB3F2240048}</guid> | |
<hr>0x80131500</hr> | |
<errorinfo></errorinfo> | |
</entry> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment