<?xml version="1.0" encoding="utf-16"?>
<?xml-stylesheet type="text/xsl" href="#stylesheet"?>
<activity>
	<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" id="stylesheet" xml:id="stylesheet">
		<xsl:output method="html"  encoding="utf-16"/>
		<!-- Don't reprint text nodes within the xsl:stylesheet node -->
		<xsl:template match="text()"/>
		<xsl:template match="activity">
			<head>
				<title>Activity Monitor Log</title>
				<style type="text/css">
					body{ text-align: left; width: 100%;  font-family: Verdana, sans-serif; }

					table{ border: none;  border-collapse: separate;  width: 100%; }

					tr.title td{ font-size: 24px;  font-weight: bold; }

					th{ background: #d0d0d0;  font-weight: bold;  font-size: 10pt;  text-align: left; }
					tr{ background: #eeeeee}
					td, th{ font-size: 8pt;  padding: 1px;  border: none; }

					tr.info td{}
					tr.warning td{background-color:#FFF4CE;color:black}
					tr.error td{background-color:#FDE7E9;color:black}

					<!-- Make sure descriptions, which often contain call stacks, are formatted with their newlines intact -->
					#description {white-space:pre-wrap}

					span {text-decoration:underline}
					a:hover{text-transform:uppercase;color: #9090F0;}
				</style>
			</head>

			<body>
				<table>
					<tr class="title">
						<td colspan="7">Activity Monitor Log</td>
					</tr>
					<tr>
						<td colspan="2">infos</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Information'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">warnings</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Warning'])"/>
						</td>
					</tr>
					<tr>
						<td colspan="2">errors</td>
						<td colspan="5">
							<xsl:value-of select="count(entry[type='Error'])"/>
						</td>
					</tr>
					<tr>
						<th width="20">#</th>
						<th width="50">Type</th>
						<th>Description</th>
						<th width="280">GUID</th>
						<th>Hr</th>
						<th>Source</th>
						<th>Time (UTC)</th>
					</tr>
					<xsl:apply-templates/>
				</table>

			</body>
		</xsl:template>

		<xsl:template match="entry">
			<!-- example 

          <entry>
            <record>136</record>
            <time>2004/02/26 00:42:59.706</time>
            <type>Error</type>
            <source>Microsoft Visual Studio</source>
            <description>Loading UI library</description>
            <guid>{00000000-0000-0000-0000-000000000000}</guid>
            <hr>800a006f</hr>
            <path></path>
        </entry>

        -->
			<xsl:choose>

				<xsl:when test="type='Information'">
					<tr id="info" class="info">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td></td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Warning'">
					<tr id="warning" class="warning">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>Warning</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

				<xsl:when test="type='Error'">
					<tr id="error" class="error">
						<td>
							<xsl:value-of select="record"/>
						</td>
						<td>ERROR</td>
						<xsl:call-template name="row"/>
					</tr>
				</xsl:when>

			</xsl:choose>

		</xsl:template>

		<xsl:template name="row">
			<td id="description">
				<xsl:value-of select="description"/>
				<xsl:if test="path">
					<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<xsl:value-of select="path"/>
				</xsl:if>
			</td>
			<td id="guid">
				<xsl:value-of select="guid"/>
			</td>
			<td id="hr">
				<xsl:value-of select="hr"/>
			</td>
			<td>
				<xsl:value-of select="source"/>
			</td>
			<td>
				<xsl:value-of select="time"/>
			</td>
		</xsl:template>

	</xsl:stylesheet>

  <entry>
    <record>1</record>
    <time>2025/12/04 15:38:09.609</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2022 version: 17.0.36713.2</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2025/12/04 15:38:09.609</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{6502F9A3-217A-4E57-BF7E-9423B0A78A16}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2025/12/04 15:38:09.610</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2025/12/04 15:38:09.615</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2025/12/04 15:38:09.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2025/12/04 15:38:09.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013901</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2025/12/04 15:38:09.655</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\</path>
  </entry>
  <entry>
    <record>11</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.admin.pkgdef</path>
  </entry>
  <entry>
    <record>12</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ImageManifestSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions;C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions</path>
  </entry>
  <entry>
    <record>13</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ApplicationExtensionsFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>14</record>
    <time>2025/12/04 15:38:09.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>&quot;ZeroImpact&quot; = dword:0, &quot;MergeRegistry&quot; = dword:3</description>
  </entry>
  <entry>
    <record>15</record>
    <time>2025/12/04 15:38:09.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: forcing refresh because the PKGDEFMANAGEMENT_FORCECACHEREFRESH flag was present.</description>
  </entry>
  <entry>
    <record>16</record>
    <time>2025/12/04 15:38:09.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement: PkgDef cache fast check returned false; cache will be regenerated.</description>
  </entry>
  <entry>
    <record>17</record>
    <time>2025/12/04 15:38:09.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Searching for PkgDefs from search path</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.admin.pkgdef</path>
  </entry>
  <entry>
    <record>18</record>
    <time>2025/12/04 15:38:09.668</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>User extensions enabled by setting</description>
    <path>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a\ExtensionManager\EnableAdminExtensions</path>
  </entry>
  <entry>
    <record>19</record>
    <time>2025/12/04 15:38:11.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Missing folder or file during PkgDef scan</description>
    <hr>0x80030002</hr>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.admin.pkgdef</path>
  </entry>
  <entry>
    <record>20</record>
    <time>2025/12/04 15:38:11.398</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Discovered 570 PkgDef files</description>
  </entry>
  <entry>
    <record>21</record>
    <time>2025/12/04 15:38:11.398</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>User extensions enabled by setting</description>
    <path>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a\ExtensionManager\EnableAdminExtensions</path>
  </entry>
  <entry>
    <record>22</record>
    <time>2025/12/04 15:38:11.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: forcing refresh because the PKGDEFMANAGEMENT_FORCECACHEREFRESH flag was present.</description>
  </entry>
  <entry>
    <record>23</record>
    <time>2025/12/04 15:38:11.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>CPkgDefCacheNonVolatileBase: PkgDef cache is out of date.</description>
  </entry>
  <entry>
    <record>24</record>
    <time>2025/12/04 15:38:11.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Initializing non-volatile pkgdef cache</description>
  </entry>
  <entry>
    <record>25</record>
    <time>2025/12/04 15:38:11.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>InitializeCache: Deleting configuration if it exists</description>
  </entry>
  <entry>
    <record>26</record>
    <time>2025/12/04 15:38:12.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>InitializeCache: Deleting abandoned volatile cache</description>
  </entry>
  <entry>
    <record>27</record>
    <time>2025/12/04 15:38:12.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>InitializeCache: Pre initializing cache</description>
  </entry>
  <entry>
    <record>28</record>
    <time>2025/12/04 15:38:12.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>InitializeCache: Importing config package defs</description>
  </entry>
  <entry>
    <record>29</record>
    <time>2025/12/04 15:38:12.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading discovered pkgdef files</description>
  </entry>
  <entry>
    <record>30</record>
    <time>2025/12/04 15:38:13.401</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\master.pkgdef</path>
  </entry>
  <entry>
    <record>31</record>
    <time>2025/12/04 15:38:13.401</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dsltexttemplatingregistry_x86.pkgdef</path>
  </entry>
  <entry>
    <record>32</record>
    <time>2025/12/04 15:38:13.408</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dsltexttemplating_fileassoc_sxs.pkgdef</path>
  </entry>
  <entry>
    <record>33</record>
    <time>2025/12/04 15:38:13.409</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\tlbinf32_reg_vs_5752.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>34</record>
    <time>2025/12/04 15:38:13.410</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\1fqd54kc.sl4\microsoft.windows.msix.visualstudio.projectextensions.dev17.pkgdef</path>
  </entry>
  <entry>
    <record>35</record>
    <time>2025/12/04 15:38:13.412</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\dockervsdbgintegration.pkgdef</path>
  </entry>
  <entry>
    <record>36</record>
    <time>2025/12/04 15:38:13.414</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\microsoft.visualstudio.docker.compose.pkgdef</path>
  </entry>
  <entry>
    <record>37</record>
    <time>2025/12/04 15:38:13.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\microsoft.visualstudio.docker.dotnetcore.pkgdef</path>
  </entry>
  <entry>
    <record>38</record>
    <time>2025/12/04 15:38:13.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\microsoft.visualstudio.docker.dotnetframework.pkgdef</path>
  </entry>
  <entry>
    <record>39</record>
    <time>2025/12/04 15:38:13.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\microsoft.visualstudio.docker.languageservice.pkgdef</path>
  </entry>
  <entry>
    <record>40</record>
    <time>2025/12/04 15:38:13.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\3gwd1xjz.iph\microsoft.visualstudio.docker.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>41</record>
    <time>2025/12/04 15:38:13.430</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\5azeavgy.ezz\roslyn.sdk.pkgdef</path>
  </entry>
  <entry>
    <record>42</record>
    <time>2025/12/04 15:38:13.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\5azeavgy.ezz\roslyn.syntaxvisualizer.extension.pkgdef</path>
  </entry>
  <entry>
    <record>43</record>
    <time>2025/12/04 15:38:13.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\aicebs0b.seq\microsoft.visualstudio.package.nodejs.x64.pkgdef</path>
  </entry>
  <entry>
    <record>44</record>
    <time>2025/12/04 15:38:13.435</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\core_ide_vs7_registration_1693.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>45</record>
    <time>2025/12/04 15:38:13.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\devenv_exe_4776_____x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>46</record>
    <time>2025/12/04 15:38:13.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\msenv.devenv.pkgdef</path>
  </entry>
  <entry>
    <record>47</record>
    <time>2025/12/04 15:38:13.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\msm_registry_entries_1241.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>48</record>
    <time>2025/12/04 15:38:13.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\vs_advt_reg_entries_5950.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>49</record>
    <time>2025/12/04 15:38:13.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\vs_common_dir_reg_entries_1871.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>50</record>
    <time>2025/12/04 15:38:13.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\vs_root_folder_reg_entries_1872.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>51</record>
    <time>2025/12/04 15:38:13.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\application\vs_shell_installedkey_enu.pkgdef</path>
  </entry>
  <entry>
    <record>52</record>
    <time>2025/12/04 15:38:13.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\awf3ales.uod\windowsappsdk.cpp.extension.dev17.pkgdef</path>
  </entry>
  <entry>
    <record>53</record>
    <time>2025/12/04 15:38:13.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\b4uz2h3d.f32\vsintegration.pkgdef</path>
  </entry>
  <entry>
    <record>54</record>
    <time>2025/12/04 15:38:13.459</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\c1fdqost.uo1\microsoft.windows.cppwinrt.dev17.pkgdef</path>
  </entry>
  <entry>
    <record>55</record>
    <time>2025/12/04 15:38:13.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\callhierarchy_registration.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>56</record>
    <time>2025/12/04 15:38:13.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\codesharing_shproj_ext_reg_appid_visualstudio.pkgdef</path>
  </entry>
  <entry>
    <record>57</record>
    <time>2025/12/04 15:38:13.463</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\compsvcspkg_reg___vs_9402.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>58</record>
    <time>2025/12/04 15:38:13.477</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\c_msdia.dll.pkgdef</path>
  </entry>
  <entry>
    <record>59</record>
    <time>2025/12/04 15:38:13.478</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\dbg_jscr_expreval_6471.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>60</record>
    <time>2025/12/04 15:38:13.480</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\dirproj_reg_common_10256.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>61</record>
    <time>2025/12/04 15:38:13.481</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\dir_proj_reg_for_vs_3599.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>62</record>
    <time>2025/12/04 15:38:13.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\html_editor_reg_for_vs_4090.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>63</record>
    <time>2025/12/04 15:38:13.485</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\metricspackage.vrg.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>64</record>
    <time>2025/12/04 15:38:13.488</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\microsoft.visualstudio.servicemodel.package.4c65c01a_f05d_4a4b_b387_f33eea8fedbf.pkgdef</path>
  </entry>
  <entry>
    <record>65</record>
    <time>2025/12/04 15:38:13.491</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\mssccihostactive.rgi_41972.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>66</record>
    <time>2025/12/04 15:38:13.491</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\msvb7_registration_for_vb_3609.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>67</record>
    <time>2025/12/04 15:38:13.495</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\msvb7_snippets_registration_39641.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>68</record>
    <time>2025/12/04 15:38:13.497</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\pro_sku_license_key_7238.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>69</record>
    <time>2025/12/04 15:38:13.498</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\pseudofolders_reg_8676.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>70</record>
    <time>2025/12/04 15:38:13.500</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\publish_dll_publishurldefault_reg_vs_x86_enu.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>71</record>
    <time>2025/12/04 15:38:13.501</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\publish_dll_reg_vs_x86_enu.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>72</record>
    <time>2025/12/04 15:38:13.504</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\razor_registry_component_x86.pkgdef</path>
  </entry>
  <entry>
    <record>73</record>
    <time>2025/12/04 15:38:13.505</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\resw_fileextension_registration.pkgdef</path>
  </entry>
  <entry>
    <record>74</record>
    <time>2025/12/04 15:38:13.505</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\sxs.msvseditors_reg_vs_27145.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>75</record>
    <time>2025/12/04 15:38:13.508</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb7to8dl_dll_reg_27312.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>76</record>
    <time>2025/12/04 15:38:13.510</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_debug_registration_x86.8e110d54_b611_4106_aa24_d1d63302a114.pkgdef</path>
  </entry>
  <entry>
    <record>77</record>
    <time>2025/12/04 15:38:13.510</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_install_dir_registry_entry_1882.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>78</record>
    <time>2025/12/04 15:38:13.511</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_project_package_745_____x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>79</record>
    <time>2025/12/04 15:38:13.512</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_project_reg_vs_26699.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>80</record>
    <time>2025/12/04 15:38:13.533</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_project_reg_vs_26699b.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>81</record>
    <time>2025/12/04 15:38:13.536</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vb_project_reg_vs_26704.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>82</record>
    <time>2025/12/04 15:38:13.537</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vcsharp_proj_system_reg_26672.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>83</record>
    <time>2025/12/04 15:38:13.538</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vcsh_dir_registry_entry_5156.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>84</record>
    <time>2025/12/04 15:38:13.538</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vcsh_langservice_reg_26668.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>85</record>
    <time>2025/12/04 15:38:13.541</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vsdtp.fidalgo_x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>86</record>
    <time>2025/12/04 15:38:13.559</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_community_root_folder_reg.pkgdef</path>
  </entry>
  <entry>
    <record>87</record>
    <time>2025/12/04 15:38:13.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_diagnostics_intellitraceshell_component.pkgdef</path>
  </entry>
  <entry>
    <record>88</record>
    <time>2025/12/04 15:38:13.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_intellitrace_collection_cab_registry.pkgdef</path>
  </entry>
  <entry>
    <record>89</record>
    <time>2025/12/04 15:38:13.561</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_projconv_dll_reg_vs__26716.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>90</record>
    <time>2025/12/04 15:38:13.572</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_root_folder_reg_entries_1872.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>91</record>
    <time>2025/12/04 15:38:13.573</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Setup\VS&apos; for value &apos;ProductDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_root_folder_reg_entries_1872.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>92</record>
    <time>2025/12/04 15:38:13.573</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_scc_emp_reg_for_vs_8486.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>93</record>
    <time>2025/12/04 15:38:13.574</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_scc_integration_core_registry_for_vs_3560.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>94</record>
    <time>2025/12/04 15:38:13.581</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_scc_teamcore_reg_for_vs_4694.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>95</record>
    <time>2025/12/04 15:38:13.584</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vs_yukon_sql_debugging_reg_16703.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>96</record>
    <time>2025/12/04 15:38:13.585</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\vwd_wap_upgrade_reg.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>97</record>
    <time>2025/12/04 15:38:13.588</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\webapplicationproject.pkgdef</path>
  </entry>
  <entry>
    <record>98</record>
    <time>2025/12/04 15:38:13.632</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\web_dir_prj_reg_for_vs_27100.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>99</record>
    <time>2025/12/04 15:38:13.637</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\community\wizard_framework_reg_vs_26706.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>100</record>
    <time>2025/12/04 15:38:13.642</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\cxmcuifo.jqe\boosttestpackage.pkgdef</path>
  </entry>
  <entry>
    <record>101</record>
    <time>2025/12/04 15:38:13.644</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.package.pkgdef</path>
  </entry>
  <entry>
    <record>102</record>
    <time>2025/12/04 15:38:13.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>103</record>
    <time>2025/12/04 15:38:13.646</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>104</record>
    <time>2025/12/04 15:38:13.646</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>105</record>
    <time>2025/12/04 15:38:13.647</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>106</record>
    <time>2025/12/04 15:38:13.647</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>107</record>
    <time>2025/12/04 15:38:13.647</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>108</record>
    <time>2025/12/04 15:38:13.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>109</record>
    <time>2025/12/04 15:38:13.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>110</record>
    <time>2025/12/04 15:38:13.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>111</record>
    <time>2025/12/04 15:38:13.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>112</record>
    <time>2025/12/04 15:38:13.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>113</record>
    <time>2025/12/04 15:38:13.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>114</record>
    <time>2025/12/04 15:38:13.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>115</record>
    <time>2025/12/04 15:38:13.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>116</record>
    <time>2025/12/04 15:38:13.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>117</record>
    <time>2025/12/04 15:38:13.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>118</record>
    <time>2025/12/04 15:38:13.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>119</record>
    <time>2025/12/04 15:38:13.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>120</record>
    <time>2025/12/04 15:38:13.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>121</record>
    <time>2025/12/04 15:38:13.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>122</record>
    <time>2025/12/04 15:38:13.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>123</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>124</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>125</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>126</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>127</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.pkgdef</path>
  </entry>
  <entry>
    <record>128</record>
    <time>2025/12/04 15:38:13.661</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\dldt0xyc.mmr\microsoft.visualstudio.wsldebugging.settings.pkgdef</path>
  </entry>
  <entry>
    <record>129</record>
    <time>2025/12/04 15:38:13.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\containervsdbgintegration.pkgdef</path>
  </entry>
  <entry>
    <record>130</record>
    <time>2025/12/04 15:38:13.670</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>131</record>
    <time>2025/12/04 15:38:13.682</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>132</record>
    <time>2025/12/04 15:38:13.682</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>133</record>
    <time>2025/12/04 15:38:13.684</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>134</record>
    <time>2025/12/04 15:38:13.684</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>135</record>
    <time>2025/12/04 15:38:13.685</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>136</record>
    <time>2025/12/04 15:38:13.685</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>137</record>
    <time>2025/12/04 15:38:13.687</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>138</record>
    <time>2025/12/04 15:38:13.687</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>139</record>
    <time>2025/12/04 15:38:13.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>140</record>
    <time>2025/12/04 15:38:13.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>141</record>
    <time>2025/12/04 15:38:13.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>142</record>
    <time>2025/12/04 15:38:13.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>143</record>
    <time>2025/12/04 15:38:13.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>144</record>
    <time>2025/12/04 15:38:13.690</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>145</record>
    <time>2025/12/04 15:38:13.690</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>146</record>
    <time>2025/12/04 15:38:13.690</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>147</record>
    <time>2025/12/04 15:38:13.690</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>148</record>
    <time>2025/12/04 15:38:13.690</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>149</record>
    <time>2025/12/04 15:38:13.691</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>150</record>
    <time>2025/12/04 15:38:13.691</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>151</record>
    <time>2025/12/04 15:38:13.691</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>152</record>
    <time>2025/12/04 15:38:13.691</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>153</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>154</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>155</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>156</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>157</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>158</record>
    <time>2025/12/04 15:38:13.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>159</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>160</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>161</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>162</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>163</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\fhvq2npo.j1k\microsoft.visualstudio.containers.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>164</record>
    <time>2025/12/04 15:38:13.694</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>165</record>
    <time>2025/12/04 15:38:13.700</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\IncrediBuild Extension&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>166</record>
    <time>2025/12/04 15:38:13.700</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\IncrediBuild Extension&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>167</record>
    <time>2025/12/04 15:38:13.702</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\IncrediBuild Extension&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>168</record>
    <time>2025/12/04 15:38:13.702</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\IncrediBuild Extension&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>169</record>
    <time>2025/12/04 15:38:13.704</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>170</record>
    <time>2025/12/04 15:38:13.704</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>171</record>
    <time>2025/12/04 15:38:13.704</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;Category&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>172</record>
    <time>2025/12/04 15:38:13.704</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;ToolsOptionsPath&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>173</record>
    <time>2025/12/04 15:38:13.704</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;Description&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>174</record>
    <time>2025/12/04 15:38:13.705</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\IncrediBuild_IncrediBuild Extension Settings&apos; for value &apos;VSSettingsMigration&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>175</record>
    <time>2025/12/04 15:38:13.705</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{36f01ae0-0288-4348-95a5-a5faf2c57684}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>176</record>
    <time>2025/12/04 15:38:13.706</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{36f01ae0-0288-4348-95a5-a5faf2c57684}&apos; for value &apos;Name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\incredibuildextension\incredibuildmenu2022.pkgdef</path>
  </entry>
  <entry>
    <record>177</record>
    <time>2025/12/04 15:38:13.706</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>178</record>
    <time>2025/12/04 15:38:13.712</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>179</record>
    <time>2025/12/04 15:38:13.713</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>180</record>
    <time>2025/12/04 15:38:13.713</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>181</record>
    <time>2025/12/04 15:38:13.713</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Container Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>182</record>
    <time>2025/12/04 15:38:13.714</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>183</record>
    <time>2025/12/04 15:38:13.715</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>184</record>
    <time>2025/12/04 15:38:13.715</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>185</record>
    <time>2025/12/04 15:38:13.715</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>186</record>
    <time>2025/12/04 15:38:13.715</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{7ADD7464-D37B-066C-D4CC-C58E9CF14CA2}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>187</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>188</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>189</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>190</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>191</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{422A4D01-7E71-E69B-ED99-C2C1830B95A9}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>192</record>
    <time>2025/12/04 15:38:13.716</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>193</record>
    <time>2025/12/04 15:38:13.717</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>194</record>
    <time>2025/12/04 15:38:13.717</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>195</record>
    <time>2025/12/04 15:38:13.717</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>196</record>
    <time>2025/12/04 15:38:13.717</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7291012-B4FB-3308-FD6E-9519FF456939}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>197</record>
    <time>2025/12/04 15:38:13.718</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>198</record>
    <time>2025/12/04 15:38:13.718</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>199</record>
    <time>2025/12/04 15:38:13.718</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>200</record>
    <time>2025/12/04 15:38:13.718</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>201</record>
    <time>2025/12/04 15:38:13.718</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{2EAA3513-0080-F197-82DE-826C44739DC8}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>202</record>
    <time>2025/12/04 15:38:13.721</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>203</record>
    <time>2025/12/04 15:38:13.721</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>204</record>
    <time>2025/12/04 15:38:13.721</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>205</record>
    <time>2025/12/04 15:38:13.721</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>206</record>
    <time>2025/12/04 15:38:13.722</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{0A945DFA-2179-0899-0867-444DD2128E50}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\jaz1sfdq.bjk\microsoft.visualstudio.containers.tools.extensions.package.pkgdef</path>
  </entry>
  <entry>
    <record>207</record>
    <time>2025/12/04 15:38:13.722</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\.netnative\.netnative.pkgdef</path>
  </entry>
  <entry>
    <record>208</record>
    <time>2025/12/04 15:38:13.728</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\appcat\microsoft.appcat.vs.pkgdef</path>
  </entry>
  <entry>
    <record>209</record>
    <time>2025/12/04 15:38:13.734</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\appinsights\core\aicolors.pkgdef</path>
  </entry>
  <entry>
    <record>210</record>
    <time>2025/12/04 15:38:13.738</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\appinsights\core\microsoft.visualstudio.applicationinsights.pkgdef</path>
  </entry>
  <entry>
    <record>211</record>
    <time>2025/12/04 15:38:13.759</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\codesense\framework\codesensecolors.pkgdef</path>
  </entry>
  <entry>
    <record>212</record>
    <time>2025/12/04 15:38:13.762</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\codesense\framework\codesenseframework.pkgdef</path>
  </entry>
  <entry>
    <record>213</record>
    <time>2025/12/04 15:38:13.771</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\connectedservices\microsoft.visualstudio.connectedservices.package2.pkgdef</path>
  </entry>
  <entry>
    <record>214</record>
    <time>2025/12/04 15:38:13.782</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\cookiecutter\microsoft.cookiecuttertools.pkgdef</path>
  </entry>
  <entry>
    <record>215</record>
    <time>2025/12/04 15:38:13.790</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\featureflags.pkgdef</path>
  </entry>
  <entry>
    <record>216</record>
    <time>2025/12/04 15:38:13.796</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\mefexportedbrokeredservices.pkgdef</path>
  </entry>
  <entry>
    <record>217</record>
    <time>2025/12/04 15:38:13.801</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.completions.package.pkgdef</path>
  </entry>
  <entry>
    <record>218</record>
    <time>2025/12/04 15:38:13.807</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.ui.pkgdef</path>
  </entry>
  <entry>
    <record>219</record>
    <time>2025/12/04 15:38:13.817</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>220</record>
    <time>2025/12/04 15:38:13.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\gitHubCopilot&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>221</record>
    <time>2025/12/04 15:38:13.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\gitHubCopilot&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>222</record>
    <time>2025/12/04 15:38:13.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\gitHubCopilot&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>223</record>
    <time>2025/12/04 15:38:13.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\gitHubCopilot&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>224</record>
    <time>2025/12/04 15:38:13.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\gitHubCopilot&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>225</record>
    <time>2025/12/04 15:38:13.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\gitHubCopilot&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>226</record>
    <time>2025/12/04 15:38:13.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\gitHubCopilot&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>227</record>
    <time>2025/12/04 15:38:13.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\gitHubCopilot&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>228</record>
    <time>2025/12/04 15:38:13.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>229</record>
    <time>2025/12/04 15:38:13.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>230</record>
    <time>2025/12/04 15:38:13.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>231</record>
    <time>2025/12/04 15:38:13.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>232</record>
    <time>2025/12/04 15:38:13.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>233</record>
    <time>2025/12/04 15:38:13.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{37ED5E71-08E0-C777-036E-17610927B154}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\microsoft.visualstudio.copilot.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>234</record>
    <time>2025/12/04 15:38:13.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\theme.pkgdef</path>
  </entry>
  <entry>
    <record>235</record>
    <time>2025/12/04 15:38:13.868</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\conversations.service\microsoft.visualstudio.copilot.service.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>236</record>
    <time>2025/12/04 15:38:13.882</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilotupgradeagent\microsoft.upgradeassistant.agents.vs.pkgdef</path>
  </entry>
  <entry>
    <record>237</record>
    <time>2025/12/04 15:38:13.892</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilotupgradeagent\servicehub\services\microsoft.upgradeassistant.agents.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>238</record>
    <time>2025/12/04 15:38:13.894</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\debugadapterhost\engineregistration.pkgdef</path>
  </entry>
  <entry>
    <record>239</record>
    <time>2025/12/04 15:38:13.896</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\debugadapterhost\microsoft.visualstudio.debugger.vscodedebuggerhost.pkgdef</path>
  </entry>
  <entry>
    <record>240</record>
    <time>2025/12/04 15:38:13.898</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\debugadapterhost\referenceassemblyregistration.pkgdef</path>
  </entry>
  <entry>
    <record>241</record>
    <time>2025/12/04 15:38:13.900</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\debuggerservices\microsoft.visualstudio.debugger.brokeredservices.pkgdef</path>
  </entry>
  <entry>
    <record>242</record>
    <time>2025/12/04 15:38:13.906</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\graphics\debugger\registereddefaultengines.pkgdef</path>
  </entry>
  <entry>
    <record>243</record>
    <time>2025/12/04 15:38:13.911</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\graphics\debugger\vsga_fileassoc.pkgdef</path>
  </entry>
  <entry>
    <record>244</record>
    <time>2025/12/04 15:38:13.912</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\graphics\debugger\vsgraphicsdebuggerpkg.pkgdef</path>
  </entry>
  <entry>
    <record>245</record>
    <time>2025/12/04 15:38:13.924</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\graphics\debugger\vsgraphicslaunchhookpkg.pkgdef</path>
  </entry>
  <entry>
    <record>246</record>
    <time>2025/12/04 15:38:13.927</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\intellicodecpp.pkgdef</path>
  </entry>
  <entry>
    <record>247</record>
    <time>2025/12/04 15:38:13.928</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\microsoft.visualstudio.intellicode.pkgdef</path>
  </entry>
  <entry>
    <record>248</record>
    <time>2025/12/04 15:38:13.935</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\IntelliCode&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\microsoft.visualstudio.intellicode.pkgdef</path>
  </entry>
  <entry>
    <record>249</record>
    <time>2025/12/04 15:38:13.935</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\IntelliCode&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\microsoft.visualstudio.intellicode.pkgdef</path>
  </entry>
  <entry>
    <record>250</record>
    <time>2025/12/04 15:38:13.936</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\IntelliCode&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\microsoft.visualstudio.intellicode.pkgdef</path>
  </entry>
  <entry>
    <record>251</record>
    <time>2025/12/04 15:38:13.936</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\IntelliCode&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode\microsoft.visualstudio.intellicode.pkgdef</path>
  </entry>
  <entry>
    <record>252</record>
    <time>2025/12/04 15:38:13.942</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\intellicode.csharp\microsoft.visualstudio.intellicode.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>253</record>
    <time>2025/12/04 15:38:13.950</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\javascript\microsoft.visualstudio.javascript.common.pkgdef</path>
  </entry>
  <entry>
    <record>254</record>
    <time>2025/12/04 15:38:13.950</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\javascript\microsoft.visualstudio.javascript.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>255</record>
    <time>2025/12/04 15:38:13.954</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.core.pkgdef</path>
  </entry>
  <entry>
    <record>256</record>
    <time>2025/12/04 15:38:13.964</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.daytona.pkgdef</path>
  </entry>
  <entry>
    <record>257</record>
    <time>2025/12/04 15:38:13.966</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.filesystemprovider.pkgdef</path>
  </entry>
  <entry>
    <record>258</record>
    <time>2025/12/04 15:38:13.970</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.toolwindow.ui.pkgdef</path>
  </entry>
  <entry>
    <record>259</record>
    <time>2025/12/04 15:38:13.972</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.ui.pkgdef</path>
  </entry>
  <entry>
    <record>260</record>
    <time>2025/12/04 15:38:13.975</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>261</record>
    <time>2025/12/04 15:38:13.982</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>262</record>
    <time>2025/12/04 15:38:13.982</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>263</record>
    <time>2025/12/04 15:38:13.982</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>264</record>
    <time>2025/12/04 15:38:13.983</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>265</record>
    <time>2025/12/04 15:38:13.983</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>266</record>
    <time>2025/12/04 15:38:13.983</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>267</record>
    <time>2025/12/04 15:38:13.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8F099241-ECA9-1336-9FFB-116A7CCB2708}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>268</record>
    <time>2025/12/04 15:38:13.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8F099241-ECA9-1336-9FFB-116A7CCB2708}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>269</record>
    <time>2025/12/04 15:38:13.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8F099241-ECA9-1336-9FFB-116A7CCB2708}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>270</record>
    <time>2025/12/04 15:38:13.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8F099241-ECA9-1336-9FFB-116A7CCB2708}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>271</record>
    <time>2025/12/04 15:38:13.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8F099241-ECA9-1336-9FFB-116A7CCB2708}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare\microsoft.visualstudio.liveshare.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>272</record>
    <time>2025/12/04 15:38:13.995</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\debuggerservice.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>273</record>
    <time>2025/12/04 15:38:13.998</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.servicebrokerintegration.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>274</record>
    <time>2025/12/04 15:38:14.000</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>275</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>276</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>277</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>278</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>279</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>280</record>
    <time>2025/12/04 15:38:14.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5391D5AB-F818-E13D-DE4D-2094847B115F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>281</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>282</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>283</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>284</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>285</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>286</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{629A0594-3DB7-FE65-7B15-69785E80FF1F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>287</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>288</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>289</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>290</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>291</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>292</record>
    <time>2025/12/04 15:38:14.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{5A4C382F-601D-179B-4219-2200D5B81DCE}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>293</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>294</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>295</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>296</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>297</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>298</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{02A78A7E-7B75-E0F6-5700-C4F94E63B59A}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>299</record>
    <time>2025/12/04 15:38:14.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>300</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>301</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>302</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>303</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>304</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{AFD7B6BC-6C76-39C4-9F9E-0A6B934E2EFA}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>305</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>306</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>307</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>308</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>309</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>310</record>
    <time>2025/12/04 15:38:14.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{79CA8DD2-5485-FCB1-6165-FFFEEBC3B52E}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>311</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>312</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>313</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>314</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;oldVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>315</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;newVersion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>316</record>
    <time>2025/12/04 15:38:14.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\bindingRedirection\{C4E3F152-5325-07F2-9C70-91F4737BA6D0}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vsix.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>317</record>
    <time>2025/12/04 15:38:14.011</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\liveshare.vscore\microsoft.visualstudio.liveshare.vslsfilesystemprovider.vscore.pkgdef</path>
  </entry>
  <entry>
    <record>318</record>
    <time>2025/12/04 15:38:14.014</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\managedprojectsystem\microsoft.visualstudio.projectsystem.managed.vs.pkgdef</path>
  </entry>
  <entry>
    <record>319</record>
    <time>2025/12/04 15:38:14.023</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\managedprojectsystem\projectselectors.pkgdef</path>
  </entry>
  <entry>
    <record>320</record>
    <time>2025/12/04 15:38:14.025</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\managedprojectsystem\projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>321</record>
    <time>2025/12/04 15:38:14.028</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\modeling\17.0\dslruntimeregistry_x86.pkgdef</path>
  </entry>
  <entry>
    <record>322</record>
    <time>2025/12/04 15:38:14.031</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\modeling\17.0\toolintegration_vsmodelbus_x86.pkgdef</path>
  </entry>
  <entry>
    <record>323</record>
    <time>2025/12/04 15:38:14.034</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\featureflags.pkgdef</path>
  </entry>
  <entry>
    <record>324</record>
    <time>2025/12/04 15:38:14.036</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\microsoft.nodejstools.pkgdef</path>
  </entry>
  <entry>
    <record>325</record>
    <time>2025/12/04 15:38:14.052</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9092aa53-fb77-4645-b42d-1ccca6bd08bd}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\microsoft.nodejstools.pkgdef</path>
  </entry>
  <entry>
    <record>326</record>
    <time>2025/12/04 15:38:14.053</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9092aa53-fb77-4645-b42d-1ccca6bd08bd}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\microsoft.nodejstools.pkgdef</path>
  </entry>
  <entry>
    <record>327</record>
    <time>2025/12/04 15:38:14.053</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9092aa53-fb77-4645-b42d-1ccca6bd08bd}&apos; for value &apos;Language(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\microsoft.nodejstools.pkgdef</path>
  </entry>
  <entry>
    <record>328</record>
    <time>2025/12/04 15:38:14.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\openfolder.pkgdef</path>
  </entry>
  <entry>
    <record>329</record>
    <time>2025/12/04 15:38:14.059</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\nodejstools\nodejstools\vstemplatestore.pkgdef</path>
  </entry>
  <entry>
    <record>330</record>
    <time>2025/12/04 15:38:14.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\portable library tools\microsoft.visualstudio.portablelibrary.pkgdef</path>
  </entry>
  <entry>
    <record>331</record>
    <time>2025/12/04 15:38:14.065</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{fe426dcb-ff5c-44a9-b84d-24cf031ba095}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\portable library tools\microsoft.visualstudio.portablelibrary.pkgdef</path>
  </entry>
  <entry>
    <record>332</record>
    <time>2025/12/04 15:38:14.065</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{fe426dcb-ff5c-44a9-b84d-24cf031ba095}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\portable library tools\microsoft.visualstudio.portablelibrary.pkgdef</path>
  </entry>
  <entry>
    <record>333</record>
    <time>2025/12/04 15:38:14.065</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{fe426dcb-ff5c-44a9-b84d-24cf031ba095}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\portable library tools\microsoft.visualstudio.portablelibrary.pkgdef</path>
  </entry>
  <entry>
    <record>334</record>
    <time>2025/12/04 15:38:14.068</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\publish\microsoft.publish.framework.pkgdef</path>
  </entry>
  <entry>
    <record>335</record>
    <time>2025/12/04 15:38:14.077</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.core.pkgdef</path>
  </entry>
  <entry>
    <record>336</record>
    <time>2025/12/04 15:38:14.087</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>337</record>
    <time>2025/12/04 15:38:14.101</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{15490272-3c6b-4129-8e1d-795c8b6d8e9f}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>338</record>
    <time>2025/12/04 15:38:14.101</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{15490272-3c6b-4129-8e1d-795c8b6d8e9f}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>339</record>
    <time>2025/12/04 15:38:14.101</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{15490272-3c6b-4129-8e1d-795c8b6d8e9f}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>340</record>
    <time>2025/12/04 15:38:14.118</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>341</record>
    <time>2025/12/04 15:38:14.118</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>342</record>
    <time>2025/12/04 15:38:14.119</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>343</record>
    <time>2025/12/04 15:38:14.119</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>344</record>
    <time>2025/12/04 15:38:14.120</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>345</record>
    <time>2025/12/04 15:38:14.120</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>346</record>
    <time>2025/12/04 15:38:14.122</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>347</record>
    <time>2025/12/04 15:38:14.122</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>348</record>
    <time>2025/12/04 15:38:14.123</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>349</record>
    <time>2025/12/04 15:38:14.123</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>350</record>
    <time>2025/12/04 15:38:14.124</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>351</record>
    <time>2025/12/04 15:38:14.125</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>352</record>
    <time>2025/12/04 15:38:14.126</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>353</record>
    <time>2025/12/04 15:38:14.126</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>354</record>
    <time>2025/12/04 15:38:14.127</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>355</record>
    <time>2025/12/04 15:38:14.127</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Python Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.pkgdef</path>
  </entry>
  <entry>
    <record>356</record>
    <time>2025/12/04 15:38:14.259</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.suppressdpl.pkgdef</path>
  </entry>
  <entry>
    <record>357</record>
    <time>2025/12/04 15:38:14.260</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\core\microsoft.pythontools.theme.pkgdef</path>
  </entry>
  <entry>
    <record>358</record>
    <time>2025/12/04 15:38:14.263</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>359</record>
    <time>2025/12/04 15:38:14.267</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{349C5851-65DF-11DA-9384-00065B846F21}\LanguageTemplates&apos; for value &apos;{888888a0-9f3d-457c-b088-3a5042f75d52}&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>360</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>361</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}&apos; for value &apos;Language(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>362</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}&apos; for value &apos;ShowOnlySpecifiedTemplates(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>363</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}&apos; for value &apos;TemplateGroupIDs(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>364</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}\WebApplicationProperties&apos; for value &apos;CodeFileExtension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>365</record>
    <time>2025/12/04 15:38:14.268</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{9AF89C0F-85F6-4A20-9023-5D15D912F3B1}\WebApplicationProperties&apos; for value &apos;TemplateFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\django\microsoft.pythontools.django.pkgdef</path>
  </entry>
  <entry>
    <record>366</record>
    <time>2025/12/04 15:38:14.279</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\profiling\microsoft.pythontools.profiling.pkgdef</path>
  </entry>
  <entry>
    <record>367</record>
    <time>2025/12/04 15:38:14.290</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\python\vcdebuglauncher\microsoft.pythontools.debugger.vclauncher.pkgdef</path>
  </entry>
  <entry>
    <record>368</record>
    <time>2025/12/04 15:38:14.292</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>369</record>
    <time>2025/12/04 15:38:14.297</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{81828910-b8b3-4d2b-99a3-067027c180c1}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>370</record>
    <time>2025/12/04 15:38:14.297</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{81828910-b8b3-4d2b-99a3-067027c180c1}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>371</record>
    <time>2025/12/04 15:38:14.298</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{b5a04eab-382c-4baa-9f75-3d93b7ffa502}\AddItemTemplates\TemplateDirs\{b5a04eab-382c-4baa-9f75-3d93b7ffa502}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>372</record>
    <time>2025/12/04 15:38:14.298</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{b5a04eab-382c-4baa-9f75-3d93b7ffa502}\AddItemTemplates\TemplateDirs\{b5a04eab-382c-4baa-9f75-3d93b7ffa502}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>373</record>
    <time>2025/12/04 15:38:14.299</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{81828910-b8b3-4d2b-99a3-067027c180c1}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>374</record>
    <time>2025/12/04 15:38:14.299</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{81828910-b8b3-4d2b-99a3-067027c180c1}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\resourceexplorer\microsoft.visualstudio.resourceexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>375</record>
    <time>2025/12/04 15:38:14.302</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqlcommon\microsoft.visualstudio.data.tools.sqlcommonpackage.pkgdef</path>
  </entry>
  <entry>
    <record>376</record>
    <time>2025/12/04 15:38:14.339</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.datacompare.pkgdef</path>
  </entry>
  <entry>
    <record>377</record>
    <time>2025/12/04 15:38:14.344</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>378</record>
    <time>2025/12/04 15:38:14.366</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BindingPaths\{00FEE386-5F9F-4577-99F4-F327FAFC0FB9}&apos; for value &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLDB&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>379</record>
    <time>2025/12/04 15:38:14.366</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BindingPaths\{00FEE386-5F9F-4577-99F4-F327FAFC0FB9}&apos; for value &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLEditor&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>380</record>
    <time>2025/12/04 15:38:14.366</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BindingPaths\{00FEE386-5F9F-4577-99F4-F327FAFC0FB9}&apos; for value &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLDB\DAC&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.package.pkgdef</path>
  </entry>
  <entry>
    <record>381</record>
    <time>2025/12/04 15:38:14.381</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.package.sqlprofile.pkgdef</path>
  </entry>
  <entry>
    <record>382</record>
    <time>2025/12/04 15:38:14.384</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.relational.design.package.pkgdef</path>
  </entry>
  <entry>
    <record>383</record>
    <time>2025/12/04 15:38:14.389</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.sqlclrintellisensehostingengine.pkgdef</path>
  </entry>
  <entry>
    <record>384</record>
    <time>2025/12/04 15:38:14.390</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.sqlobjectexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>385</record>
    <time>2025/12/04 15:38:14.394</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqldb\vsix\microsoft.visualstudio.data.tools.sqlpdwextensions.pkgdef</path>
  </entry>
  <entry>
    <record>386</record>
    <time>2025/12/04 15:38:14.400</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqldebugger.pkgdef</path>
  </entry>
  <entry>
    <record>387</record>
    <time>2025/12/04 15:38:14.403</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqleditor.pkgdef</path>
  </entry>
  <entry>
    <record>388</record>
    <time>2025/12/04 15:38:14.419</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqllanguageservices.pkgdef</path>
  </entry>
  <entry>
    <record>389</record>
    <time>2025/12/04 15:38:14.422</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ed19932f-5443-4587-a005-1cb9158b2f64}&apos; for value &apos;Assembly&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqllanguageservices.pkgdef</path>
  </entry>
  <entry>
    <record>390</record>
    <time>2025/12/04 15:38:14.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\SQL Server Tools&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqllanguageservices.pkgdef</path>
  </entry>
  <entry>
    <record>391</record>
    <time>2025/12/04 15:38:14.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\SQL Server Tools&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqllanguageservices.pkgdef</path>
  </entry>
  <entry>
    <record>392</record>
    <time>2025/12/04 15:38:14.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\UserSettings\SQL Server Tools&apos; for value &apos;Category&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\sqleditor\vsix\microsoft.visualstudio.data.tools.sqllanguageservices.pkgdef</path>
  </entry>
  <entry>
    <record>393</record>
    <time>2025/12/04 15:38:14.426</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\templateengine\microsoft.visualstudio.templateengine.pkgdef</path>
  </entry>
  <entry>
    <record>394</record>
    <time>2025/12/04 15:38:14.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\agent\testlisteditorlicense.pkgdef</path>
  </entry>
  <entry>
    <record>395</record>
    <time>2025/12/04 15:38:14.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\common\aspnethosttype_reg.pkgdef</path>
  </entry>
  <entry>
    <record>396</record>
    <time>2025/12/04 15:38:14.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\common\noncoretests.pkgdef</path>
  </entry>
  <entry>
    <record>397</record>
    <time>2025/12/04 15:38:14.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\common\remoteexecution_reg.pkgdef</path>
  </entry>
  <entry>
    <record>398</record>
    <time>2025/12/04 15:38:14.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\controllerlistenerportrange_x86.pkgdef</path>
  </entry>
  <entry>
    <record>399</record>
    <time>2025/12/04 15:38:14.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\coretesttyperegistry_ui_visualstudio_38103.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>400</record>
    <time>2025/12/04 15:38:14.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\devtoolsregistry.pkgdef</path>
  </entry>
  <entry>
    <record>401</record>
    <time>2025/12/04 15:38:14.459</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testcasemanagement.dll_26328_fileexts_core_visualstudio_x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>402</record>
    <time>2025/12/04 15:38:14.461</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testcasemanagement.dll_26328_fileexts_x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>403</record>
    <time>2025/12/04 15:38:14.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testcasemanagement.dll_26328_visualstudio_____x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>404</record>
    <time>2025/12/04 15:38:14.546</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testproject.registry_31859_csharp_visualstudio.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>405</record>
    <time>2025/12/04 15:38:14.548</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testproject.registry_31859_nolang_visualstudio.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>406</record>
    <time>2025/12/04 15:38:14.550</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testproject.registry_31859_vb_visualstudio.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>407</record>
    <time>2025/12/04 15:38:14.551</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\qt.testproject.registry_31859_vc_visualstudio.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>408</record>
    <time>2025/12/04 15:38:14.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\remoteexecutionui_reg.pkgdef</path>
  </entry>
  <entry>
    <record>409</record>
    <time>2025/12/04 15:38:14.555</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\testlisteditorregistry.pkgdef</path>
  </entry>
  <entry>
    <record>410</record>
    <time>2025/12/04 15:38:14.558</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\testtools_cs_snippets_registration.pkgdef</path>
  </entry>
  <entry>
    <record>411</record>
    <time>2025/12/04 15:38:14.559</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\testtools_vb_snippets_registration.pkgdef</path>
  </entry>
  <entry>
    <record>412</record>
    <time>2025/12/04 15:38:14.559</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\test_sku_license_key_35172.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>413</record>
    <time>2025/12/04 15:38:14.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\core\tfsintegrationregistry.pkgdef</path>
  </entry>
  <entry>
    <record>414</record>
    <time>2025/12/04 15:38:14.562</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\tips\qt.tuippackage.dll_27369_____visualstudio_x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>415</record>
    <time>2025/12/04 15:38:14.578</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\tips\qt.tuippackage.dll_27369_____x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>416</record>
    <time>2025/12/04 15:38:14.579</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\tips\testertesttyperegistry_38104.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>417</record>
    <time>2025/12/04 15:38:14.596</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\tips\testskuregistry_37810.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>418</record>
    <time>2025/12/04 15:38:14.596</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\testtools\legacy\tipscommon\unittestservice_reg.pkgdef</path>
  </entry>
  <entry>
    <record>419</record>
    <time>2025/12/04 15:38:14.598</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\unit test explorer\testwiextension\microsoft.teamfoundation.testmanagement.testmethodassociationextension.pkgdef</path>
  </entry>
  <entry>
    <record>420</record>
    <time>2025/12/04 15:38:14.599</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\upgradeassistant\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>421</record>
    <time>2025/12/04 15:38:14.610</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\upgradeassistant\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>422</record>
    <time>2025/12/04 15:38:14.612</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vc\classwizard\clwwizard.pkgdef</path>
  </entry>
  <entry>
    <record>423</record>
    <time>2025/12/04 15:38:14.614</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.colors.pkgdef</path>
  </entry>
  <entry>
    <record>424</record>
    <time>2025/12/04 15:38:14.617</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>425</record>
    <time>2025/12/04 15:38:14.620</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>426</record>
    <time>2025/12/04 15:38:14.620</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>427</record>
    <time>2025/12/04 15:38:14.621</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>428</record>
    <time>2025/12/04 15:38:14.621</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>429</record>
    <time>2025/12/04 15:38:14.621</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>430</record>
    <time>2025/12/04 15:38:14.622</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>431</record>
    <time>2025/12/04 15:38:14.622</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>432</record>
    <time>2025/12/04 15:38:14.622</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>433</record>
    <time>2025/12/04 15:38:14.624</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>434</record>
    <time>2025/12/04 15:38:14.624</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>435</record>
    <time>2025/12/04 15:38:14.624</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>436</record>
    <time>2025/12/04 15:38:14.626</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>437</record>
    <time>2025/12/04 15:38:14.626</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>438</record>
    <time>2025/12/04 15:38:14.626</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>439</record>
    <time>2025/12/04 15:38:14.628</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>440</record>
    <time>2025/12/04 15:38:14.628</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>441</record>
    <time>2025/12/04 15:38:14.628</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>442</record>
    <time>2025/12/04 15:38:14.629</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>443</record>
    <time>2025/12/04 15:38:14.629</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>444</record>
    <time>2025/12/04 15:38:14.629</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>445</record>
    <time>2025/12/04 15:38:14.631</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>446</record>
    <time>2025/12/04 15:38:14.631</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>447</record>
    <time>2025/12/04 15:38:14.631</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>448</record>
    <time>2025/12/04 15:38:14.633</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>449</record>
    <time>2025/12/04 15:38:14.633</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>450</record>
    <time>2025/12/04 15:38:14.633</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>451</record>
    <time>2025/12/04 15:38:14.635</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>452</record>
    <time>2025/12/04 15:38:14.635</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>453</record>
    <time>2025/12/04 15:38:14.635</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>454</record>
    <time>2025/12/04 15:38:14.637</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>455</record>
    <time>2025/12/04 15:38:14.637</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>456</record>
    <time>2025/12/04 15:38:14.637</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>457</record>
    <time>2025/12/04 15:38:14.639</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>458</record>
    <time>2025/12/04 15:38:14.639</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>459</record>
    <time>2025/12/04 15:38:14.639</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>460</record>
    <time>2025/12/04 15:38:14.640</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>461</record>
    <time>2025/12/04 15:38:14.640</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>462</record>
    <time>2025/12/04 15:38:14.640</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>463</record>
    <time>2025/12/04 15:38:14.640</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>464</record>
    <time>2025/12/04 15:38:14.641</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>465</record>
    <time>2025/12/04 15:38:14.641</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>466</record>
    <time>2025/12/04 15:38:14.642</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>467</record>
    <time>2025/12/04 15:38:14.642</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>468</record>
    <time>2025/12/04 15:38:14.643</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>469</record>
    <time>2025/12/04 15:38:14.644</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>470</record>
    <time>2025/12/04 15:38:14.644</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>471</record>
    <time>2025/12/04 15:38:14.645</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>472</record>
    <time>2025/12/04 15:38:14.646</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>473</record>
    <time>2025/12/04 15:38:14.646</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>474</record>
    <time>2025/12/04 15:38:14.646</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>475</record>
    <time>2025/12/04 15:38:14.648</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>476</record>
    <time>2025/12/04 15:38:14.648</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>477</record>
    <time>2025/12/04 15:38:14.648</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>478</record>
    <time>2025/12/04 15:38:14.649</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>479</record>
    <time>2025/12/04 15:38:14.649</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>480</record>
    <time>2025/12/04 15:38:14.649</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>481</record>
    <time>2025/12/04 15:38:14.651</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>482</record>
    <time>2025/12/04 15:38:14.651</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>483</record>
    <time>2025/12/04 15:38:14.651</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>484</record>
    <time>2025/12/04 15:38:14.653</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>485</record>
    <time>2025/12/04 15:38:14.653</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>486</record>
    <time>2025/12/04 15:38:14.654</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>487</record>
    <time>2025/12/04 15:38:14.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>488</record>
    <time>2025/12/04 15:38:14.655</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>489</record>
    <time>2025/12/04 15:38:14.656</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}\Extensions&apos; for value &apos;DDS&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>490</record>
    <time>2025/12/04 15:38:14.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>491</record>
    <time>2025/12/04 15:38:14.657</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>492</record>
    <time>2025/12/04 15:38:14.658</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>493</record>
    <time>2025/12/04 15:38:14.658</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>494</record>
    <time>2025/12/04 15:38:14.658</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>495</record>
    <time>2025/12/04 15:38:14.659</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>496</record>
    <time>2025/12/04 15:38:14.659</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>497</record>
    <time>2025/12/04 15:38:14.659</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>498</record>
    <time>2025/12/04 15:38:14.659</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>499</record>
    <time>2025/12/04 15:38:14.659</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>500</record>
    <time>2025/12/04 15:38:14.660</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>501</record>
    <time>2025/12/04 15:38:14.660</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>502</record>
    <time>2025/12/04 15:38:14.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>503</record>
    <time>2025/12/04 15:38:14.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>504</record>
    <time>2025/12/04 15:38:14.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>505</record>
    <time>2025/12/04 15:38:14.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>506</record>
    <time>2025/12/04 15:38:14.661</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>507</record>
    <time>2025/12/04 15:38:14.662</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>508</record>
    <time>2025/12/04 15:38:14.662</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>509</record>
    <time>2025/12/04 15:38:14.662</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>510</record>
    <time>2025/12/04 15:38:14.663</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>511</record>
    <time>2025/12/04 15:38:14.663</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>512</record>
    <time>2025/12/04 15:38:14.664</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>513</record>
    <time>2025/12/04 15:38:14.664</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>514</record>
    <time>2025/12/04 15:38:14.664</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>515</record>
    <time>2025/12/04 15:38:14.664</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>516</record>
    <time>2025/12/04 15:38:14.664</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>517</record>
    <time>2025/12/04 15:38:14.666</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>518</record>
    <time>2025/12/04 15:38:14.666</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>519</record>
    <time>2025/12/04 15:38:14.666</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>520</record>
    <time>2025/12/04 15:38:14.666</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>521</record>
    <time>2025/12/04 15:38:14.666</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>522</record>
    <time>2025/12/04 15:38:14.667</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>523</record>
    <time>2025/12/04 15:38:14.667</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>524</record>
    <time>2025/12/04 15:38:14.667</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>525</record>
    <time>2025/12/04 15:38:14.668</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>526</record>
    <time>2025/12/04 15:38:14.668</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>527</record>
    <time>2025/12/04 15:38:14.669</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>528</record>
    <time>2025/12/04 15:38:14.669</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>529</record>
    <time>2025/12/04 15:38:14.669</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>530</record>
    <time>2025/12/04 15:38:14.669</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>531</record>
    <time>2025/12/04 15:38:14.669</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>532</record>
    <time>2025/12/04 15:38:14.670</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>533</record>
    <time>2025/12/04 15:38:14.670</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>534</record>
    <time>2025/12/04 15:38:14.670</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>535</record>
    <time>2025/12/04 15:38:14.670</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>536</record>
    <time>2025/12/04 15:38:14.671</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>537</record>
    <time>2025/12/04 15:38:14.671</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>538</record>
    <time>2025/12/04 15:38:14.671</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>539</record>
    <time>2025/12/04 15:38:14.671</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>540</record>
    <time>2025/12/04 15:38:14.671</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>541</record>
    <time>2025/12/04 15:38:14.672</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>542</record>
    <time>2025/12/04 15:38:14.673</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>543</record>
    <time>2025/12/04 15:38:14.673</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>544</record>
    <time>2025/12/04 15:38:14.673</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>545</record>
    <time>2025/12/04 15:38:14.673</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>546</record>
    <time>2025/12/04 15:38:14.673</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>547</record>
    <time>2025/12/04 15:38:14.675</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>548</record>
    <time>2025/12/04 15:38:14.675</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>549</record>
    <time>2025/12/04 15:38:14.675</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{a2fe74e1-b743-11d0-ae1a-00a0c90fffc3}\AddItemTemplates\TemplateDirs\{895b3842-f118-4227-8481-40e8d221b1c5}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>550</record>
    <time>2025/12/04 15:38:14.675</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>551</record>
    <time>2025/12/04 15:38:14.675</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{58961b49-13e0-48c0-9258-13cbc4d40279}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\microsoft.visualstudio.graphics.pkgdef</path>
  </entry>
  <entry>
    <record>552</record>
    <time>2025/12/04 15:38:14.679</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\toolboxitemdata.pkgdef</path>
  </entry>
  <entry>
    <record>553</record>
    <time>2025/12/04 15:38:14.680</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\vsgraphics\vsgraphics_microsoft_visualstudio_graphics_dll_component.pkgdef</path>
  </entry>
  <entry>
    <record>554</record>
    <time>2025/12/04 15:38:14.680</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web\aspx\html_editor_reg.pkgdef</path>
  </entry>
  <entry>
    <record>555</record>
    <time>2025/12/04 15:38:14.813</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web\mvc\microsoft.visualstudio.web.mvc.pkgdef</path>
  </entry>
  <entry>
    <record>556</record>
    <time>2025/12/04 15:38:14.827</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web\project\microsoft.visualstudio.web.pkgdef</path>
  </entry>
  <entry>
    <record>557</record>
    <time>2025/12/04 15:38:15.066</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web\project\web_prj_reg_for_vs.pkgdef</path>
  </entry>
  <entry>
    <record>558</record>
    <time>2025/12/04 15:38:15.139</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web\project\web_prj_reg_for_vs_no_ppe.pkgdef</path>
  </entry>
  <entry>
    <record>559</record>
    <time>2025/12/04 15:38:15.142</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web live preview\microsoft.webtools.browserlink.livepreview.pkgdef</path>
  </entry>
  <entry>
    <record>560</record>
    <time>2025/12/04 15:38:15.152</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>561</record>
    <time>2025/12/04 15:38:15.153</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.cs.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>562</record>
    <time>2025/12/04 15:38:15.153</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.cs.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>563</record>
    <time>2025/12/04 15:38:15.153</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.cs.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>564</record>
    <time>2025/12/04 15:38:15.154</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.vb.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>565</record>
    <time>2025/12/04 15:38:15.154</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.vb.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>566</record>
    <time>2025/12/04 15:38:15.154</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\WebApiControllerItemTemplateWeb.vb.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>567</record>
    <time>2025/12/04 15:38:15.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.cs.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>568</record>
    <time>2025/12/04 15:38:15.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.cs.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>569</record>
    <time>2025/12/04 15:38:15.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.cs.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>570</record>
    <time>2025/12/04 15:38:15.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.cs.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>571</record>
    <time>2025/12/04 15:38:15.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.cs.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>572</record>
    <time>2025/12/04 15:38:15.156</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.cs.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>573</record>
    <time>2025/12/04 15:38:15.156</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.vb.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>574</record>
    <time>2025/12/04 15:38:15.156</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.vb.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>575</record>
    <time>2025/12/04 15:38:15.156</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRHubItemTemplateWeb.vb.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>576</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.vb.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>577</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.vb.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>578</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\SignalRPersistentConnectionItemTemplateWeb.vb.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>579</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\OwinStartupItemTemplateWeb.cs.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>580</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\OwinStartupItemTemplateWeb.cs.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>581</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\OwinStartupItemTemplateWeb.cs.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>582</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;WebApiControllerItemTemplateWeb.cs.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>583</record>
    <time>2025/12/04 15:38:15.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;WebApiControllerItemTemplateWeb.vb.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>584</record>
    <time>2025/12/04 15:38:15.158</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;SignalRHubItemTemplateWeb.cs.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>585</record>
    <time>2025/12/04 15:38:15.158</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;SignalRPersistentConnectionItemTemplateWeb.cs.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>586</record>
    <time>2025/12/04 15:38:15.158</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;SignalRHubItemTemplateWeb.vb.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>587</record>
    <time>2025/12/04 15:38:15.158</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;SignalRPersistentConnectionItemTemplateWeb.vb.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>588</record>
    <time>2025/12/04 15:38:15.158</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;OwinStartupItemTemplateWeb.cs.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>589</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.cshtml.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>590</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.cshtml.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>591</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.cshtml.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>592</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.vbhtml.vstemplate&apos; for value &apos;PrimaryFolder&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>593</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.vbhtml.vstemplate&apos; for value &apos;ItemName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>594</record>
    <time>2025/12/04 15:38:15.160</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemWizardInfo\Razor3HelperItemTemplate.vbhtml.vstemplate&apos; for value &apos;Extension&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>595</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3WebPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>596</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3WebPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>597</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3LayoutPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>598</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3LayoutPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>599</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3EmptyPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>600</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3EmptyPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>601</record>
    <time>2025/12/04 15:38:15.161</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3ContentPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>602</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Code&apos; for value &apos;Razor3ContentPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>603</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3WebPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>604</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3WebPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>605</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3LayoutPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>606</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3LayoutPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>607</record>
    <time>2025/12/04 15:38:15.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3HelperItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>608</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3HelperItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>609</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3EmptyPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>610</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3EmptyPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>611</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3ContentPageItemTemplate.vbhtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>612</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{E24C65DC-7377-472b-9ABA-BC803B73C61A}\AddNewItemFilters\App_Data&apos; for value &apos;Razor3ContentPageItemTemplate.cshtml.vstemplate&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>613</record>
    <time>2025/12/04 15:38:15.163</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\templates.pkgdef</path>
  </entry>
  <entry>
    <record>614</record>
    <time>2025/12/04 15:38:15.165</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\aspire\microsoft.webtools.aspire.pkgdef</path>
  </entry>
  <entry>
    <record>615</record>
    <time>2025/12/04 15:38:15.175</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\aspx\microsoft.visualstudio.web.html.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>616</record>
    <time>2025/12/04 15:38:15.176</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\microsoft.visualstudio.web.azure.common.pkgdef</path>
  </entry>
  <entry>
    <record>617</record>
    <time>2025/12/04 15:38:15.183</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\microsoft.visualstudio.web.azure.pkgdef</path>
  </entry>
  <entry>
    <record>618</record>
    <time>2025/12/04 15:38:15.188</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\microsoft.webtools.azure.templates.pkgdef</path>
  </entry>
  <entry>
    <record>619</record>
    <time>2025/12/04 15:38:15.188</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\webjobs\microsoft.webtools.azure.functions.pkgdef</path>
  </entry>
  <entry>
    <record>620</record>
    <time>2025/12/04 15:38:15.198</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\webjobs\microsoft.webtools.azure.webjobs.package.pkgdef</path>
  </entry>
  <entry>
    <record>621</record>
    <time>2025/12/04 15:38:15.205</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\browser link\microsoft.webtools.browserlink.package.pkgdef</path>
  </entry>
  <entry>
    <record>622</record>
    <time>2025/12/04 15:38:15.217</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\codegenerators\microsoft.webtools.codegenerators.pkgdef</path>
  </entry>
  <entry>
    <record>623</record>
    <time>2025/12/04 15:38:15.219</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.extensions.pkgdef</path>
  </entry>
  <entry>
    <record>624</record>
    <time>2025/12/04 15:38:15.237</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.html.vs.colors.pkgdef</path>
  </entry>
  <entry>
    <record>625</record>
    <time>2025/12/04 15:38:15.239</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.html.vs.pkgdef</path>
  </entry>
  <entry>
    <record>626</record>
    <time>2025/12/04 15:38:15.261</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\File Extensions\.asa&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.html.vs.pkgdef</path>
  </entry>
  <entry>
    <record>627</record>
    <time>2025/12/04 15:38:15.266</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\File Extensions\.stm&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.html.vs.pkgdef</path>
  </entry>
  <entry>
    <record>628</record>
    <time>2025/12/04 15:38:15.272</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.json.vs.pkgdef</path>
  </entry>
  <entry>
    <record>629</record>
    <time>2025/12/04 15:38:15.288</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.razor.core.pkgdef</path>
  </entry>
  <entry>
    <record>630</record>
    <time>2025/12/04 15:38:15.289</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.rest.vs.pkgdef</path>
  </entry>
  <entry>
    <record>631</record>
    <time>2025/12/04 15:38:15.297</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\languages\microsoft.webtools.languages.shared.vs.pkgdef</path>
  </entry>
  <entry>
    <record>632</record>
    <time>2025/12/04 15:38:15.301</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\library manager\microsoft.web.librarymanager.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>633</record>
    <time>2025/12/04 15:38:15.304</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\package management\microsoft.webtools.packagemanagement.pkgdef</path>
  </entry>
  <entry>
    <record>634</record>
    <time>2025/12/04 15:38:15.311</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\project\microsoft.visualstudio.web.project.pkgdef</path>
  </entry>
  <entry>
    <record>635</record>
    <time>2025/12/04 15:38:15.318</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\projectsystem\microsoft.webtools.projectsystem.components.pkgdef</path>
  </entry>
  <entry>
    <record>636</record>
    <time>2025/12/04 15:38:15.326</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\projectsystem\microsoft.webtools.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>637</record>
    <time>2025/12/04 15:38:15.333</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects\ASP.NET Core&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\projectsystem\microsoft.webtools.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>638</record>
    <time>2025/12/04 15:38:15.333</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects\ASP.NET Core&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\projectsystem\microsoft.webtools.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>639</record>
    <time>2025/12/04 15:38:15.333</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects\ASP.NET Core&apos; for value &apos;Name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\projectsystem\microsoft.webtools.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>640</record>
    <time>2025/12/04 15:38:15.334</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\publish\microsoft.webtools.publish.pkgdef</path>
  </entry>
  <entry>
    <record>641</record>
    <time>2025/12/04 15:38:15.339</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\publish\publish_vspropertypage_reg.pkgdef</path>
  </entry>
  <entry>
    <record>642</record>
    <time>2025/12/04 15:38:15.341</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\scaffolding\microsoft.webtools.scaffolding.vs.pkgdef</path>
  </entry>
  <entry>
    <record>643</record>
    <time>2025/12/04 15:38:15.349</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\servicehub\microsoft.webtools.porttunneling.pkgdef</path>
  </entry>
  <entry>
    <record>644</record>
    <time>2025/12/04 15:38:15.350</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\servicehub\aspireserver\microsoft.webtools.aspireserver.pkgdef</path>
  </entry>
  <entry>
    <record>645</record>
    <time>2025/12/04 15:38:15.351</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\servicehub\azdevservice\microsoft.webtools.azdevservice.pkgdef</path>
  </entry>
  <entry>
    <record>646</record>
    <time>2025/12/04 15:38:15.351</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\servicehub\httpservice\microsoft.webtools.httpservice.pkgdef</path>
  </entry>
  <entry>
    <record>647</record>
    <time>2025/12/04 15:38:15.352</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\servicehub\powerplatform\microsoft.webtools.powerplatform.pkgdef</path>
  </entry>
  <entry>
    <record>648</record>
    <time>2025/12/04 15:38:15.353</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\shared\shared.web.pkgdef</path>
  </entry>
  <entry>
    <record>649</record>
    <time>2025/12/04 15:38:15.357</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\taskrunnerexplorer\microsoft.webtools.taskrunnerexplorer.colors.pkgdef</path>
  </entry>
  <entry>
    <record>650</record>
    <time>2025/12/04 15:38:15.360</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\taskrunnerexplorer\microsoft.webtools.taskrunnerexplorer.extensions.pkgdef</path>
  </entry>
  <entry>
    <record>651</record>
    <time>2025/12/04 15:38:15.361</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\taskrunnerexplorer\microsoft.webtools.taskrunnerexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>652</record>
    <time>2025/12/04 15:38:15.371</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools shared\shared.pkgdef</path>
  </entry>
  <entry>
    <record>653</record>
    <time>2025/12/04 15:38:15.378</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\featureflags.pkgdef</path>
  </entry>
  <entry>
    <record>654</record>
    <time>2025/12/04 15:38:15.379</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\microsoft.visualstudio.windowsazure.pkgdef</path>
  </entry>
  <entry>
    <record>655</record>
    <time>2025/12/04 15:38:15.410</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\catcolors.pkgdef</path>
  </entry>
  <entry>
    <record>656</record>
    <time>2025/12/04 15:38:15.412</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.powershelltools.package.pkgdef</path>
  </entry>
  <entry>
    <record>657</record>
    <time>2025/12/04 15:38:15.417</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>658</record>
    <time>2025/12/04 15:38:15.424</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{ac24a51d-4569-331d-8bdf-954d8ec90a7f}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>659</record>
    <time>2025/12/04 15:38:15.424</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{ac24a51d-4569-331d-8bdf-954d8ec90a7f}&apos; for value &apos;Name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>660</record>
    <time>2025/12/04 15:38:15.424</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{ac24a51d-4569-331d-8bdf-954d8ec90a7f}&apos; for value &apos;IsAsyncQueryable&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>661</record>
    <time>2025/12/04 15:38:15.424</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{ac24a51d-4569-331d-8bdf-954d8ec90a7f}&apos; for value &apos;IsFreeThreaded&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>662</record>
    <time>2025/12/04 15:38:15.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{ac24a51d-4569-331d-8bdf-954d8ec90a7f}&apos; for value &apos;IsCacheable&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\common\microsoft.visualstudio.windowsazure.commonazuretools.package.pkgdef</path>
  </entry>
  <entry>
    <record>663</record>
    <time>2025/12/04 15:38:15.434</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\remotedebugger\microsoft.visualstudio.windowsazure.remotedebugger.pkgdef</path>
  </entry>
  <entry>
    <record>664</record>
    <time>2025/12/04 15:38:15.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>665</record>
    <time>2025/12/04 15:38:15.447</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{1636EA86-8C55-7789-3620-575CE4C42EE6}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>666</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{1636EA86-8C55-7789-3620-575CE4C42EE6}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>667</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{1636EA86-8C55-7789-3620-575CE4C42EE6}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>668</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{1636EA86-8C55-7789-3620-575CE4C42EE6}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>669</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{1636EA86-8C55-7789-3620-575CE4C42EE6}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>670</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8B6C9468-E789-0C45-852D-850D0DE70809}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>671</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8B6C9468-E789-0C45-852D-850D0DE70809}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>672</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8B6C9468-E789-0C45-852D-850D0DE70809}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>673</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8B6C9468-E789-0C45-852D-850D0DE70809}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>674</record>
    <time>2025/12/04 15:38:15.448</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8B6C9468-E789-0C45-852D-850D0DE70809}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools\v2.9\microsoft.visualstudio.windowsazure.2.9.pkgdef</path>
  </entry>
  <entry>
    <record>675</record>
    <time>2025/12/04 15:38:15.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\windows azure tools diagnostics\microsoft.visualstudio.windowsazure.azurediagnostics.pkgdef</path>
  </entry>
  <entry>
    <record>676</record>
    <time>2025/12/04 15:38:15.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>677</record>
    <time>2025/12/04 15:38:15.458</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Test Adapter for Google Test&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>678</record>
    <time>2025/12/04 15:38:15.458</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Test Adapter for Google Test&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>679</record>
    <time>2025/12/04 15:38:15.458</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Test Adapter for Google Test&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>680</record>
    <time>2025/12/04 15:38:15.458</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Test Adapter for Google Test&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>681</record>
    <time>2025/12/04 15:38:15.459</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Test Adapter for Google Test&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>682</record>
    <time>2025/12/04 15:38:15.459</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Test Adapter for Google Test&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>683</record>
    <time>2025/12/04 15:38:15.460</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Test Adapter for Google Test&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>684</record>
    <time>2025/12/04 15:38:15.460</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Test Adapter for Google Test&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\n1qmsxyr.ex5\googletestadapter.vspackage.tafgt.pkgdef</path>
  </entry>
  <entry>
    <record>685</record>
    <time>2025/12/04 15:38:15.461</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\nvidia\cuda 12.8 wizards\12.8\nvda.vsip.cudatemplates.pkgdef</path>
  </entry>
  <entry>
    <record>686</record>
    <time>2025/12/04 15:38:15.463</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.unifieddebugger.package.pkgdef</path>
  </entry>
  <entry>
    <record>687</record>
    <time>2025/12/04 15:38:15.474</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>688</record>
    <time>2025/12/04 15:38:15.478</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{5c004dae-2bbc-4180-875a-2ed9fa687a96}&apos; for value &apos;SupportsDynamicToolOwner&apos;</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>689</record>
    <time>2025/12/04 15:38:15.482</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{82a887ef-3ac4-4ea6-b31f-9bfdc75af17e}&apos; for value &apos;Package&apos;</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>690</record>
    <time>2025/12/04 15:38:15.482</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{c55d8cc1-6b73-41e6-a884-5a711faf4b49}&apos; for value &apos;Package&apos;</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>691</record>
    <time>2025/12/04 15:38:15.483</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\File Extensions\.cu&apos; for value &apos;&apos;</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>692</record>
    <time>2025/12/04 15:38:15.484</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\File Extensions\.cuh&apos; for value &apos;&apos;</description>
    <path>c:\progra~2\nvidia~1\nsight~1.1\host64\common\nvda.vsip.net.pkgdef</path>
  </entry>
  <entry>
    <record>693</record>
    <time>2025/12/04 15:38:15.494</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\oy0h1gjl.1jk\microsoft.visualstudio.templates.assemblyinfo.wizard.pkgdef</path>
  </entry>
  <entry>
    <record>694</record>
    <time>2025/12/04 15:38:15.495</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vis_db_tools_reg_17108.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>695</record>
    <time>2025/12/04 15:38:15.555</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_compatibility_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>696</record>
    <time>2025/12/04 15:38:15.555</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_package_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>697</record>
    <time>2025/12/04 15:38:15.578</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_providers_oracle_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>698</record>
    <time>2025/12/04 15:38:15.587</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_providers_sqlserver_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>699</record>
    <time>2025/12/04 15:38:15.610</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_sources_mssqlserverdbfile_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>700</record>
    <time>2025/12/04 15:38:15.610</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_sources_mssqlserver_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>701</record>
    <time>2025/12/04 15:38:15.611</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vsdata_sources_oracledb_reg_vs.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>702</record>
    <time>2025/12/04 15:38:15.612</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\protools\vs_designer_reg_vs_26726.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>703</record>
    <time>2025/12/04 15:38:15.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\codeanalysis_directories_x86.pkgdef</path>
  </entry>
  <entry>
    <record>704</record>
    <time>2025/12/04 15:38:15.657</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\codeanalysis_ruleseticon_reg.pkgdef</path>
  </entry>
  <entry>
    <record>705</record>
    <time>2025/12/04 15:38:15.658</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stancore_reg.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>706</record>
    <time>2025/12/04 15:38:15.660</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stancore_reg2.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>707</record>
    <time>2025/12/04 15:38:15.661</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stanpackage.vrg_45400.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>708</record>
    <time>2025/12/04 15:38:15.662</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stanpackage_solutionpage_reg.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>709</record>
    <time>2025/12/04 15:38:15.663</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stanpolicy.dll_42798_____x86.3643236f_fc70_11d3_a536_0090278a1bb8.pkgdef</path>
  </entry>
  <entry>
    <record>710</record>
    <time>2025/12/04 15:38:15.664</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\staticanalysis\stan_ruleseteditor_reg_x86.pkgdef</path>
  </entry>
  <entry>
    <record>711</record>
    <time>2025/12/04 15:38:15.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\tkq5tv0c.mpl\windowsappsdk.cs.extension.dev17.pkgdef</path>
  </entry>
  <entry>
    <record>712</record>
    <time>2025/12/04 15:38:15.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\icons.pkgdef</path>
  </entry>
  <entry>
    <record>713</record>
    <time>2025/12/04 15:38:15.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\microsoft.ml.modelbuilder.pkgdef</path>
  </entry>
  <entry>
    <record>714</record>
    <time>2025/12/04 15:38:15.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\optout.pkgdef</path>
  </entry>
  <entry>
    <record>715</record>
    <time>2025/12/04 15:38:15.668</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\relatedfiles.pkgdef</path>
  </entry>
  <entry>
    <record>716</record>
    <time>2025/12/04 15:38:15.669</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\servicehubservices.pkgdef</path>
  </entry>
  <entry>
    <record>717</record>
    <time>2025/12/04 15:38:15.671</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\uvvwvtsi.5ne\tokens.pkgdef</path>
  </entry>
  <entry>
    <record>718</record>
    <time>2025/12/04 15:38:15.673</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\vssdk\vssdk.legacywizard.pkgdef</path>
  </entry>
  <entry>
    <record>719</record>
    <time>2025/12/04 15:38:15.674</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\vssdk\vssdk.vsidehostadapter.pkgdef</path>
  </entry>
  <entry>
    <record>720</record>
    <time>2025/12/04 15:38:15.677</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\vssdk\extensibilityprojectflavor\extensibilityprojectflavor.pkgdef</path>
  </entry>
  <entry>
    <record>721</record>
    <time>2025/12/04 15:38:15.682</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\vssdk\extensibilityprojectflavor\packagemanifesteditorcolors.pkgdef</path>
  </entry>
  <entry>
    <record>722</record>
    <time>2025/12/04 15:38:15.683</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\xamarin\androiddevicemanager\devicemanager.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>723</record>
    <time>2025/12/04 15:38:15.684</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\xamarin\androidsdkmanager\androidsdkmanager.vsix.pkgdef</path>
  </entry>
  <entry>
    <record>724</record>
    <time>2025/12/04 15:38:15.685</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\xcfzbgjs.fem\microsoft.visualstudio.cache.service.pkgdef</path>
  </entry>
  <entry>
    <record>725</record>
    <time>2025/12/04 15:38:15.687</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\lowimpactvsfeatureflags.pkgdef</path>
  </entry>
  <entry>
    <record>726</record>
    <time>2025/12/04 15:38:15.688</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\projectshellfileassociations.pkgdef</path>
  </entry>
  <entry>
    <record>727</record>
    <time>2025/12/04 15:38:15.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.csproj&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\projectshellfileassociations.pkgdef</path>
  </entry>
  <entry>
    <record>728</record>
    <time>2025/12/04 15:38:15.691</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.shproj&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\projectshellfileassociations.pkgdef</path>
  </entry>
  <entry>
    <record>729</record>
    <time>2025/12/04 15:38:15.692</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.vbproj&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\projectshellfileassociations.pkgdef</path>
  </entry>
  <entry>
    <record>730</record>
    <time>2025/12/04 15:38:15.692</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\datadesign\datadesign.pkgdef</path>
  </entry>
  <entry>
    <record>731</record>
    <time>2025/12/04 15:38:15.693</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\datadesign\microsoft.visualstudio.serverexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>732</record>
    <time>2025/12/04 15:38:15.697</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\appcapabilitiesdesigner\microsoft.visualstudio.tabdesigner.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>733</record>
    <time>2025/12/04 15:38:15.700</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{da95c001-7ed0-4f46-b5f0-351125ab8bda}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\appcapabilitiesdesigner\microsoft.visualstudio.tabdesigner.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>734</record>
    <time>2025/12/04 15:38:15.700</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{da95c001-7ed0-4f46-b5f0-351125ab8bda}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\appcapabilitiesdesigner\microsoft.visualstudio.tabdesigner.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>735</record>
    <time>2025/12/04 15:38:15.702</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\architecture tools\graphproviderpackage\graphproviderpackage.pkgdef</path>
  </entry>
  <entry>
    <record>736</record>
    <time>2025/12/04 15:38:15.705</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\architecture tools\graphproviderpackage\microsoft.visualstudio.graphproviderpackage.pkgdef</path>
  </entry>
  <entry>
    <record>737</record>
    <time>2025/12/04 15:38:15.710</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\architecture tools\providers\nativecode\microsoft.visualstudio.progression.native.codeprovider.pkgdef</path>
  </entry>
  <entry>
    <record>738</record>
    <time>2025/12/04 15:38:15.711</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\asal\microsoft.asal.visualstudio.extension.pkgdef</path>
  </entry>
  <entry>
    <record>739</record>
    <time>2025/12/04 15:38:15.714</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\azure sphere\itemtemplates.pkgdef</path>
  </entry>
  <entry>
    <record>740</record>
    <time>2025/12/04 15:38:15.715</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\azure sphere\microsoft.visualstudio.azuresphere.pkgdef</path>
  </entry>
  <entry>
    <record>741</record>
    <time>2025/12/04 15:38:15.718</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\callhierarchy\microsoft.visualstudio.platform.callhierarchy.pkgdef</path>
  </entry>
  <entry>
    <record>742</record>
    <time>2025/12/04 15:38:15.719</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\clientdiagnostics\clientdiagnostics.pkgdef</path>
  </entry>
  <entry>
    <record>743</record>
    <time>2025/12/04 15:38:15.720</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\clientdiagnostics\commoncolors.pkgdef</path>
  </entry>
  <entry>
    <record>744</record>
    <time>2025/12/04 15:38:15.726</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\clientdiagnostics\appresponsiveness\visualprofilercolors.pkgdef</path>
  </entry>
  <entry>
    <record>745</record>
    <time>2025/12/04 15:38:15.728</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\cmakedebugadapterregistration.pkgdef</path>
  </entry>
  <entry>
    <record>746</record>
    <time>2025/12/04 15:38:15.736</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\microsoft.visualstudio.cmake.package.pkgdef</path>
  </entry>
  <entry>
    <record>747</record>
    <time>2025/12/04 15:38:15.742</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\CMake&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\microsoft.visualstudio.cmake.package.pkgdef</path>
  </entry>
  <entry>
    <record>748</record>
    <time>2025/12/04 15:38:15.742</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\CMake&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\microsoft.visualstudio.cmake.package.pkgdef</path>
  </entry>
  <entry>
    <record>749</record>
    <time>2025/12/04 15:38:15.742</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\CMake&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\microsoft.visualstudio.cmake.package.pkgdef</path>
  </entry>
  <entry>
    <record>750</record>
    <time>2025/12/04 15:38:15.743</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\CMake&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\microsoft.visualstudio.cmake.package.pkgdef</path>
  </entry>
  <entry>
    <record>751</record>
    <time>2025/12/04 15:38:15.744</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\client\microsoft.visualstudio.cmake.client.pkgdef</path>
  </entry>
  <entry>
    <record>752</record>
    <time>2025/12/04 15:38:15.747</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\linux\microsoft.visualstudio.cmake.linux.project.pkgdef</path>
  </entry>
  <entry>
    <record>753</record>
    <time>2025/12/04 15:38:15.753</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\linux\remotecmakedebugadapterregistration.pkgdef</path>
  </entry>
  <entry>
    <record>754</record>
    <time>2025/12/04 15:38:15.761</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cmake\linux\remotelinuxdebugadapterregistration.pkgdef</path>
  </entry>
  <entry>
    <record>755</record>
    <time>2025/12/04 15:38:15.763</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\commands\microsoft.visualstudio.commands.pkgdef</path>
  </entry>
  <entry>
    <record>756</record>
    <time>2025/12/04 15:38:15.765</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\connected\microsoft.visualstudio.shell.connected.pkgdef</path>
  </entry>
  <entry>
    <record>757</record>
    <time>2025/12/04 15:38:15.789</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_b_reg.pkgdef</path>
  </entry>
  <entry>
    <record>758</record>
    <time>2025/12/04 15:38:15.793</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg.pkgdef</path>
  </entry>
  <entry>
    <record>759</record>
    <time>2025/12/04 15:38:15.810</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\MSBuildHostObjects\MarkupCompilePass1;MarkupCompilePass1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg.pkgdef</path>
  </entry>
  <entry>
    <record>760</record>
    <time>2025/12/04 15:38:15.810</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\MSBuildHostObjects\MarkupCompilePass1;MarkupCompilePass1&apos; for value &apos;OutOfProcOverride&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg.pkgdef</path>
  </entry>
  <entry>
    <record>761</record>
    <time>2025/12/04 15:38:15.810</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>762</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;DisplayProjectFileExtensions&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>763</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;DesignerTemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>764</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;DisplayProjectType(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>765</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;ItemTemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>766</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;Language(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>767</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;NewProjectRequiresNewFolder(VsTemplate)&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>768</record>
    <time>2025/12/04 15:38:15.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>769</record>
    <time>2025/12/04 15:38:15.813</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;ProjectTemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>770</record>
    <time>2025/12/04 15:38:15.813</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}&apos; for value &apos;WizardsTemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\cs\vcsharp_proj_system_reg_projectfactory.pkgdef</path>
  </entry>
  <entry>
    <record>771</record>
    <time>2025/12/04 15:38:15.813</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>772</record>
    <time>2025/12/04 15:38:15.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>773</record>
    <time>2025/12/04 15:38:15.820</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>774</record>
    <time>2025/12/04 15:38:15.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>775</record>
    <time>2025/12/04 15:38:15.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>776</record>
    <time>2025/12/04 15:38:15.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>777</record>
    <time>2025/12/04 15:38:15.830</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>778</record>
    <time>2025/12/04 15:38:15.832</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>779</record>
    <time>2025/12/04 15:38:15.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>780</record>
    <time>2025/12/04 15:38:15.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>781</record>
    <time>2025/12/04 15:38:15.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>782</record>
    <time>2025/12/04 15:38:15.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>783</record>
    <time>2025/12/04 15:38:15.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>784</record>
    <time>2025/12/04 15:38:15.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>785</record>
    <time>2025/12/04 15:38:15.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>786</record>
    <time>2025/12/04 15:38:15.852</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>787</record>
    <time>2025/12/04 15:38:15.855</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>788</record>
    <time>2025/12/04 15:38:15.857</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>789</record>
    <time>2025/12/04 15:38:15.860</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>790</record>
    <time>2025/12/04 15:38:15.863</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>791</record>
    <time>2025/12/04 15:38:15.865</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>792</record>
    <time>2025/12/04 15:38:15.868</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>793</record>
    <time>2025/12/04 15:38:15.870</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>794</record>
    <time>2025/12/04 15:38:15.873</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>795</record>
    <time>2025/12/04 15:38:15.875</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>796</record>
    <time>2025/12/04 15:38:15.877</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>797</record>
    <time>2025/12/04 15:38:15.879</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>798</record>
    <time>2025/12/04 15:38:15.881</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\F456DDB594FB744E18D9D5F71FF3C3291C59F167792A559CAF37B5A6198D3B1C&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>799</record>
    <time>2025/12/04 15:38:15.884</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>800</record>
    <time>2025/12/04 15:38:15.886</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>801</record>
    <time>2025/12/04 15:38:15.889</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>802</record>
    <time>2025/12/04 15:38:15.891</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>803</record>
    <time>2025/12/04 15:38:15.893</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>804</record>
    <time>2025/12/04 15:38:15.895</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>805</record>
    <time>2025/12/04 15:38:15.897</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>806</record>
    <time>2025/12/04 15:38:15.898</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>807</record>
    <time>2025/12/04 15:38:15.901</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>808</record>
    <time>2025/12/04 15:38:15.904</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>809</record>
    <time>2025/12/04 15:38:15.906</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>810</record>
    <time>2025/12/04 15:38:15.908</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>811</record>
    <time>2025/12/04 15:38:15.911</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>812</record>
    <time>2025/12/04 15:38:15.913</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>813</record>
    <time>2025/12/04 15:38:15.916</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>814</record>
    <time>2025/12/04 15:38:15.918</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>815</record>
    <time>2025/12/04 15:38:15.921</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>816</record>
    <time>2025/12/04 15:38:15.923</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>817</record>
    <time>2025/12/04 15:38:15.926</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>818</record>
    <time>2025/12/04 15:38:15.928</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>819</record>
    <time>2025/12/04 15:38:15.931</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>820</record>
    <time>2025/12/04 15:38:15.933</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>821</record>
    <time>2025/12/04 15:38:15.936</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>822</record>
    <time>2025/12/04 15:38:15.938</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>823</record>
    <time>2025/12/04 15:38:15.941</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>824</record>
    <time>2025/12/04 15:38:15.943</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>825</record>
    <time>2025/12/04 15:38:15.945</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>826</record>
    <time>2025/12/04 15:38:15.947</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>827</record>
    <time>2025/12/04 15:38:15.948</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>828</record>
    <time>2025/12/04 15:38:15.951</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>829</record>
    <time>2025/12/04 15:38:15.954</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>830</record>
    <time>2025/12/04 15:38:15.955</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>831</record>
    <time>2025/12/04 15:38:15.957</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>832</record>
    <time>2025/12/04 15:38:15.959</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>833</record>
    <time>2025/12/04 15:38:15.962</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>834</record>
    <time>2025/12/04 15:38:15.963</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>835</record>
    <time>2025/12/04 15:38:15.966</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>836</record>
    <time>2025/12/04 15:38:15.968</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>837</record>
    <time>2025/12/04 15:38:15.971</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>838</record>
    <time>2025/12/04 15:38:15.973</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>839</record>
    <time>2025/12/04 15:38:15.975</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>840</record>
    <time>2025/12/04 15:38:15.978</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>841</record>
    <time>2025/12/04 15:38:15.980</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>842</record>
    <time>2025/12/04 15:38:15.983</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>843</record>
    <time>2025/12/04 15:38:15.985</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>844</record>
    <time>2025/12/04 15:38:15.988</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>845</record>
    <time>2025/12/04 15:38:15.990</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>846</record>
    <time>2025/12/04 15:38:15.992</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>847</record>
    <time>2025/12/04 15:38:15.993</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>848</record>
    <time>2025/12/04 15:38:15.995</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>849</record>
    <time>2025/12/04 15:38:15.997</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>850</record>
    <time>2025/12/04 15:38:15.999</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>851</record>
    <time>2025/12/04 15:38:16.001</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>852</record>
    <time>2025/12/04 15:38:16.003</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>853</record>
    <time>2025/12/04 15:38:16.005</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>854</record>
    <time>2025/12/04 15:38:16.007</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>855</record>
    <time>2025/12/04 15:38:16.009</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>856</record>
    <time>2025/12/04 15:38:16.012</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>857</record>
    <time>2025/12/04 15:38:16.014</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>858</record>
    <time>2025/12/04 15:38:16.017</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>859</record>
    <time>2025/12/04 15:38:16.020</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>860</record>
    <time>2025/12/04 15:38:16.022</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>861</record>
    <time>2025/12/04 15:38:16.023</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>862</record>
    <time>2025/12/04 15:38:16.026</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>863</record>
    <time>2025/12/04 15:38:16.028</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>864</record>
    <time>2025/12/04 15:38:16.030</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>865</record>
    <time>2025/12/04 15:38:16.032</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>866</record>
    <time>2025/12/04 15:38:16.035</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>867</record>
    <time>2025/12/04 15:38:16.037</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>868</record>
    <time>2025/12/04 15:38:16.040</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>869</record>
    <time>2025/12/04 15:38:16.042</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>870</record>
    <time>2025/12/04 15:38:16.046</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>871</record>
    <time>2025/12/04 15:38:16.048</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\3BFE009B8FD2AAA6923C1C3150F104379629E91B54AEEC7D5E7A040B743C0861&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>872</record>
    <time>2025/12/04 15:38:16.052</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>873</record>
    <time>2025/12/04 15:38:16.055</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>874</record>
    <time>2025/12/04 15:38:16.057</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>875</record>
    <time>2025/12/04 15:38:16.059</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>876</record>
    <time>2025/12/04 15:38:16.060</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>877</record>
    <time>2025/12/04 15:38:16.062</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>878</record>
    <time>2025/12/04 15:38:16.064</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>879</record>
    <time>2025/12/04 15:38:16.066</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>880</record>
    <time>2025/12/04 15:38:16.067</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>881</record>
    <time>2025/12/04 15:38:16.068</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>882</record>
    <time>2025/12/04 15:38:16.070</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>883</record>
    <time>2025/12/04 15:38:16.071</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>884</record>
    <time>2025/12/04 15:38:16.073</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>885</record>
    <time>2025/12/04 15:38:16.075</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>886</record>
    <time>2025/12/04 15:38:16.077</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>887</record>
    <time>2025/12/04 15:38:16.080</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>888</record>
    <time>2025/12/04 15:38:16.082</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>889</record>
    <time>2025/12/04 15:38:16.084</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>890</record>
    <time>2025/12/04 15:38:16.086</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>891</record>
    <time>2025/12/04 15:38:16.088</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>892</record>
    <time>2025/12/04 15:38:16.091</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>893</record>
    <time>2025/12/04 15:38:16.093</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>894</record>
    <time>2025/12/04 15:38:16.096</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>895</record>
    <time>2025/12/04 15:38:16.098</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>896</record>
    <time>2025/12/04 15:38:16.101</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>897</record>
    <time>2025/12/04 15:38:16.102</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>898</record>
    <time>2025/12/04 15:38:16.104</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>899</record>
    <time>2025/12/04 15:38:16.107</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>900</record>
    <time>2025/12/04 15:38:16.109</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>901</record>
    <time>2025/12/04 15:38:16.112</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>902</record>
    <time>2025/12/04 15:38:16.114</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>903</record>
    <time>2025/12/04 15:38:16.117</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>904</record>
    <time>2025/12/04 15:38:16.119</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>905</record>
    <time>2025/12/04 15:38:16.122</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>906</record>
    <time>2025/12/04 15:38:16.124</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>907</record>
    <time>2025/12/04 15:38:16.127</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>908</record>
    <time>2025/12/04 15:38:16.129</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>909</record>
    <time>2025/12/04 15:38:16.132</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>910</record>
    <time>2025/12/04 15:38:16.134</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>911</record>
    <time>2025/12/04 15:38:16.137</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>912</record>
    <time>2025/12/04 15:38:16.139</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>913</record>
    <time>2025/12/04 15:38:16.142</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>914</record>
    <time>2025/12/04 15:38:16.143</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>915</record>
    <time>2025/12/04 15:38:16.147</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>916</record>
    <time>2025/12/04 15:38:16.149</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>917</record>
    <time>2025/12/04 15:38:16.152</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>918</record>
    <time>2025/12/04 15:38:16.155</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>919</record>
    <time>2025/12/04 15:38:16.157</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>920</record>
    <time>2025/12/04 15:38:16.159</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>921</record>
    <time>2025/12/04 15:38:16.162</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>922</record>
    <time>2025/12/04 15:38:16.165</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>923</record>
    <time>2025/12/04 15:38:16.168</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>924</record>
    <time>2025/12/04 15:38:16.171</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>925</record>
    <time>2025/12/04 15:38:16.173</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>926</record>
    <time>2025/12/04 15:38:16.175</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>927</record>
    <time>2025/12/04 15:38:16.178</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>928</record>
    <time>2025/12/04 15:38:16.181</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>929</record>
    <time>2025/12/04 15:38:16.183</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>930</record>
    <time>2025/12/04 15:38:16.186</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>931</record>
    <time>2025/12/04 15:38:16.188</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>932</record>
    <time>2025/12/04 15:38:16.191</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>933</record>
    <time>2025/12/04 15:38:16.191</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>934</record>
    <time>2025/12/04 15:38:16.191</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;Index&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>935</record>
    <time>2025/12/04 15:38:16.192</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>936</record>
    <time>2025/12/04 15:38:16.195</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>937</record>
    <time>2025/12/04 15:38:16.197</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>938</record>
    <time>2025/12/04 15:38:16.199</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>939</record>
    <time>2025/12/04 15:38:16.202</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>940</record>
    <time>2025/12/04 15:38:16.204</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>941</record>
    <time>2025/12/04 15:38:16.206</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>942</record>
    <time>2025/12/04 15:38:16.208</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>943</record>
    <time>2025/12/04 15:38:16.210</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>944</record>
    <time>2025/12/04 15:38:16.212</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>945</record>
    <time>2025/12/04 15:38:16.215</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>946</record>
    <time>2025/12/04 15:38:16.217</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>947</record>
    <time>2025/12/04 15:38:16.219</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>948</record>
    <time>2025/12/04 15:38:16.222</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>949</record>
    <time>2025/12/04 15:38:16.224</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\1833B92E23A21DC08104D53BA47327164F905DBA80D2B4F6F0ABC796372E480E&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>950</record>
    <time>2025/12/04 15:38:16.227</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>951</record>
    <time>2025/12/04 15:38:16.227</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>952</record>
    <time>2025/12/04 15:38:16.227</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;Index&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>953</record>
    <time>2025/12/04 15:38:16.229</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>954</record>
    <time>2025/12/04 15:38:16.231</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>955</record>
    <time>2025/12/04 15:38:16.234</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>956</record>
    <time>2025/12/04 15:38:16.237</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>957</record>
    <time>2025/12/04 15:38:16.239</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>958</record>
    <time>2025/12/04 15:38:16.241</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>959</record>
    <time>2025/12/04 15:38:16.243</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>960</record>
    <time>2025/12/04 15:38:16.247</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>961</record>
    <time>2025/12/04 15:38:16.250</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>962</record>
    <time>2025/12/04 15:38:16.253</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>963</record>
    <time>2025/12/04 15:38:16.255</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>964</record>
    <time>2025/12/04 15:38:16.257</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>965</record>
    <time>2025/12/04 15:38:16.260</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>966</record>
    <time>2025/12/04 15:38:16.262</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>967</record>
    <time>2025/12/04 15:38:16.265</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>968</record>
    <time>2025/12/04 15:38:16.267</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>969</record>
    <time>2025/12/04 15:38:16.269</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>970</record>
    <time>2025/12/04 15:38:16.272</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>971</record>
    <time>2025/12/04 15:38:16.275</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>972</record>
    <time>2025/12/04 15:38:16.277</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>973</record>
    <time>2025/12/04 15:38:16.280</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>974</record>
    <time>2025/12/04 15:38:16.283</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>975</record>
    <time>2025/12/04 15:38:16.285</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>976</record>
    <time>2025/12/04 15:38:16.286</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>977</record>
    <time>2025/12/04 15:38:16.289</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>978</record>
    <time>2025/12/04 15:38:16.292</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>979</record>
    <time>2025/12/04 15:38:16.294</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>980</record>
    <time>2025/12/04 15:38:16.296</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>981</record>
    <time>2025/12/04 15:38:16.298</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>982</record>
    <time>2025/12/04 15:38:16.300</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>983</record>
    <time>2025/12/04 15:38:16.303</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>984</record>
    <time>2025/12/04 15:38:16.304</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>985</record>
    <time>2025/12/04 15:38:16.307</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>986</record>
    <time>2025/12/04 15:38:16.309</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>987</record>
    <time>2025/12/04 15:38:16.312</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>988</record>
    <time>2025/12/04 15:38:16.314</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>989</record>
    <time>2025/12/04 15:38:16.317</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>990</record>
    <time>2025/12/04 15:38:16.320</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>991</record>
    <time>2025/12/04 15:38:16.323</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>992</record>
    <time>2025/12/04 15:38:16.325</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>993</record>
    <time>2025/12/04 15:38:16.328</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>994</record>
    <time>2025/12/04 15:38:16.329</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>995</record>
    <time>2025/12/04 15:38:16.332</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>996</record>
    <time>2025/12/04 15:38:16.334</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>997</record>
    <time>2025/12/04 15:38:16.337</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{512be089-83ec-4cc6-8483-cf16565ae209}\Toolbox\DefaultContent\32EA7187968175D52792384D48514855C0C1D2FBA288E9B0DE353179F61C1235&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>998</record>
    <time>2025/12/04 15:38:16.348</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{cd07c22a-d51f-4064-afdb-10cd01d91020}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>999</record>
    <time>2025/12/04 15:38:16.348</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{cd07c22a-d51f-4064-afdb-10cd01d91020}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1000</record>
    <time>2025/12/04 15:38:16.350</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{f11acc28-31d1-4c80-a34b-f4e09d3d753c}&apos; for value &apos;DisplayName&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1001</record>
    <time>2025/12/04 15:38:16.350</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{f11acc28-31d1-4c80-a34b-f4e09d3d753c}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1002</record>
    <time>2025/12/04 15:38:16.356</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\XAML Designer&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1003</record>
    <time>2025/12/04 15:38:16.356</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\XAML Designer&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1004</record>
    <time>2025/12/04 15:38:16.357</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\XAML Designer&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1005</record>
    <time>2025/12/04 15:38:16.357</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\XAML Designer&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\designtools\microsoft.visualstudio.designtools.xamldesignerhost.pkgdef</path>
  </entry>
  <entry>
    <record>1006</record>
    <time>2025/12/04 15:38:16.400</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\desktopbridge\microsoft.visualstudio.desktopbridge.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>1007</record>
    <time>2025/12/04 15:38:16.403</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\diagnostics\diagnostics.common.pkgdef</path>
  </entry>
  <entry>
    <record>1008</record>
    <time>2025/12/04 15:38:16.405</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\ebf\microsoft.visualstudio.workspace.externalbuildframework.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1009</record>
    <time>2025/12/04 15:38:16.409</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editor\microsoft.visualstudio.diff.commandlineswitch.pkgdef</path>
  </entry>
  <entry>
    <record>1010</record>
    <time>2025/12/04 15:38:16.414</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editor\microsoft.visualstudio.diff.pkgdef</path>
  </entry>
  <entry>
    <record>1011</record>
    <time>2025/12/04 15:38:16.418</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editor\microsoft.visualstudio.editor.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1012</record>
    <time>2025/12/04 15:38:16.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editor\microsoft.visualstudio.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1013</record>
    <time>2025/12/04 15:38:16.441</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8B382828-6202-11D1-8870-0000F87579D2}&apos; for value &apos;DeferUntilIntellisenseIsReady&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editor\microsoft.visualstudio.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1014</record>
    <time>2025/12/04 15:38:16.466</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editorconfig\command\microsoft.visualstudio.templates.editorconfig.command.pkgdef</path>
  </entry>
  <entry>
    <record>1015</record>
    <time>2025/12/04 15:38:16.467</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editorconfig\wizard\microsoft.visualstudio.templates.editorconfig.wizard.setup.pkgdef</path>
  </entry>
  <entry>
    <record>1016</record>
    <time>2025/12/04 15:38:16.468</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editors\microsoft.visualstudio.editors.clickonce.pkgdef</path>
  </entry>
  <entry>
    <record>1017</record>
    <time>2025/12/04 15:38:16.472</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editors\microsoft.visualstudio.editors.wcf.pkgdef</path>
  </entry>
  <entry>
    <record>1018</record>
    <time>2025/12/04 15:38:16.481</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\editors\microsoft.vsdesigner.wcf.pkgdef</path>
  </entry>
  <entry>
    <record>1019</record>
    <time>2025/12/04 15:38:16.484</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\eftools\microsoft.data.entity.design.bootstrappackage.pkgdef</path>
  </entry>
  <entry>
    <record>1020</record>
    <time>2025/12/04 15:38:16.486</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\eftools\microsoft.data.entity.design.package.pkgdef</path>
  </entry>
  <entry>
    <record>1021</record>
    <time>2025/12/04 15:38:16.502</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.fonts.pkgdef</path>
  </entry>
  <entry>
    <record>1022</record>
    <time>2025/12/04 15:38:16.503</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1023</record>
    <time>2025/12/04 15:38:16.504</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ccfc100e-c8fd-4f9d-abe1-abb3f2240048}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1024</record>
    <time>2025/12/04 15:38:16.504</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ccfc100e-c8fd-4f9d-abe1-abb3f2240048}&apos; for value &apos;InprocServer32&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1025</record>
    <time>2025/12/04 15:38:16.504</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ccfc100e-c8fd-4f9d-abe1-abb3f2240048}&apos; for value &apos;Class&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1026</record>
    <time>2025/12/04 15:38:16.504</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ccfc100e-c8fd-4f9d-abe1-abb3f2240048}&apos; for value &apos;CodeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1027</record>
    <time>2025/12/04 15:38:16.504</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{ccfc100e-c8fd-4f9d-abe1-abb3f2240048}&apos; for value &apos;AllowsBackgroundLoad&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\embedded\microsoft.visualstudio.embedded.pkgdef</path>
  </entry>
  <entry>
    <record>1028</record>
    <time>2025/12/04 15:38:16.506</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\errorlist\microsoft.visualstudio.errorlistpkg.pkgdef</path>
  </entry>
  <entry>
    <record>1029</record>
    <time>2025/12/04 15:38:16.513</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\extensibility\microsoft.visualstudio.extensibility.redirects.pkgdef</path>
  </entry>
  <entry>
    <record>1030</record>
    <time>2025/12/04 15:38:16.514</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\extensibility\microsoft.visualstudio.extensibility.vspackage.pkgdef</path>
  </entry>
  <entry>
    <record>1031</record>
    <time>2025/12/04 15:38:16.516</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\extensibilityproject\microsoft.visualstudio.extensibility.debugging.debughost.pkgdef</path>
  </entry>
  <entry>
    <record>1032</record>
    <time>2025/12/04 15:38:16.516</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\extensibilityproject\microsoft.visualstudio.extensibility.project.pkgdef</path>
  </entry>
  <entry>
    <record>1033</record>
    <time>2025/12/04 15:38:16.519</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\errlook\errlook.pkgdef</path>
  </entry>
  <entry>
    <record>1034</record>
    <time>2025/12/04 15:38:16.519</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\guidgen\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1035</record>
    <time>2025/12/04 15:38:16.520</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1036</record>
    <time>2025/12/04 15:38:16.521</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolOpt&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1037</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolTitleResID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1038</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolArg&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1039</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolCmd&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1040</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1041</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\External Tools\Create GUID&apos; for value &apos;ToolTitlePkg&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\external tools\utilsprereq\guidgen.pkgdef</path>
  </entry>
  <entry>
    <record>1042</record>
    <time>2025/12/04 15:38:16.522</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1043</record>
    <time>2025/12/04 15:38:16.526</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1044</record>
    <time>2025/12/04 15:38:16.526</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1045</record>
    <time>2025/12/04 15:38:16.527</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1046</record>
    <time>2025/12/04 15:38:16.528</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1047</record>
    <time>2025/12/04 15:38:16.528</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1048</record>
    <time>2025/12/04 15:38:16.529</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{8a5aa6cf-46e3-4520-a70a-7393d15233e9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.editor.pkgdef</path>
  </entry>
  <entry>
    <record>1049</record>
    <time>2025/12/04 15:38:16.538</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.languageservice.base.pkgdef</path>
  </entry>
  <entry>
    <record>1050</record>
    <time>2025/12/04 15:38:16.539</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.languageservice.pkgdef</path>
  </entry>
  <entry>
    <record>1051</record>
    <time>2025/12/04 15:38:16.540</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.base.pkgdef</path>
  </entry>
  <entry>
    <record>1052</record>
    <time>2025/12/04 15:38:16.540</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1053</record>
    <time>2025/12/04 15:38:16.544</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{C5B4122F-47EF-AF14-BFE1-C01B3AC8EE06}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1054</record>
    <time>2025/12/04 15:38:16.544</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{C5B4122F-47EF-AF14-BFE1-C01B3AC8EE06}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1055</record>
    <time>2025/12/04 15:38:16.544</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{C5B4122F-47EF-AF14-BFE1-C01B3AC8EE06}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1056</record>
    <time>2025/12/04 15:38:16.544</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{C5B4122F-47EF-AF14-BFE1-C01B3AC8EE06}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1057</record>
    <time>2025/12/04 15:38:16.544</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{C5B4122F-47EF-AF14-BFE1-C01B3AC8EE06}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.projectsystem.fsharp.pkgdef</path>
  </entry>
  <entry>
    <record>1058</record>
    <time>2025/12/04 15:38:16.545</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\fsharp.vs.fsi.pkgdef</path>
  </entry>
  <entry>
    <record>1059</record>
    <time>2025/12/04 15:38:16.546</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\registerfsharppackage.pkgdef</path>
  </entry>
  <entry>
    <record>1060</record>
    <time>2025/12/04 15:38:16.548</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\InstalledProducts\Microsoft Visual F#&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\fsharp\registerfsharppackage.pkgdef</path>
  </entry>
  <entry>
    <record>1061</record>
    <time>2025/12/04 15:38:16.559</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\hotreload\microsoft.visualstudio.hotreload.components.pkgdef</path>
  </entry>
  <entry>
    <record>1062</record>
    <time>2025/12/04 15:38:16.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\identity\microsoft.visualstudio.identity.pkgdef</path>
  </entry>
  <entry>
    <record>1063</record>
    <time>2025/12/04 15:38:16.568</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\identitygs\microsoft.developer.identityservicegs.pkgdef</path>
  </entry>
  <entry>
    <record>1064</record>
    <time>2025/12/04 15:38:16.568</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\intellitrace\intellitrace.pkgdef</path>
  </entry>
  <entry>
    <record>1065</record>
    <time>2025/12/04 15:38:16.571</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\interactive\interactive.pkgdef</path>
  </entry>
  <entry>
    <record>1066</record>
    <time>2025/12/04 15:38:16.571</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\interactive\microsoft.visualstudio.interactive.setup.pkgdef</path>
  </entry>
  <entry>
    <record>1067</record>
    <time>2025/12/04 15:38:16.579</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\interactivewindow\microsoft.visualstudio.vsinteractivewindow.pkgdef</path>
  </entry>
  <entry>
    <record>1068</record>
    <time>2025/12/04 15:38:16.582</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\jsdiagnostics\debugger\debugadapterextensions.pkgdef</path>
  </entry>
  <entry>
    <record>1069</record>
    <time>2025/12/04 15:38:16.594</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\languageserver.container.pkgdef</path>
  </entry>
  <entry>
    <record>1070</record>
    <time>2025/12/04 15:38:16.595</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\microsoft.visualstudio.languageserver.client.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1071</record>
    <time>2025/12/04 15:38:16.597</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\microsoft.visualstudio.languageserver.client.pkgdef</path>
  </entry>
  <entry>
    <record>1072</record>
    <time>2025/12/04 15:38:16.598</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.connectionmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1073</record>
    <time>2025/12/04 15:38:16.599</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.connectionmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1074</record>
    <time>2025/12/04 15:38:16.599</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.connectionmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1075</record>
    <time>2025/12/04 15:38:16.599</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.connectionmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1076</record>
    <time>2025/12/04 15:38:16.600</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.connectionmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1077</record>
    <time>2025/12/04 15:38:16.608</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.coredebugging.pkgdef</path>
  </entry>
  <entry>
    <record>1078</record>
    <time>2025/12/04 15:38:16.609</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.project.pkgdef</path>
  </entry>
  <entry>
    <record>1079</record>
    <time>2025/12/04 15:38:16.613</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>1080</record>
    <time>2025/12/04 15:38:16.615</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.remotebrowser.pkgdef</path>
  </entry>
  <entry>
    <record>1081</record>
    <time>2025/12/04 15:38:16.616</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutoLoadPackages\{cc5e94a2-119c-48b4-ba06-82b5bd736301}&apos; for value &apos;{afec4548-2579-49ff-9f50-166b7051caf8}&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.remotebrowser.pkgdef</path>
  </entry>
  <entry>
    <record>1082</record>
    <time>2025/12/04 15:38:16.617</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.remotebrowser.pkgdef</path>
  </entry>
  <entry>
    <record>1083</record>
    <time>2025/12/04 15:38:16.617</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.remotebrowser.pkgdef</path>
  </entry>
  <entry>
    <record>1084</record>
    <time>2025/12/04 15:38:16.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\linux\linux\microsoft.visualstudio.linux.wslinstaller.pkgdef</path>
  </entry>
  <entry>
    <record>1085</record>
    <time>2025/12/04 15:38:16.619</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\markdown\microsoft.visualstudio.platform.markdown.pkgdef</path>
  </entry>
  <entry>
    <record>1086</record>
    <time>2025/12/04 15:38:16.625</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.project.pkgdef</path>
  </entry>
  <entry>
    <record>1087</record>
    <time>2025/12/04 15:38:16.630</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>1088</record>
    <time>2025/12/04 15:38:16.632</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.theme.pkgdef</path>
  </entry>
  <entry>
    <record>1089</record>
    <time>2025/12/04 15:38:16.634</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.toolsoptionspage.pkgdef</path>
  </entry>
  <entry>
    <record>1090</record>
    <time>2025/12/04 15:38:16.634</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.toolsoptionspage.pkgdef</path>
  </entry>
  <entry>
    <record>1091</record>
    <time>2025/12/04 15:38:16.634</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Cross Platform&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\android\microsoft.visualstudio.android.toolsoptionspage.pkgdef</path>
  </entry>
  <entry>
    <record>1092</record>
    <time>2025/12/04 15:38:16.635</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.androiddebuglauncher.pkgdef</path>
  </entry>
  <entry>
    <record>1093</record>
    <time>2025/12/04 15:38:16.636</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.iosdebuglauncher.pkgdef</path>
  </entry>
  <entry>
    <record>1094</record>
    <time>2025/12/04 15:38:16.636</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.kofe.engine.pkgdef</path>
  </entry>
  <entry>
    <record>1095</record>
    <time>2025/12/04 15:38:16.755</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.kofe.package.pkgdef</path>
  </entry>
  <entry>
    <record>1096</record>
    <time>2025/12/04 15:38:16.756</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.midebugengine.pkgdef</path>
  </entry>
  <entry>
    <record>1097</record>
    <time>2025/12/04 15:38:16.760</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.midebugpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1098</record>
    <time>2025/12/04 15:38:16.761</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\mdd\debugger\microsoft.sshdebugps.pkgdef</path>
  </entry>
  <entry>
    <record>1099</record>
    <time>2025/12/04 15:38:16.767</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\microsoft.visualstudio.copilot.contracts\microsoft.visualstudio.copilot.contracts.pkgdef</path>
  </entry>
  <entry>
    <record>1100</record>
    <time>2025/12/04 15:38:16.770</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\navigateto\microsoft.visualstudio.platform.navigateto.pkgdef</path>
  </entry>
  <entry>
    <record>1101</record>
    <time>2025/12/04 15:38:16.772</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\generalsettings.pkgdef</path>
  </entry>
  <entry>
    <record>1102</record>
    <time>2025/12/04 15:38:16.773</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.solutionrestoremanager.pkgdef</path>
  </entry>
  <entry>
    <record>1103</record>
    <time>2025/12/04 15:38:16.790</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1104</record>
    <time>2025/12/04 15:38:16.795</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1105</record>
    <time>2025/12/04 15:38:16.795</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1106</record>
    <time>2025/12/04 15:38:16.796</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1107</record>
    <time>2025/12/04 15:38:16.796</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1108</record>
    <time>2025/12/04 15:38:16.797</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1109</record>
    <time>2025/12/04 15:38:16.797</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1110</record>
    <time>2025/12/04 15:38:16.798</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1111</record>
    <time>2025/12/04 15:38:16.799</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1112</record>
    <time>2025/12/04 15:38:16.800</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1113</record>
    <time>2025/12/04 15:38:16.800</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1114</record>
    <time>2025/12/04 15:38:16.800</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1115</record>
    <time>2025/12/04 15:38:16.800</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1116</record>
    <time>2025/12/04 15:38:16.801</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1117</record>
    <time>2025/12/04 15:38:16.801</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1118</record>
    <time>2025/12/04 15:38:16.802</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1119</record>
    <time>2025/12/04 15:38:16.802</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\NuGet Package Manager&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1120</record>
    <time>2025/12/04 15:38:16.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1121</record>
    <time>2025/12/04 15:38:16.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1122</record>
    <time>2025/12/04 15:38:16.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1123</record>
    <time>2025/12/04 15:38:16.812</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1124</record>
    <time>2025/12/04 15:38:16.813</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1125</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1126</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1127</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1128</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1129</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1130</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1131</record>
    <time>2025/12/04 15:38:16.814</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1132</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1133</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1134</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1135</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1136</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1137</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1138</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1139</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1140</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1141</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1142</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1143</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1144</record>
    <time>2025/12/04 15:38:16.815</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1145</record>
    <time>2025/12/04 15:38:16.816</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1146</record>
    <time>2025/12/04 15:38:16.817</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1147</record>
    <time>2025/12/04 15:38:16.817</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1148</record>
    <time>2025/12/04 15:38:16.817</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1149</record>
    <time>2025/12/04 15:38:16.817</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1150</record>
    <time>2025/12/04 15:38:16.817</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1151</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1152</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1153</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1154</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1155</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1156</record>
    <time>2025/12/04 15:38:16.818</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1157</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1158</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1159</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1160</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1161</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1162</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1163</record>
    <time>2025/12/04 15:38:16.819</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1164</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1165</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1166</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1167</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1168</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1169</record>
    <time>2025/12/04 15:38:16.821</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1170</record>
    <time>2025/12/04 15:38:16.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1171</record>
    <time>2025/12/04 15:38:16.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1172</record>
    <time>2025/12/04 15:38:16.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1173</record>
    <time>2025/12/04 15:38:16.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1174</record>
    <time>2025/12/04 15:38:16.822</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1175</record>
    <time>2025/12/04 15:38:16.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1176</record>
    <time>2025/12/04 15:38:16.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1177</record>
    <time>2025/12/04 15:38:16.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1178</record>
    <time>2025/12/04 15:38:16.823</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1179</record>
    <time>2025/12/04 15:38:16.824</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1180</record>
    <time>2025/12/04 15:38:16.824</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1181</record>
    <time>2025/12/04 15:38:16.824</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1182</record>
    <time>2025/12/04 15:38:16.824</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1183</record>
    <time>2025/12/04 15:38:16.824</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1184</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1185</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1186</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1187</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1188</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1189</record>
    <time>2025/12/04 15:38:16.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1190</record>
    <time>2025/12/04 15:38:16.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1191</record>
    <time>2025/12/04 15:38:16.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1192</record>
    <time>2025/12/04 15:38:16.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1193</record>
    <time>2025/12/04 15:38:16.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1194</record>
    <time>2025/12/04 15:38:16.826</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1195</record>
    <time>2025/12/04 15:38:16.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1196</record>
    <time>2025/12/04 15:38:16.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1197</record>
    <time>2025/12/04 15:38:16.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1198</record>
    <time>2025/12/04 15:38:16.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1199</record>
    <time>2025/12/04 15:38:16.827</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1200</record>
    <time>2025/12/04 15:38:16.828</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1201</record>
    <time>2025/12/04 15:38:16.828</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1202</record>
    <time>2025/12/04 15:38:16.828</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1203</record>
    <time>2025/12/04 15:38:16.828</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1204</record>
    <time>2025/12/04 15:38:16.828</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1205</record>
    <time>2025/12/04 15:38:16.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1206</record>
    <time>2025/12/04 15:38:16.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1207</record>
    <time>2025/12/04 15:38:16.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1208</record>
    <time>2025/12/04 15:38:16.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1209</record>
    <time>2025/12/04 15:38:16.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.tools.pkgdef</path>
  </entry>
  <entry>
    <record>1210</record>
    <time>2025/12/04 15:38:16.830</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1211</record>
    <time>2025/12/04 15:38:16.832</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1212</record>
    <time>2025/12/04 15:38:16.832</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1213</record>
    <time>2025/12/04 15:38:16.832</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1214</record>
    <time>2025/12/04 15:38:16.832</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1215</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F97011C3-2BC5-D46F-A960-3EC71B5B4A5F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1216</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7A20AAC-370E-F979-7A75-B599C41EBF2F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1217</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7A20AAC-370E-F979-7A75-B599C41EBF2F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1218</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7A20AAC-370E-F979-7A75-B599C41EBF2F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1219</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7A20AAC-370E-F979-7A75-B599C41EBF2F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1220</record>
    <time>2025/12/04 15:38:16.833</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{A7A20AAC-370E-F979-7A75-B599C41EBF2F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1221</record>
    <time>2025/12/04 15:38:16.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1222</record>
    <time>2025/12/04 15:38:16.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1223</record>
    <time>2025/12/04 15:38:16.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1224</record>
    <time>2025/12/04 15:38:16.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1225</record>
    <time>2025/12/04 15:38:16.834</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E0D29F5B-B865-C7DA-FFF7-32A195AD0DC8}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1226</record>
    <time>2025/12/04 15:38:16.835</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1227</record>
    <time>2025/12/04 15:38:16.835</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1228</record>
    <time>2025/12/04 15:38:16.835</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1229</record>
    <time>2025/12/04 15:38:16.835</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1230</record>
    <time>2025/12/04 15:38:16.835</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{602060EE-471C-802D-8275-D0568D1E90DF}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1231</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1232</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1233</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1234</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1235</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{38EEFB5C-A785-EA28-71E3-FAC00E5DAF06}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1236</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1237</record>
    <time>2025/12/04 15:38:16.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1238</record>
    <time>2025/12/04 15:38:16.837</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1239</record>
    <time>2025/12/04 15:38:16.837</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1240</record>
    <time>2025/12/04 15:38:16.837</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6AC3C468-FBD8-4413-437A-380988C366C9}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1241</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1242</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1243</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1244</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1245</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{B1D605FB-A121-F8EE-8880-E7563004A220}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1246</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1247</record>
    <time>2025/12/04 15:38:16.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1248</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1249</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1250</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{257C2C2E-7B01-B670-973B-ADA881F1C31F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1251</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1252</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1253</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1254</record>
    <time>2025/12/04 15:38:16.839</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1255</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4FC15490-9AC0-1E18-5337-06DF3EF22211}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1256</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1257</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1258</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1259</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1260</record>
    <time>2025/12/04 15:38:16.840</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{079DE0EB-D19F-8F04-32C7-0706BBEDD7F5}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1261</record>
    <time>2025/12/04 15:38:16.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1262</record>
    <time>2025/12/04 15:38:16.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1263</record>
    <time>2025/12/04 15:38:16.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1264</record>
    <time>2025/12/04 15:38:16.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1265</record>
    <time>2025/12/04 15:38:16.841</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{73E77851-0C0B-F2A8-0F30-12F0080FCE9B}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1266</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1267</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1268</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1269</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1270</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{E60B69A4-CAE0-5E57-CE2D-ACC09E8CAC3D}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1271</record>
    <time>2025/12/04 15:38:16.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{D9DDF719-6D5E-7013-5C08-1CA3B946B3CB}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1272</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{D9DDF719-6D5E-7013-5C08-1CA3B946B3CB}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1273</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{D9DDF719-6D5E-7013-5C08-1CA3B946B3CB}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1274</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{D9DDF719-6D5E-7013-5C08-1CA3B946B3CB}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1275</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{D9DDF719-6D5E-7013-5C08-1CA3B946B3CB}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1276</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1277</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1278</record>
    <time>2025/12/04 15:38:16.843</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1279</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1280</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{6D22D234-3892-B75B-6CD9-1FD29E46144F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1281</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1282</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1283</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1284</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1285</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{8277475D-3B28-A557-52D8-A19F9E4B2FCB}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1286</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1287</record>
    <time>2025/12/04 15:38:16.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1288</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1289</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1290</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5B9BA79E-D523-085B-BE2E-76772CF0CF33}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1291</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1292</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1293</record>
    <time>2025/12/04 15:38:16.846</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1294</record>
    <time>2025/12/04 15:38:16.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1295</record>
    <time>2025/12/04 15:38:16.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{5956096F-ED81-FBD6-233B-9137DE7D98E2}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1296</record>
    <time>2025/12/04 15:38:16.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1297</record>
    <time>2025/12/04 15:38:16.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1298</record>
    <time>2025/12/04 15:38:16.847</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1299</record>
    <time>2025/12/04 15:38:16.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1300</record>
    <time>2025/12/04 15:38:16.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{95672079-B855-2EFC-B3A8-BAD90067F0E5}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1301</record>
    <time>2025/12/04 15:38:16.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1302</record>
    <time>2025/12/04 15:38:16.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1303</record>
    <time>2025/12/04 15:38:16.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1304</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1305</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{F7F5810B-5240-44CB-78D8-C5C99094C37F}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1306</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1307</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1308</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1309</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1310</record>
    <time>2025/12/04 15:38:16.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{279EE178-57D2-1913-CA8D-6085D45B929B}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1311</record>
    <time>2025/12/04 15:38:16.850</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{FFC90F8B-B424-C794-519C-BA1602478F5B}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1312</record>
    <time>2025/12/04 15:38:16.850</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{FFC90F8B-B424-C794-519C-BA1602478F5B}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1313</record>
    <time>2025/12/04 15:38:16.850</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{FFC90F8B-B424-C794-519C-BA1602478F5B}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1314</record>
    <time>2025/12/04 15:38:16.850</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{FFC90F8B-B424-C794-519C-BA1602478F5B}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1315</record>
    <time>2025/12/04 15:38:16.850</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{FFC90F8B-B424-C794-519C-BA1602478F5B}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1316</record>
    <time>2025/12/04 15:38:16.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{11A8F2E8-59A3-D239-1AD5-F26664D68098}&apos; for value &apos;name&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1317</record>
    <time>2025/12/04 15:38:16.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{11A8F2E8-59A3-D239-1AD5-F26664D68098}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1318</record>
    <time>2025/12/04 15:38:16.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{11A8F2E8-59A3-D239-1AD5-F26664D68098}&apos; for value &apos;culture&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1319</record>
    <time>2025/12/04 15:38:16.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{11A8F2E8-59A3-D239-1AD5-F26664D68098}&apos; for value &apos;version&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1320</record>
    <time>2025/12/04 15:38:16.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{11A8F2E8-59A3-D239-1AD5-F26664D68098}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nuget\nuget.visualstudio.onlineenvironment.client.pkgdef</path>
  </entry>
  <entry>
    <record>1321</record>
    <time>2025/12/04 15:38:16.852</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\nugetrecommender\nugetrecommender.pkgdef</path>
  </entry>
  <entry>
    <record>1322</record>
    <time>2025/12/04 15:38:16.856</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\objectbrowser\compluslibrarymanager.pkgdef</path>
  </entry>
  <entry>
    <record>1323</record>
    <time>2025/12/04 15:38:16.859</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\openfolder\vsintegrationpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1324</record>
    <time>2025/12/04 15:38:16.873</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\performance tools\microsoft.visualstudio.performancetools.editorintegration.pkgdef</path>
  </entry>
  <entry>
    <record>1325</record>
    <time>2025/12/04 15:38:16.875</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\performance tools\perfpkg.pkgdef</path>
  </entry>
  <entry>
    <record>1326</record>
    <time>2025/12/04 15:38:16.886</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\project\codesharingproj.pkgdef</path>
  </entry>
  <entry>
    <record>1327</record>
    <time>2025/12/04 15:38:16.891</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\project\microsoft.visualstudio.project.vs.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1328</record>
    <time>2025/12/04 15:38:16.898</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\project\microsoft.visualstudio.projectsystem.pkgdef</path>
  </entry>
  <entry>
    <record>1329</record>
    <time>2025/12/04 15:38:16.902</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\project\msbuildproj.pkgdef</path>
  </entry>
  <entry>
    <record>1330</record>
    <time>2025/12/04 15:38:16.905</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\project\sharedprojectfilespackage.pkgdef</path>
  </entry>
  <entry>
    <record>1331</record>
    <time>2025/12/04 15:38:16.908</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\projectservices\microsoft.visualstudio.projectservices.pkgdef</path>
  </entry>
  <entry>
    <record>1332</record>
    <time>2025/12/04 15:38:16.910</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\projectsystemquery\microsoft.visualstudio.projectsystem.query.pkgdef</path>
  </entry>
  <entry>
    <record>1333</record>
    <time>2025/12/04 15:38:16.915</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\projectwizards\newprojectfromexistingpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1334</record>
    <time>2025/12/04 15:38:16.917</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.brokeredservices.pkgdef</path>
  </entry>
  <entry>
    <record>1335</record>
    <time>2025/12/04 15:38:16.941</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.custom.pkgdef</path>
  </entry>
  <entry>
    <record>1336</record>
    <time>2025/12/04 15:38:16.942</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\TextMate\LanguageConfiguration\GrammarMapping&apos; for value &apos;source.css&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.custom.pkgdef</path>
  </entry>
  <entry>
    <record>1337</record>
    <time>2025/12/04 15:38:16.947</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1338</record>
    <time>2025/12/04 15:38:16.949</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\Razor&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1339</record>
    <time>2025/12/04 15:38:16.949</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\Razor&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1340</record>
    <time>2025/12/04 15:38:16.949</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Menus&apos; for value &apos;{13b72f58-279e-49e0-a56d-296be02f0805}&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1341</record>
    <time>2025/12/04 15:38:16.950</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\SettingsManifests\{13B72F58-279E-49E0-A56D-296BE02F0805}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1342</record>
    <time>2025/12/04 15:38:16.950</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\SettingsManifests\{13B72F58-279E-49E0-A56D-296BE02F0805}&apos; for value &apos;ManifestPath&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1343</record>
    <time>2025/12/04 15:38:16.950</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\SettingsManifests\{13B72F58-279E-49E0-A56D-296BE02F0805}&apos; for value &apos;CacheTag&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\razorlanguageservices\microsoft.visualstudio.razorextension.pkgdef</path>
  </entry>
  <entry>
    <record>1344</record>
    <time>2025/12/04 15:38:16.957</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\referencemanager\microsoft.visualstudio.referencemanager.pkgdef</path>
  </entry>
  <entry>
    <record>1345</record>
    <time>2025/12/04 15:38:16.958</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\referencemanager\microsoft.visualstudio.referencemanager.providers.pkgdef</path>
  </entry>
  <entry>
    <record>1346</record>
    <time>2025/12/04 15:38:16.959</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\search\microsoft.visualstudio.platform.searchproviders.legacy.pkgdef</path>
  </entry>
  <entry>
    <record>1347</record>
    <time>2025/12/04 15:38:16.960</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\search\microsoft.visualstudio.search.pkgdef</path>
  </entry>
  <entry>
    <record>1348</record>
    <time>2025/12/04 15:38:16.963</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\servicehub\servicehubclient.pkgdef</path>
  </entry>
  <entry>
    <record>1349</record>
    <time>2025/12/04 15:38:16.965</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tailoredprojectservices\microsoft.visualstudio.appxmanifestdesigner.uap.pkgdef</path>
  </entry>
  <entry>
    <record>1350</record>
    <time>2025/12/04 15:38:16.967</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tailoredprojectservices\microsoft.visualstudio.appxpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1351</record>
    <time>2025/12/04 15:38:16.974</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{8bc9ceb8-8b4a-11d0-8d11-00a0c91bc942}\FileExtensions\.appxmanifest&apos; for value &apos;EditorFactoryNotify&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tailoredprojectservices\microsoft.visualstudio.appxpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1352</record>
    <time>2025/12/04 15:38:16.975</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Projects\{fae04ec0-301f-11d3-bf4b-00c04f79efbc}\FileExtensions\.appxmanifest&apos; for value &apos;EditorFactoryNotify&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tailoredprojectservices\microsoft.visualstudio.appxpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1353</record>
    <time>2025/12/04 15:38:16.983</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tailoredprojectservices\microsoft.visualstudio.tailoredprojectservices.pkgdef</path>
  </entry>
  <entry>
    <record>1354</record>
    <time>2025/12/04 15:38:16.988</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\teamfoundation\team explorer\teamexplorer.codebase.pkgdef</path>
  </entry>
  <entry>
    <record>1355</record>
    <time>2025/12/04 15:38:17.049</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\teamfoundation\team explorer\teamexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>1356</record>
    <time>2025/12/04 15:38:17.070</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\SourceControlProviders&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\teamfoundation\team explorer\teamexplorer.pkgdef</path>
  </entry>
  <entry>
    <record>1357</record>
    <time>2025/12/04 15:38:17.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\teamfoundation\team explorer\teamexplorerthemes.pkgdef</path>
  </entry>
  <entry>
    <record>1358</record>
    <time>2025/12/04 15:38:17.141</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\terminal\microsoft.visualstudio.terminal.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1359</record>
    <time>2025/12/04 15:38:17.148</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\terminal\microsoft.visualstudio.terminal.pkgdef</path>
  </entry>
  <entry>
    <record>1360</record>
    <time>2025/12/04 15:38:17.148</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testgeneration\microsoft.visualstudio.testplatform.testgeneration.package.pkgdef</path>
  </entry>
  <entry>
    <record>1361</record>
    <time>2025/12/04 15:38:17.151</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\additionalcontrast.pkgdef</path>
  </entry>
  <entry>
    <record>1362</record>
    <time>2025/12/04 15:38:17.152</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\bluetheme.pkgdef</path>
  </entry>
  <entry>
    <record>1363</record>
    <time>2025/12/04 15:38:17.152</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\darktheme.pkgdef</path>
  </entry>
  <entry>
    <record>1364</record>
    <time>2025/12/04 15:38:17.153</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\highcontrasttheme.pkgdef</path>
  </entry>
  <entry>
    <record>1365</record>
    <time>2025/12/04 15:38:17.154</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\lighttheme.pkgdef</path>
  </entry>
  <entry>
    <record>1366</record>
    <time>2025/12/04 15:38:17.154</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\microsoft.visualstudio.testwindow.pkgdef</path>
  </entry>
  <entry>
    <record>1367</record>
    <time>2025/12/04 15:38:17.164</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\testwindow\testwindowprovidecodebase.pkgdef</path>
  </entry>
  <entry>
    <record>1368</record>
    <time>2025/12/04 15:38:17.176</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\textmate\tmlanguage.pkgdef</path>
  </entry>
  <entry>
    <record>1369</record>
    <time>2025/12/04 15:38:17.184</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\tsserver\microsoft.visualstudio.package.typescript.tsserver.pkgdef</path>
  </entry>
  <entry>
    <record>1370</record>
    <time>2025/12/04 15:38:17.185</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\typescript\generatedpackagedefinition.pkgdef</path>
  </entry>
  <entry>
    <record>1371</record>
    <time>2025/12/04 15:38:17.185</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\typescript\typescriptlinting.pkgdef</path>
  </entry>
  <entry>
    <record>1372</record>
    <time>2025/12/04 15:38:17.188</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\typescript\typescriptvisualstudio.pkgdef</path>
  </entry>
  <entry>
    <record>1373</record>
    <time>2025/12/04 15:38:17.233</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universal.templatewizards.runtimeconfiguration.pkgdef</path>
  </entry>
  <entry>
    <record>1374</record>
    <time>2025/12/04 15:38:17.234</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1375</record>
    <time>2025/12/04 15:38:17.237</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1376</record>
    <time>2025/12/04 15:38:17.238</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1377</record>
    <time>2025/12/04 15:38:17.238</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1378</record>
    <time>2025/12/04 15:38:17.238</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1379</record>
    <time>2025/12/04 15:38:17.238</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;SortPriority&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1380</record>
    <time>2025/12/04 15:38:17.238</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{2581426e-bf4f-4a49-a42a-20ef9d51ef49}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\universalflavor\microsoft.visualstudio.universallibrary.pkgdef</path>
  </entry>
  <entry>
    <record>1381</record>
    <time>2025/12/04 15:38:17.241</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\expressionevaluators\expressionevaluatorpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1382</record>
    <time>2025/12/04 15:38:17.245</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1383</record>
    <time>2025/12/04 15:38:17.249</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;DefaultToInsertSpaces&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1384</record>
    <time>2025/12/04 15:38:17.249</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;EnableAdvancedMembersOption&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1385</record>
    <time>2025/12/04 15:38:17.250</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;ShowBraceCompletion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1386</record>
    <time>2025/12/04 15:38:17.250</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;ShowCompletion&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1387</record>
    <time>2025/12/04 15:38:17.250</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;ShowSmartIndent&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1388</record>
    <time>2025/12/04 15:38:17.250</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Languages\Language Services\CSharp&apos; for value &apos;SupportsImageCaching&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.csharp.pkgdef</path>
  </entry>
  <entry>
    <record>1389</record>
    <time>2025/12/04 15:38:17.262</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.pkgdef</path>
  </entry>
  <entry>
    <record>1390</record>
    <time>2025/12/04 15:38:17.273</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\microsoft.visualstudio.languageservices.visualbasic.pkgdef</path>
  </entry>
  <entry>
    <record>1391</record>
    <time>2025/12/04 15:38:17.295</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\roslyn.visualstudio.setup.pkgdef</path>
  </entry>
  <entry>
    <record>1392</record>
    <time>2025/12/04 15:38:17.321</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\languageservices\core\roslyn.visualstudio.servicehub.setup.x64.pkgdef</path>
  </entry>
  <entry>
    <record>1393</record>
    <time>2025/12/04 15:38:17.358</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vbcsharp\sourcebasedtestdiscovery\microsoft.visualstudio.sbd.remoteservices.pkgdef</path>
  </entry>
  <entry>
    <record>1394</record>
    <time>2025/12/04 15:38:17.361</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\mcppee.pkgdef</path>
  </entry>
  <entry>
    <record>1395</record>
    <time>2025/12/04 15:38:17.362</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\microsoft.visualstudio.vc.pkgdef</path>
  </entry>
  <entry>
    <record>1396</record>
    <time>2025/12/04 15:38:17.372</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\objc.pkgdef</path>
  </entry>
  <entry>
    <record>1397</record>
    <time>2025/12/04 15:38:17.375</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\resourceeditor.pkgdef</path>
  </entry>
  <entry>
    <record>1398</record>
    <time>2025/12/04 15:38:17.376</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{74AAD8B3-3294-49CB-BB5D-E9BAB132BFD5}&apos; for value &apos;InprocServer32&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\resourceeditor.pkgdef</path>
  </entry>
  <entry>
    <record>1399</record>
    <time>2025/12/04 15:38:17.376</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{74AAD8B3-3294-49CB-BB5D-E9BAB132BFD5}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\resourceeditor.pkgdef</path>
  </entry>
  <entry>
    <record>1400</record>
    <time>2025/12/04 15:38:17.387</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{5E2DC842-D128-11D0-92DF-00A0C9138C45}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\resourceeditor.pkgdef</path>
  </entry>
  <entry>
    <record>1401</record>
    <time>2025/12/04 15:38:17.387</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{5B6781C0-E99D-11D0-9954-00A0C91BC8E5}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\resourceeditor.pkgdef</path>
  </entry>
  <entry>
    <record>1402</record>
    <time>2025/12/04 15:38:17.388</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.core.pkgdef</path>
  </entry>
  <entry>
    <record>1403</record>
    <time>2025/12/04 15:38:17.388</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm.14.15.pkgdef</path>
  </entry>
  <entry>
    <record>1404</record>
    <time>2025/12/04 15:38:17.389</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1405</record>
    <time>2025/12/04 15:38:17.389</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm.pkgdef</path>
  </entry>
  <entry>
    <record>1406</record>
    <time>2025/12/04 15:38:17.389</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm64.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1407</record>
    <time>2025/12/04 15:38:17.390</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm64.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1408</record>
    <time>2025/12/04 15:38:17.390</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetarm64.pkgdef</path>
  </entry>
  <entry>
    <record>1409</record>
    <time>2025/12/04 15:38:17.391</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx64.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1410</record>
    <time>2025/12/04 15:38:17.391</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx64.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1411</record>
    <time>2025/12/04 15:38:17.392</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx64.pkgdef</path>
  </entry>
  <entry>
    <record>1412</record>
    <time>2025/12/04 15:38:17.392</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx86.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1413</record>
    <time>2025/12/04 15:38:17.393</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx86.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1414</record>
    <time>2025/12/04 15:38:17.394</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx64.targetx86.pkgdef</path>
  </entry>
  <entry>
    <record>1415</record>
    <time>2025/12/04 15:38:17.394</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1416</record>
    <time>2025/12/04 15:38:17.395</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1417</record>
    <time>2025/12/04 15:38:17.396</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm.pkgdef</path>
  </entry>
  <entry>
    <record>1418</record>
    <time>2025/12/04 15:38:17.397</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm64.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1419</record>
    <time>2025/12/04 15:38:17.397</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm64.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1420</record>
    <time>2025/12/04 15:38:17.398</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetarm64.pkgdef</path>
  </entry>
  <entry>
    <record>1421</record>
    <time>2025/12/04 15:38:17.398</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx64.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1422</record>
    <time>2025/12/04 15:38:17.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx64.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1423</record>
    <time>2025/12/04 15:38:17.399</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx64.pkgdef</path>
  </entry>
  <entry>
    <record>1424</record>
    <time>2025/12/04 15:38:17.401</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx86.14.16.pkgdef</path>
  </entry>
  <entry>
    <record>1425</record>
    <time>2025/12/04 15:38:17.401</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx86.14.29.16.11.pkgdef</path>
  </entry>
  <entry>
    <record>1426</record>
    <time>2025/12/04 15:38:17.402</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc.tools.hostx86.targetx86.pkgdef</path>
  </entry>
  <entry>
    <record>1427</record>
    <time>2025/12/04 15:38:17.402</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vceditorcolors.pkgdef</path>
  </entry>
  <entry>
    <record>1428</record>
    <time>2025/12/04 15:38:17.406</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vcproject_common_registry.pkgdef</path>
  </entry>
  <entry>
    <record>1429</record>
    <time>2025/12/04 15:38:17.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vcproject_pro_registry.pkgdef</path>
  </entry>
  <entry>
    <record>1430</record>
    <time>2025/12/04 15:38:17.439</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\NewProjectTemplates\TemplateDirs\{F1C25864-3097-11D2-A5C5-00C04F7968B4}\/1&apos; for value &apos;TemplatesDir&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vcproject_pro_registry.pkgdef</path>
  </entry>
  <entry>
    <record>1431</record>
    <time>2025/12/04 15:38:17.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_dircontrol_registry.pkgdef</path>
  </entry>
  <entry>
    <record>1432</record>
    <time>2025/12/04 15:38:17.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_msgbuilder_registration.pkgdef</path>
  </entry>
  <entry>
    <record>1433</record>
    <time>2025/12/04 15:38:17.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_pkg_core_registration.pkgdef</path>
  </entry>
  <entry>
    <record>1434</record>
    <time>2025/12/04 15:38:17.494</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{5403AC85-C8C8-4967-BDB0-662D485F0C28}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_pkg_core_registration.pkgdef</path>
  </entry>
  <entry>
    <record>1435</record>
    <time>2025/12/04 15:38:17.496</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_pkg_pro_registration.pkgdef</path>
  </entry>
  <entry>
    <record>1436</record>
    <time>2025/12/04 15:38:17.502</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\HandleInComingCall\{b6df1a99-8a2c-4d99-a613-e06ab43ecc90}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_pkg_pro_registration.pkgdef</path>
  </entry>
  <entry>
    <record>1437</record>
    <time>2025/12/04 15:38:17.506</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\vc_snippets.pkgdef</path>
  </entry>
  <entry>
    <record>1438</record>
    <time>2025/12/04 15:38:17.508</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\copilot\microsoft.visualstudio.vc.copilot.pkgdef</path>
  </entry>
  <entry>
    <record>1439</record>
    <time>2025/12/04 15:38:17.510</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\debugger\vcdebugger.pkgdef</path>
  </entry>
  <entry>
    <record>1440</record>
    <time>2025/12/04 15:38:17.511</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\languageserver\microsoft.visualstudio.vc.languageserver.pkgdef</path>
  </entry>
  <entry>
    <record>1441</record>
    <time>2025/12/04 15:38:17.512</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\project\microsoft.visualstudio.project.visualc.vcprojectengine.pkgdef</path>
  </entry>
  <entry>
    <record>1442</record>
    <time>2025/12/04 15:38:17.515</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vc\wizards\microsoft.vc.wizards.pkgdef</path>
  </entry>
  <entry>
    <record>1443</record>
    <time>2025/12/04 15:38:17.517</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1444</record>
    <time>2025/12/04 15:38:17.525</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{ff4d6aca-9352-4a5f-821e-f4d6ebdcab11}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1445</record>
    <time>2025/12/04 15:38:17.530</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{13dc9681-b779-3d9a-9208-c346fe982b63}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1446</record>
    <time>2025/12/04 15:38:17.530</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{13dc9681-b779-3d9a-9208-c346fe982b63}&apos; for value &apos;InprocServer32&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1447</record>
    <time>2025/12/04 15:38:17.530</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{13dc9681-b779-3d9a-9208-c346fe982b63}&apos; for value &apos;Class&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1448</record>
    <time>2025/12/04 15:38:17.530</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\CLSID\{13dc9681-b779-3d9a-9208-c346fe982b63}&apos; for value &apos;ThreadingModel&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1449</record>
    <time>2025/12/04 15:38:17.533</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{ff4d6aca-9352-4a5f-821e-f4d6ebdcab11}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1450</record>
    <time>2025/12/04 15:38:17.534</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{6d2695f9-5365-4a78-89ed-f205c045bfe6}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1451</record>
    <time>2025/12/04 15:38:17.536</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1452</record>
    <time>2025/12/04 15:38:17.537</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1453</record>
    <time>2025/12/04 15:38:17.537</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\microsoft.visualstudio.editors.pkgdef</path>
  </entry>
  <entry>
    <record>1454</record>
    <time>2025/12/04 15:38:17.542</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\visualstudio\editors\visualstudioeditorssetup.pkgdef</path>
  </entry>
  <entry>
    <record>1455</record>
    <time>2025/12/04 15:38:17.543</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vslog\microsoft.visualstudio.perfwatson.provider.pkgdef</path>
  </entry>
  <entry>
    <record>1456</record>
    <time>2025/12/04 15:38:17.544</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vslog\vslog.pkgdef</path>
  </entry>
  <entry>
    <record>1457</record>
    <time>2025/12/04 15:38:17.550</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vsreliability\vsreliability.pkgdef</path>
  </entry>
  <entry>
    <record>1458</record>
    <time>2025/12/04 15:38:17.551</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\vstelemetry\vstelemetrypackage.pkgdef</path>
  </entry>
  <entry>
    <record>1459</record>
    <time>2025/12/04 15:38:17.552</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\web\html_designer_reg.pkgdef</path>
  </entry>
  <entry>
    <record>1460</record>
    <time>2025/12/04 15:38:17.557</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\web\razor\v3.0\microsoft.webtools.languages.razor.3.pkgdef</path>
  </entry>
  <entry>
    <record>1461</record>
    <time>2025/12/04 15:38:17.562</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\webclient\diagnostics\toolwindows\diagtoolscolors.pkgdef</path>
  </entry>
  <entry>
    <record>1462</record>
    <time>2025/12/04 15:38:17.568</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\webclient\diagnostics\toolwindows\microsoft.visualstudio.webclient.diagnostics.htmltoolhost.pkgdef</path>
  </entry>
  <entry>
    <record>1463</record>
    <time>2025/12/04 15:38:17.575</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\webclient\diagnostics\webdiagnosticsattach\webdiagnosticsattach.pkgdef</path>
  </entry>
  <entry>
    <record>1464</record>
    <time>2025/12/04 15:38:17.576</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows forms designer services\designer_framework_reg.pkgdef</path>
  </entry>
  <entry>
    <record>1465</record>
    <time>2025/12/04 15:38:17.607</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows forms designer ui\designer_framework_ui.pkgdef</path>
  </entry>
  <entry>
    <record>1466</record>
    <time>2025/12/04 15:38:17.821</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows forms integration design\windowsformsintegrationdesignpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1467</record>
    <time>2025/12/04 15:38:17.826</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1468</record>
    <time>2025/12/04 15:38:17.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\KeyBindingTables\{ba09e2af-9df2-4068-b2f0-4c7e5cc19e2f}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1469</record>
    <time>2025/12/04 15:38:17.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\KeyBindingTables\{ba09e2af-9df2-4068-b2f0-4c7e5cc19e2f}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1470</record>
    <time>2025/12/04 15:38:17.829</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\KeyBindingTables\{ba09e2af-9df2-4068-b2f0-4c7e5cc19e2f}&apos; for value &apos;AllowNavKeyBinding&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1471</record>
    <time>2025/12/04 15:38:17.830</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Menus&apos; for value &apos;{c78ca057-cc29-421f-ad6d-3b0943debdfc}&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1472</record>
    <time>2025/12/04 15:38:17.836</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1473</record>
    <time>2025/12/04 15:38:17.838</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1474</record>
    <time>2025/12/04 15:38:17.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1475</record>
    <time>2025/12/04 15:38:17.844</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1476</record>
    <time>2025/12/04 15:38:17.845</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1477</record>
    <time>2025/12/04 15:38:17.848</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1478</record>
    <time>2025/12/04 15:38:17.849</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1479</record>
    <time>2025/12/04 15:38:17.851</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1480</record>
    <time>2025/12/04 15:38:17.854</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1481</record>
    <time>2025/12/04 15:38:17.856</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1482</record>
    <time>2025/12/04 15:38:17.859</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1483</record>
    <time>2025/12/04 15:38:17.862</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1484</record>
    <time>2025/12/04 15:38:17.865</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1485</record>
    <time>2025/12/04 15:38:17.867</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1486</record>
    <time>2025/12/04 15:38:17.870</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1487</record>
    <time>2025/12/04 15:38:17.873</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1488</record>
    <time>2025/12/04 15:38:17.876</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1489</record>
    <time>2025/12/04 15:38:17.878</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1490</record>
    <time>2025/12/04 15:38:17.881</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1491</record>
    <time>2025/12/04 15:38:17.883</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1492</record>
    <time>2025/12/04 15:38:17.886</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1493</record>
    <time>2025/12/04 15:38:17.890</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1494</record>
    <time>2025/12/04 15:38:17.892</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1495</record>
    <time>2025/12/04 15:38:17.894</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1496</record>
    <time>2025/12/04 15:38:17.896</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1497</record>
    <time>2025/12/04 15:38:17.899</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1498</record>
    <time>2025/12/04 15:38:17.902</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1499</record>
    <time>2025/12/04 15:38:17.905</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1500</record>
    <time>2025/12/04 15:38:17.907</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1501</record>
    <time>2025/12/04 15:38:17.908</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1502</record>
    <time>2025/12/04 15:38:17.910</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1503</record>
    <time>2025/12/04 15:38:17.913</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1504</record>
    <time>2025/12/04 15:38:17.916</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1505</record>
    <time>2025/12/04 15:38:17.918</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1506</record>
    <time>2025/12/04 15:38:17.921</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1507</record>
    <time>2025/12/04 15:38:17.922</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1508</record>
    <time>2025/12/04 15:38:17.924</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1509</record>
    <time>2025/12/04 15:38:17.927</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1510</record>
    <time>2025/12/04 15:38:17.928</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1511</record>
    <time>2025/12/04 15:38:17.931</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1512</record>
    <time>2025/12/04 15:38:17.933</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1513</record>
    <time>2025/12/04 15:38:17.935</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1514</record>
    <time>2025/12/04 15:38:17.939</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1515</record>
    <time>2025/12/04 15:38:17.941</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1516</record>
    <time>2025/12/04 15:38:17.944</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1517</record>
    <time>2025/12/04 15:38:17.947</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1518</record>
    <time>2025/12/04 15:38:17.948</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1519</record>
    <time>2025/12/04 15:38:17.950</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1520</record>
    <time>2025/12/04 15:38:17.953</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1521</record>
    <time>2025/12/04 15:38:17.955</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1522</record>
    <time>2025/12/04 15:38:17.957</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1523</record>
    <time>2025/12/04 15:38:17.958</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1524</record>
    <time>2025/12/04 15:38:17.960</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1525</record>
    <time>2025/12/04 15:38:17.963</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1526</record>
    <time>2025/12/04 15:38:17.966</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1527</record>
    <time>2025/12/04 15:38:17.969</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A2A1A4A48CA9B14F54FE3AF97626B27409B643A86A9BAFCC71397033932E1941&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1528</record>
    <time>2025/12/04 15:38:17.973</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1529</record>
    <time>2025/12/04 15:38:17.975</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1530</record>
    <time>2025/12/04 15:38:17.977</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1531</record>
    <time>2025/12/04 15:38:17.980</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1532</record>
    <time>2025/12/04 15:38:17.982</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1533</record>
    <time>2025/12/04 15:38:17.985</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1534</record>
    <time>2025/12/04 15:38:17.988</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1535</record>
    <time>2025/12/04 15:38:17.989</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1536</record>
    <time>2025/12/04 15:38:17.992</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1537</record>
    <time>2025/12/04 15:38:17.995</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1538</record>
    <time>2025/12/04 15:38:17.998</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1539</record>
    <time>2025/12/04 15:38:18.000</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1540</record>
    <time>2025/12/04 15:38:18.002</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1541</record>
    <time>2025/12/04 15:38:18.004</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1542</record>
    <time>2025/12/04 15:38:18.006</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1543</record>
    <time>2025/12/04 15:38:18.008</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1544</record>
    <time>2025/12/04 15:38:18.011</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1545</record>
    <time>2025/12/04 15:38:18.014</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1546</record>
    <time>2025/12/04 15:38:18.017</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1547</record>
    <time>2025/12/04 15:38:18.019</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7E74134F1B0A6568FB6DD08E3322EEBBD357061221DAB3D613962DB750FAAE32&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1548</record>
    <time>2025/12/04 15:38:18.022</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1549</record>
    <time>2025/12/04 15:38:18.025</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1550</record>
    <time>2025/12/04 15:38:18.027</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1551</record>
    <time>2025/12/04 15:38:18.029</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1552</record>
    <time>2025/12/04 15:38:18.032</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1553</record>
    <time>2025/12/04 15:38:18.034</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1554</record>
    <time>2025/12/04 15:38:18.036</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7AD5AA0A9F3362CD7DC544B4B878155139F527EF9D46604DC746ED117854A8D1&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1555</record>
    <time>2025/12/04 15:38:18.040</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1556</record>
    <time>2025/12/04 15:38:18.043</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1557</record>
    <time>2025/12/04 15:38:18.045</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1558</record>
    <time>2025/12/04 15:38:18.049</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1559</record>
    <time>2025/12/04 15:38:18.052</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1560</record>
    <time>2025/12/04 15:38:18.054</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\A7FC674ACBC88E7FEB5BC855800E6EEB79A49CCA778BD0A7EAEA21BF9B149A8A&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1561</record>
    <time>2025/12/04 15:38:18.058</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\496BE3C2C64F3C081E5A85A9BC75156DF33F5D6A5DCC739311E3C80D3C59E565&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1562</record>
    <time>2025/12/04 15:38:18.060</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\496BE3C2C64F3C081E5A85A9BC75156DF33F5D6A5DCC739311E3C80D3C59E565&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1563</record>
    <time>2025/12/04 15:38:18.064</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\8AD6704450C0D47FB038ED1B26D13DFCC05CE682E043A2203E11FE994CA410E5&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1564</record>
    <time>2025/12/04 15:38:18.065</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\8AD6704450C0D47FB038ED1B26D13DFCC05CE682E043A2203E11FE994CA410E5&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1565</record>
    <time>2025/12/04 15:38:18.067</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\8AD6704450C0D47FB038ED1B26D13DFCC05CE682E043A2203E11FE994CA410E5&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1566</record>
    <time>2025/12/04 15:38:18.069</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\8AD6704450C0D47FB038ED1B26D13DFCC05CE682E043A2203E11FE994CA410E5&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1567</record>
    <time>2025/12/04 15:38:18.072</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\8AD6704450C0D47FB038ED1B26D13DFCC05CE682E043A2203E11FE994CA410E5&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1568</record>
    <time>2025/12/04 15:38:18.074</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\C5FF06568E8889A54BFC62D02FB0EED7DD5224DFDB1918C75887645C4C5FB042&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1569</record>
    <time>2025/12/04 15:38:18.076</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\C5FF06568E8889A54BFC62D02FB0EED7DD5224DFDB1918C75887645C4C5FB042&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1570</record>
    <time>2025/12/04 15:38:18.078</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\C5FF06568E8889A54BFC62D02FB0EED7DD5224DFDB1918C75887645C4C5FB042&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1571</record>
    <time>2025/12/04 15:38:18.080</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\C5FF06568E8889A54BFC62D02FB0EED7DD5224DFDB1918C75887645C4C5FB042&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1572</record>
    <time>2025/12/04 15:38:18.083</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\C5FF06568E8889A54BFC62D02FB0EED7DD5224DFDB1918C75887645C4C5FB042&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1573</record>
    <time>2025/12/04 15:38:18.087</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7B03F8C0609DCB63BA38573CA18DA1A4A74800122FD6FECB80D8072062D90FCC&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1574</record>
    <time>2025/12/04 15:38:18.090</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7B03F8C0609DCB63BA38573CA18DA1A4A74800122FD6FECB80D8072062D90FCC&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1575</record>
    <time>2025/12/04 15:38:18.092</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7B03F8C0609DCB63BA38573CA18DA1A4A74800122FD6FECB80D8072062D90FCC&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1576</record>
    <time>2025/12/04 15:38:18.094</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7B03F8C0609DCB63BA38573CA18DA1A4A74800122FD6FECB80D8072062D90FCC&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1577</record>
    <time>2025/12/04 15:38:18.097</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{c78ca057-cc29-421f-ad6d-3b0943debdfc}\Toolbox\DefaultContent\7B03F8C0609DCB63BA38573CA18DA1A4A74800122FD6FECB80D8072062D90FCC&apos; for value &apos;UniqueID&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\microsoft.visualstudio.winforms.package.pkgdef</path>
  </entry>
  <entry>
    <record>1578</record>
    <time>2025/12/04 15:38:18.100</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windows.forms\winformsdesigner.setup.pkgdef</path>
  </entry>
  <entry>
    <record>1579</record>
    <time>2025/12/04 15:38:18.105</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\windowsxamlflavor\microsoft.visualstudio.windows.ui.xaml.project.pkgdef</path>
  </entry>
  <entry>
    <record>1580</record>
    <time>2025/12/04 15:38:18.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\xamldiagnostics\microsoft.visualstudio.designtools.diagnostics.pkgdef</path>
  </entry>
  <entry>
    <record>1581</record>
    <time>2025/12/04 15:38:18.119</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\xamllanguageservice\microsoft.visualstudio.designtools.xamllanguageservice.pkgdef</path>
  </entry>
  <entry>
    <record>1582</record>
    <time>2025/12/04 15:38:18.135</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\microsoft.build.framework.pkgdef</path>
  </entry>
  <entry>
    <record>1583</record>
    <time>2025/12/04 15:38:18.136</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\microsoft.build.pkgdef</path>
  </entry>
  <entry>
    <record>1584</record>
    <time>2025/12/04 15:38:18.139</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\microsoft.build.tasks.core.pkgdef</path>
  </entry>
  <entry>
    <record>1585</record>
    <time>2025/12/04 15:38:18.140</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\microsoft.build.utilities.core.pkgdef</path>
  </entry>
  <entry>
    <record>1586</record>
    <time>2025/12/04 15:38:18.141</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\stringtools.pkgdef</path>
  </entry>
  <entry>
    <record>1587</record>
    <time>2025/12/04 15:38:18.142</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\msbuild\system.resources.extensions.pkgdef</path>
  </entry>
  <entry>
    <record>1588</record>
    <time>2025/12/04 15:38:18.143</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\editorcolors.pkgdef</path>
  </entry>
  <entry>
    <record>1589</record>
    <time>2025/12/04 15:38:18.167</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\microsoft.visualstudio.minshell.interop.pkgdef</path>
  </entry>
  <entry>
    <record>1590</record>
    <time>2025/12/04 15:38:18.190</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell.dark.pkgdef</path>
  </entry>
  <entry>
    <record>1591</record>
    <time>2025/12/04 15:38:18.191</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell.highcontrast.pkgdef</path>
  </entry>
  <entry>
    <record>1592</record>
    <time>2025/12/04 15:38:18.192</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell.light.pkgdef</path>
  </entry>
  <entry>
    <record>1593</record>
    <time>2025/12/04 15:38:18.193</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.blue.extracontrast.pkgdef</path>
  </entry>
  <entry>
    <record>1594</record>
    <time>2025/12/04 15:38:18.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.blue.pkgdef</path>
  </entry>
  <entry>
    <record>1595</record>
    <time>2025/12/04 15:38:18.226</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.bubblegum.pkgdef</path>
  </entry>
  <entry>
    <record>1596</record>
    <time>2025/12/04 15:38:18.228</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.coolbreeze.pkgdef</path>
  </entry>
  <entry>
    <record>1597</record>
    <time>2025/12/04 15:38:18.229</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.coolslate.pkgdef</path>
  </entry>
  <entry>
    <record>1598</record>
    <time>2025/12/04 15:38:18.230</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.dark.pkgdef</path>
  </entry>
  <entry>
    <record>1599</record>
    <time>2025/12/04 15:38:18.249</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.highcontrast.pkgdef</path>
  </entry>
  <entry>
    <record>1600</record>
    <time>2025/12/04 15:38:18.267</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.icymint.pkgdef</path>
  </entry>
  <entry>
    <record>1601</record>
    <time>2025/12/04 15:38:18.268</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.juicyplum.pkgdef</path>
  </entry>
  <entry>
    <record>1602</record>
    <time>2025/12/04 15:38:18.269</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.light.pkgdef</path>
  </entry>
  <entry>
    <record>1603</record>
    <time>2025/12/04 15:38:18.289</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.mangoparadise.pkgdef</path>
  </entry>
  <entry>
    <record>1604</record>
    <time>2025/12/04 15:38:18.290</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.moonlightglow.pkgdef</path>
  </entry>
  <entry>
    <record>1605</record>
    <time>2025/12/04 15:38:18.291</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.mysticalforest.pkgdef</path>
  </entry>
  <entry>
    <record>1606</record>
    <time>2025/12/04 15:38:18.292</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.registration.pkgdef</path>
  </entry>
  <entry>
    <record>1607</record>
    <time>2025/12/04 15:38:18.298</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.silkypink.pkgdef</path>
  </entry>
  <entry>
    <record>1608</record>
    <time>2025/12/04 15:38:18.298</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.spicyred.pkgdef</path>
  </entry>
  <entry>
    <record>1609</record>
    <time>2025/12/04 15:38:18.301</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\theme.sunnyday.pkgdef</path>
  </entry>
  <entry>
    <record>1610</record>
    <time>2025/12/04 15:38:18.301</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\vslogp.pkgdef</path>
  </entry>
  <entry>
    <record>1611</record>
    <time>2025/12/04 15:38:18.302</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\benchmarkdotnet\microsoft.diagnosticshub.benchmarkdotnet.pkgdef</path>
  </entry>
  <entry>
    <record>1612</record>
    <time>2025/12/04 15:38:18.303</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\cppbuildinsights\microsoft.visualstudio.cppbuildinsightscollector.pkgdef</path>
  </entry>
  <entry>
    <record>1613</record>
    <time>2025/12/04 15:38:18.306</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\cppbuildinsights\microsoft.visualstudio.cppbuildinsightstool.pkgdef</path>
  </entry>
  <entry>
    <record>1614</record>
    <time>2025/12/04 15:38:18.307</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\cpusampling\microsoft.diagnosticshub.cpusampling.pkgdef</path>
  </entry>
  <entry>
    <record>1615</record>
    <time>2025/12/04 15:38:18.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\database\microsoft.diagnosticshub.databasetool.pkgdef</path>
  </entry>
  <entry>
    <record>1616</record>
    <time>2025/12/04 15:38:18.312</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\coreclrdebugengine.pkgdef</path>
  </entry>
  <entry>
    <record>1617</record>
    <time>2025/12/04 15:38:18.318</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\cscompee.pkgdef</path>
  </entry>
  <entry>
    <record>1618</record>
    <time>2025/12/04 15:38:18.321</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\dotnetdebugger.pkgdef</path>
  </entry>
  <entry>
    <record>1619</record>
    <time>2025/12/04 15:38:18.341</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\ecbuild.pkgdef</path>
  </entry>
  <entry>
    <record>1620</record>
    <time>2025/12/04 15:38:18.343</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\encmgr.pkgdef</path>
  </entry>
  <entry>
    <record>1621</record>
    <time>2025/12/04 15:38:18.344</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\microsoft.visualstudio.debugger.azureattach.pkgdef</path>
  </entry>
  <entry>
    <record>1622</record>
    <time>2025/12/04 15:38:18.348</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\microsoft.visualstudio.debugger.terminallauncher.pkgdef</path>
  </entry>
  <entry>
    <record>1623</record>
    <time>2025/12/04 15:38:18.349</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\monodebugengine.pkgdef</path>
  </entry>
  <entry>
    <record>1624</record>
    <time>2025/12/04 15:38:18.355</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\msvsmon_x64.pkgdef</path>
  </entry>
  <entry>
    <record>1625</record>
    <time>2025/12/04 15:38:18.356</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\msvsmon_x86.pkgdef</path>
  </entry>
  <entry>
    <record>1626</record>
    <time>2025/12/04 15:38:18.357</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\reflectionbdm.pkgdef</path>
  </entry>
  <entry>
    <record>1627</record>
    <time>2025/12/04 15:38:18.358</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\shmetapdb.pkgdef</path>
  </entry>
  <entry>
    <record>1628</record>
    <time>2025/12/04 15:38:18.360</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\symbollocator.pkgdef</path>
  </entry>
  <entry>
    <record>1629</record>
    <time>2025/12/04 15:38:18.361</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vcsharp_ee_registry.pkgdef</path>
  </entry>
  <entry>
    <record>1630</record>
    <time>2025/12/04 15:38:18.367</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdbg_engine.pkgdef</path>
  </entry>
  <entry>
    <record>1631</record>
    <time>2025/12/04 15:38:18.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebug.pkgdef</path>
  </entry>
  <entry>
    <record>1632</record>
    <time>2025/12/04 15:38:18.405</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Debugger&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebug.pkgdef</path>
  </entry>
  <entry>
    <record>1633</record>
    <time>2025/12/04 15:38:18.405</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Debugger&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebug.pkgdef</path>
  </entry>
  <entry>
    <record>1634</record>
    <time>2025/12/04 15:38:18.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugconsole.pkgdef</path>
  </entry>
  <entry>
    <record>1635</record>
    <time>2025/12/04 15:38:18.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugcoreui.pkgdef</path>
  </entry>
  <entry>
    <record>1636</record>
    <time>2025/12/04 15:38:18.426</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Services\{0f6a40b8-d6b5-44b9-86e9-1d6b1b208e3f}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugcoreui.pkgdef</path>
  </entry>
  <entry>
    <record>1637</record>
    <time>2025/12/04 15:38:18.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugeng.windockertransport.pkgdef</path>
  </entry>
  <entry>
    <record>1638</record>
    <time>2025/12/04 15:38:18.430</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugeng_impl_core.pkgdef</path>
  </entry>
  <entry>
    <record>1639</record>
    <time>2025/12/04 15:38:18.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugeng_impl_engine.pkgdef</path>
  </entry>
  <entry>
    <record>1640</record>
    <time>2025/12/04 15:38:18.851</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vsdebugpresentationpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1641</record>
    <time>2025/12/04 15:38:18.893</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\vs_debug_scriptle2_appidreg_4661.pkgdef</path>
  </entry>
  <entry>
    <record>1642</record>
    <time>2025/12/04 15:38:18.897</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\debugger\visualizers\microsoft.visualstudio.debuggervisualizers.package.pkgdef</path>
  </entry>
  <entry>
    <record>1643</record>
    <time>2025/12/04 15:38:18.898</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\diagnosticshub.datawarehouse.servicemodule.pkgdef</path>
  </entry>
  <entry>
    <record>1644</record>
    <time>2025/12/04 15:38:18.900</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\diagnosticshubcolors.pkgdef</path>
  </entry>
  <entry>
    <record>1645</record>
    <time>2025/12/04 15:38:18.904</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.featureflags.pkgdef</path>
  </entry>
  <entry>
    <record>1646</record>
    <time>2025/12/04 15:38:18.908</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1647</record>
    <time>2025/12/04 15:38:18.910</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{9619c50a-3746-435f-862a-884776e3f5a2}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1648</record>
    <time>2025/12/04 15:38:18.911</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{bd4cd0f1-c4b1-4a43-8a08-b565c9793750}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1649</record>
    <time>2025/12/04 15:38:18.911</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{9619c50a-3746-435f-862a-884776e3f5a2}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1650</record>
    <time>2025/12/04 15:38:18.912</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{1f9fec90-129e-4bef-9c57-f482b46f6b0e}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1651</record>
    <time>2025/12/04 15:38:18.912</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{9619c50a-3746-435f-862a-884776e3f5a2}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1652</record>
    <time>2025/12/04 15:38:18.913</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{bd4cd0f1-c4b1-4a43-8a08-b565c9793750}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1653</record>
    <time>2025/12/04 15:38:18.913</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Editors\{34d17b2f-05b4-42ca-9f4a-446e7f804da9}&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\diagnosticshub\microsoft.diagnosticshub.visualstudio.package.pkgdef</path>
  </entry>
  <entry>
    <record>1654</record>
    <time>2025/12/04 15:38:18.917</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\dotnetasync\microsoft.diagnosticshub.dotnetasync.pkgdef</path>
  </entry>
  <entry>
    <record>1655</record>
    <time>2025/12/04 15:38:18.918</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\dotnetobjectalloc\microsoft.diagnosticshub.dotnetobjectallocation.pkgdef</path>
  </entry>
  <entry>
    <record>1656</record>
    <time>2025/12/04 15:38:18.919</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\eventsviewer\microsoft.diagnosticshub.eventsviewertool.pkgdef</path>
  </entry>
  <entry>
    <record>1657</record>
    <time>2025/12/04 15:38:18.920</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\instrumentation\microsoft.diagnosticshub.instrumentation.pkgdef</path>
  </entry>
  <entry>
    <record>1658</record>
    <time>2025/12/04 15:38:18.921</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\mefhosting\microsoft.visualstudio.componentmodelhost.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1659</record>
    <time>2025/12/04 15:38:18.922</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\gpudebugengine.pkgdef</path>
  </entry>
  <entry>
    <record>1660</record>
    <time>2025/12/04 15:38:18.927</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\microsoft.visualstudio.debugger.parallel.extension.pkgdef</path>
  </entry>
  <entry>
    <record>1661</record>
    <time>2025/12/04 15:38:18.928</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\microsoft.visualstudio.debugger.parallel.gpu.pkgdef</path>
  </entry>
  <entry>
    <record>1662</record>
    <time>2025/12/04 15:38:18.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\microsoft.visualstudio.debugger.parallel.pkgdef</path>
  </entry>
  <entry>
    <record>1663</record>
    <time>2025/12/04 15:38:18.932</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\pfxtaskprovider.pkgdef</path>
  </entry>
  <entry>
    <record>1664</record>
    <time>2025/12/04 15:38:18.932</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\paralleldebugger\ppltaskprovider.pkgdef</path>
  </entry>
  <entry>
    <record>1665</record>
    <time>2025/12/04 15:38:18.933</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\cmddefui.pkgdef</path>
  </entry>
  <entry>
    <record>1666</record>
    <time>2025/12/04 15:38:18.934</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.commonide.pkgdef</path>
  </entry>
  <entry>
    <record>1667</record>
    <time>2025/12/04 15:38:18.949</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Menus&apos; for value &apos;{6E87CFAD-6C05-4adf-9CD7-3B7943875B7C}&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.commonide.pkgdef</path>
  </entry>
  <entry>
    <record>1668</record>
    <time>2025/12/04 15:38:18.955</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.dialogs.pkgdef</path>
  </entry>
  <entry>
    <record>1669</record>
    <time>2025/12/04 15:38:18.957</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.exporttemplate.pkgdef</path>
  </entry>
  <entry>
    <record>1670</record>
    <time>2025/12/04 15:38:18.959</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.extensionmanager.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1671</record>
    <time>2025/12/04 15:38:18.962</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.extensionmanager.implementation.pkgdef</path>
  </entry>
  <entry>
    <record>1672</record>
    <time>2025/12/04 15:38:18.968</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.featureflags.pkgdef</path>
  </entry>
  <entry>
    <record>1673</record>
    <time>2025/12/04 15:38:19.063</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.ide.toolboxcontrolsinstaller.pkgdef</path>
  </entry>
  <entry>
    <record>1674</record>
    <time>2025/12/04 15:38:19.064</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.pkgdef</path>
  </entry>
  <entry>
    <record>1675</record>
    <time>2025/12/04 15:38:19.068</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.platform.windowmanagement.pkgdef</path>
  </entry>
  <entry>
    <record>1676</record>
    <time>2025/12/04 15:38:19.079</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1677</record>
    <time>2025/12/04 15:38:19.083</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.cs&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1678</record>
    <time>2025/12/04 15:38:19.083</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.css&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1679</record>
    <time>2025/12/04 15:38:19.083</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.cur&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1680</record>
    <time>2025/12/04 15:38:19.087</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.htm&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1681</record>
    <time>2025/12/04 15:38:19.087</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.html&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1682</record>
    <time>2025/12/04 15:38:19.088</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.json&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1683</record>
    <time>2025/12/04 15:38:19.089</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.jsonld&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1684</record>
    <time>2025/12/04 15:38:19.093</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.props&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1685</record>
    <time>2025/12/04 15:38:19.093</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.rct&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1686</record>
    <time>2025/12/04 15:38:19.093</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.ruleset&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1687</record>
    <time>2025/12/04 15:38:19.094</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.sln&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1688</record>
    <time>2025/12/04 15:38:19.094</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.snk&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1689</record>
    <time>2025/12/04 15:38:19.095</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.ts&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1690</record>
    <time>2025/12/04 15:38:19.095</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.tt&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1691</record>
    <time>2025/12/04 15:38:19.096</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ShellFileAssociations\.vb&apos; for value &apos;DefaultIconMoniker&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.ext.pkgdef</path>
  </entry>
  <entry>
    <record>1692</record>
    <time>2025/12/04 15:38:19.103</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1693</record>
    <time>2025/12/04 15:38:19.134</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1694</record>
    <time>2025/12/04 15:38:19.134</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1695</record>
    <time>2025/12/04 15:38:19.150</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1696</record>
    <time>2025/12/04 15:38:19.150</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1697</record>
    <time>2025/12/04 15:38:19.151</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1698</record>
    <time>2025/12/04 15:38:19.175</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1699</record>
    <time>2025/12/04 15:38:19.175</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.shell.ui.internal.pkgdef</path>
  </entry>
  <entry>
    <record>1700</record>
    <time>2025/12/04 15:38:19.248</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.templatewizard.pkgdef</path>
  </entry>
  <entry>
    <record>1701</record>
    <time>2025/12/04 15:38:19.251</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.visualstudio.toolbox.pkgdef</path>
  </entry>
  <entry>
    <record>1702</record>
    <time>2025/12/04 15:38:19.253</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\microsoft.xmleditor.pkgdef</path>
  </entry>
  <entry>
    <record>1703</record>
    <time>2025/12/04 15:38:19.281</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1704</record>
    <time>2025/12/04 15:38:19.321</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutoLoadPackages\{D2567162-F94F-4091-8798-A096E61B8B50}&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1705</record>
    <time>2025/12/04 15:38:19.321</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1706</record>
    <time>2025/12/04 15:38:19.321</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Environment&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1707</record>
    <time>2025/12/04 15:38:19.327</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1708</record>
    <time>2025/12/04 15:38:19.327</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\AutomationProperties\Projects&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1709</record>
    <time>2025/12/04 15:38:19.348</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Environment&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1710</record>
    <time>2025/12/04 15:38:19.349</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Environment&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1711</record>
    <time>2025/12/04 15:38:19.352</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;Package&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1712</record>
    <time>2025/12/04 15:38:19.352</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolsOptionsPages\Projects&apos; for value &apos;&apos;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\msenv.core.pkgdef</path>
  </entry>
  <entry>
    <record>1713</record>
    <time>2025/12/04 15:38:19.385</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\projectaggregator.pkgdef</path>
  </entry>
  <entry>
    <record>1714</record>
    <time>2025/12/04 15:38:19.385</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\vsappdomainmanager.pkgdef</path>
  </entry>
  <entry>
    <record>1715</record>
    <time>2025/12/04 15:38:19.386</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\vsixinstaller.pkgdef</path>
  </entry>
  <entry>
    <record>1716</record>
    <time>2025/12/04 15:38:19.386</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\shell\vssln.pkgdef</path>
  </entry>
  <entry>
    <record>1717</record>
    <time>2025/12/04 15:38:19.391</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\treenavigation\microsoft.visualstudio.shell.treenavigation.hierarchyprovider.pkgdef</path>
  </entry>
  <entry>
    <record>1718</record>
    <time>2025/12/04 15:38:19.391</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\platform\treenavigation\graphprovider\microsoft.visualstudio.shell.treenavigation.graphprovider.pkgdef</path>
  </entry>
  <entry>
    <record>1719</record>
    <time>2025/12/04 15:38:19.392</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\xmltools\microsoft.xsldebugger.pkgdef</path>
  </entry>
  <entry>
    <record>1720</record>
    <time>2025/12/04 15:38:19.396</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\xsddesigner\microsoft.visualstudio.xsddesignerpackage.pkgdef</path>
  </entry>
  <entry>
    <record>1721</record>
    <time>2025/12/04 15:38:19.406</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1722</record>
    <time>2025/12/04 15:38:19.407</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{752b9d96-073b-4e60-9244-bce1338b45f4}&apos; for value &apos;&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1723</record>
    <time>2025/12/04 15:38:19.407</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{752b9d96-073b-4e60-9244-bce1338b45f4}&apos; for value &apos;InprocServer32&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1724</record>
    <time>2025/12/04 15:38:19.407</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{752b9d96-073b-4e60-9244-bce1338b45f4}&apos; for value &apos;Class&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1725</record>
    <time>2025/12/04 15:38:19.407</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{752b9d96-073b-4e60-9244-bce1338b45f4}&apos; for value &apos;CodeBase&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1726</record>
    <time>2025/12/04 15:38:19.407</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Packages\{752b9d96-073b-4e60-9244-bce1338b45f4}&apos; for value &apos;AllowsBackgroundLoad&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1727</record>
    <time>2025/12/04 15:38:19.408</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\Menus&apos; for value &apos;{752b9d96-073b-4e60-9244-bce1338b45f4}&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1728</record>
    <time>2025/12/04 15:38:19.408</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{7f40df72-066b-4810-a08b-c0fbed76c948}&apos; for value &apos;&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1729</record>
    <time>2025/12/04 15:38:19.408</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{7f40df72-066b-4810-a08b-c0fbed76c948}&apos; for value &apos;Name&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1730</record>
    <time>2025/12/04 15:38:19.408</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{7f40df72-066b-4810-a08b-c0fbed76c948}&apos; for value &apos;Style&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1731</record>
    <time>2025/12/04 15:38:19.408</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{7f40df72-066b-4810-a08b-c0fbed76c948}&apos; for value &apos;DocumentLikeTool&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1732</record>
    <time>2025/12/04 15:38:19.409</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{57d563b6-44a5-47df-85be-f4199ad6b651}&apos; for value &apos;&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1733</record>
    <time>2025/12/04 15:38:19.409</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{57d563b6-44a5-47df-85be-f4199ad6b651}&apos; for value &apos;Name&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1734</record>
    <time>2025/12/04 15:38:19.409</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{57d563b6-44a5-47df-85be-f4199ad6b651}&apos; for value &apos;Style&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1735</record>
    <time>2025/12/04 15:38:19.409</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\ToolWindows\{57d563b6-44a5-47df-85be-f4199ad6b651}&apos; for value &apos;DocumentLikeTool&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1736</record>
    <time>2025/12/04 15:38:19.412</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{3306A878-CDD8-6ED8-2058-15CBA5511BFD}&apos; for value &apos;name&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1737</record>
    <time>2025/12/04 15:38:19.412</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{3306A878-CDD8-6ED8-2058-15CBA5511BFD}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1738</record>
    <time>2025/12/04 15:38:19.412</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{3306A878-CDD8-6ED8-2058-15CBA5511BFD}&apos; for value &apos;culture&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1739</record>
    <time>2025/12/04 15:38:19.412</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{3306A878-CDD8-6ED8-2058-15CBA5511BFD}&apos; for value &apos;version&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1740</record>
    <time>2025/12/04 15:38:19.412</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{3306A878-CDD8-6ED8-2058-15CBA5511BFD}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1741</record>
    <time>2025/12/04 15:38:19.413</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4BD44669-4F17-7ADE-E05D-1F62F5C0CA28}&apos; for value &apos;name&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1742</record>
    <time>2025/12/04 15:38:19.413</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4BD44669-4F17-7ADE-E05D-1F62F5C0CA28}&apos; for value &apos;publicKeyToken&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1743</record>
    <time>2025/12/04 15:38:19.413</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4BD44669-4F17-7ADE-E05D-1F62F5C0CA28}&apos; for value &apos;culture&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1744</record>
    <time>2025/12/04 15:38:19.414</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4BD44669-4F17-7ADE-E05D-1F62F5C0CA28}&apos; for value &apos;version&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1745</record>
    <time>2025/12/04 15:38:19.414</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\RuntimeConfiguration\dependentAssembly\codeBase\{4BD44669-4F17-7ADE-E05D-1F62F5C0CA28}&apos; for value &apos;codeBase&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\microsoft.upgradeassistant.vs.pkgdef</path>
  </entry>
  <entry>
    <record>1746</record>
    <time>2025/12/04 15:38:19.414</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Importing pkgdef file</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1747</record>
    <time>2025/12/04 15:38:19.414</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.NuGetClientService\1.0&apos; for value &apos;&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1748</record>
    <time>2025/12/04 15:38:19.415</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.NuGetClientService\1.0&apos; for value &apos;IsServiceHub&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1749</record>
    <time>2025/12/04 15:38:19.415</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.NuGetClientService\1.0&apos; for value &apos;ServiceLocation&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1750</record>
    <time>2025/12/04 15:38:19.415</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.NuGetClientService\1.0&apos; for value &apos;audience&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1751</record>
    <time>2025/12/04 15:38:19.415</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.ApiCatalogClientService\1.0&apos; for value &apos;&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1752</record>
    <time>2025/12/04 15:38:19.415</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.ApiCatalogClientService\1.0&apos; for value &apos;IsServiceHub&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1753</record>
    <time>2025/12/04 15:38:19.416</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.ApiCatalogClientService\1.0&apos; for value &apos;ServiceLocation&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1754</record>
    <time>2025/12/04 15:38:19.416</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>PkgDef encountered data collision in section &apos;HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config\BrokeredServices\Microsoft.UpgradeAssistant.ApiCatalogClientService\1.0&apos; for value &apos;audience&apos;</description>
    <path>c:\users\xukai\appdata\local\microsoft\visualstudio\17.0_ecca3c4a\extensions\ybuiojsm.2hg\servicehub\services\microsoft.upgradeassistant.vs.services.pkgdef</path>
  </entry>
  <entry>
    <record>1755</record>
    <time>2025/12/04 15:38:19.416</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Saving pkgdef cache meta data</description>
  </entry>
  <entry>
    <record>1756</record>
    <time>2025/12/04 15:38:19.418</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Saving pkgdef cache time stamp</description>
  </entry>
  <entry>
    <record>1757</record>
    <time>2025/12/04 15:38:19.548</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Newest node in pkgdef cache</description>
    <path>Software\Microsoft\VisualStudio\17.0_ecca3c4a_Config</path>
  </entry>
  <entry>
    <record>1758</record>
    <time>2025/12/04 15:38:19.548</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>InitializeCache: Post initializing cache</description>
  </entry>
  <entry>
    <record>1759</record>
    <time>2025/12/04 15:38:19.549</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement startup complete</description>
  </entry>
  <entry>
    <record>1760</record>
    <time>2025/12/04 15:38:19.748</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Binding Redirect entries. Ignoring duplicate.</description>
    <path>Microsoft.VisualStudio.Shell.Interop.8.0, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=8.0.0.0</path>
  </entry>
  <entry>
    <record>1761</record>
    <time>2025/12/04 15:38:19.796</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, OldVersion=1.0.2.0) Second Binding Redirect: (System.Memory.Data, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, OldVersion=1.0.0.0-6.0.0.1) Converted to: (System.Memory.Data, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, OldVersion=1.0.0.0-6.0.0.1)</path>
  </entry>
  <entry>
    <record>1762</record>
    <time>2025/12/04 15:38:20.205</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Ignoring duplicate.</description>
    <path>Microsoft.WebTools.ProjectSystem.Components, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1763</record>
    <time>2025/12/04 15:38:20.346</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (Azure.Core, Version=1.41.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=1.0.0.0-1.41.0.0) Code Base: (Azure.Core, Version=1.36.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8)</path>
  </entry>
  <entry>
    <record>1764</record>
    <time>2025/12/04 15:38:20.346</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (Azure.Core, Version=1.41.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=1.0.0.0-1.41.0.0) Code Base: (Azure.Core, Version=1.4.1.0, Culture=neutral, PublicKeyToken=92742159e12e44c8)</path>
  </entry>
  <entry>
    <record>1765</record>
    <time>2025/12/04 15:38:20.357</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Copilot.Vsix, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1766</record>
    <time>2025/12/04 15:38:20.366</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (Microsoft.VisualStudio.Services.Client.Interactive, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0-15.9.0.0) Code Base: (Microsoft.VisualStudio.Services.Client.Interactive, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a)</path>
  </entry>
  <entry>
    <record>1767</record>
    <time>2025/12/04 15:38:20.367</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Services.Client.Interactive, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1768</record>
    <time>2025/12/04 15:38:20.381</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.ProjectSystem.Implementation, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1769</record>
    <time>2025/12/04 15:38:20.393</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.WindowsAzure.CommonAzureTools.Contracts.Internal, Version=1.10.30423.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1770</record>
    <time>2025/12/04 15:38:20.402</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Copilot.UI, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1771</record>
    <time>2025/12/04 15:38:20.423</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.ProjectSystem, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1772</record>
    <time>2025/12/04 15:38:20.425</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Copilot.Roslyn, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1773</record>
    <time>2025/12/04 15:38:20.436</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.ProjectSystem.VS, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1774</record>
    <time>2025/12/04 15:38:20.502</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.UpgradeAssistant, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1775</record>
    <time>2025/12/04 15:38:20.505</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.IdentityModel.Tokens, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</path>
  </entry>
  <entry>
    <record>1776</record>
    <time>2025/12/04 15:38:20.514</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Services.Common, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1777</record>
    <time>2025/12/04 15:38:20.534</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>System.IdentityModel.Tokens.Jwt, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</path>
  </entry>
  <entry>
    <record>1778</record>
    <time>2025/12/04 15:38:20.590</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Copilot.CodeMappers.CSharp, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1779</record>
    <time>2025/12/04 15:38:20.593</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.WindowsAzure.CommonAzureTools.Contracts.1.10, Version=1.10.30423.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1780</record>
    <time>2025/12/04 15:38:20.624</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (System.ClientModel, Version=1.4.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=1.0.0.0-1.4.0.0) Code Base: (System.ClientModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8)</path>
  </entry>
  <entry>
    <record>1781</record>
    <time>2025/12/04 15:38:20.636</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.IdentityModel.Logging, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</path>
  </entry>
  <entry>
    <record>1782</record>
    <time>2025/12/04 15:38:20.648</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (System.Memory.Data, Version=6.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, OldVersion=1.0.0.0-6.0.0.1) Code Base: (System.Memory.Data, Version=1.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51)</path>
  </entry>
  <entry>
    <record>1783</record>
    <time>2025/12/04 15:38:20.653</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>NuGet.VisualStudio, Version=17.14.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1784</record>
    <time>2025/12/04 15:38:20.686</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.Data.SqlClient, Version=5.0.0.0, Culture=neutral, PublicKeyToken=23ec7fc2d6eaa4a5</path>
  </entry>
  <entry>
    <record>1785</record>
    <time>2025/12/04 15:38:20.712</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.ConnectedServices, Version=17.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</path>
  </entry>
  <entry>
    <record>1786</record>
    <time>2025/12/04 15:38:20.724</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found a Code Base that becomes unnecessary due to a Binding Redirect. Ignoring Code Base.</description>
    <path>Binding Redirect: (Microsoft.VisualStudio.LanguageServer.Client, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.14.0.0) Code Base: (Microsoft.VisualStudio.LanguageServer.Client, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a)</path>
  </entry>
  <entry>
    <record>1787</record>
    <time>2025/12/04 15:38:20.825</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.Services.WebApi, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1788</record>
    <time>2025/12/04 15:38:20.842</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.VisualStudio.ProjectSystem.VS.Implementation, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1789</record>
    <time>2025/12/04 15:38:20.884</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found both a Binding Redirection and a Code Base entries for the same Assembly. Ignoring Code Base, keeping Binding Redirection.</description>
    <path>Microsoft.UpgradeAssistant.VS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1790</record>
    <time>2025/12/04 15:38:20.941</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.VisualStudio.TestWindow.Interfaces, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=11.0.0.0-17.0.0.0) Second Binding Redirect: (Microsoft.VisualStudio.TestWindow.Interfaces, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-16.0.0.0) Converted to: (Microsoft.VisualStudio.TestWindow.Interfaces, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.0.0.0)</path>
  </entry>
  <entry>
    <record>1791</record>
    <time>2025/12/04 15:38:20.943</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.VisualStudio.ProjectSystem, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0) Second Binding Redirect: (Microsoft.VisualStudio.ProjectSystem, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0-17.0.0.0) Converted to: (Microsoft.VisualStudio.ProjectSystem, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0-17.0.0.0)</path>
  </entry>
  <entry>
    <record>1792</record>
    <time>2025/12/04 15:38:20.944</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.VisualStudio.ProjectSystem.VS, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0) Second Binding Redirect: (Microsoft.VisualStudio.ProjectSystem.VS, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0-17.0.0.0) Converted to: (Microsoft.VisualStudio.ProjectSystem.VS, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=15.0.0.0-17.0.0.0)</path>
  </entry>
  <entry>
    <record>1793</record>
    <time>2025/12/04 15:38:20.950</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (CommonExtensions\Microsoft\NavigateTo\Microsoft.VisualStudio.Language.NavigateTo.Implementation.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\navigateto\Microsoft.VisualStudio.Language.NavigateTo.Implementation.dll).</description>
    <path>Microsoft.VisualStudio.Language.NavigateTo.Implementation, Version=17.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1794</record>
    <time>2025/12/04 15:38:20.951</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.IdentityModel.Tokens, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0) Second Binding Redirect: (Microsoft.IdentityModel.Tokens, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0) Converted to: (Microsoft.IdentityModel.Tokens, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0)</path>
  </entry>
  <entry>
    <record>1795</record>
    <time>2025/12/04 15:38:20.951</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.IdentityModel.Logging, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0) Second Binding Redirect: (Microsoft.IdentityModel.Logging, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0) Converted to: (Microsoft.IdentityModel.Logging, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0)</path>
  </entry>
  <entry>
    <record>1796</record>
    <time>2025/12/04 15:38:20.951</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (System.IdentityModel.Tokens.Jwt, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0) Second Binding Redirect: (System.IdentityModel.Tokens.Jwt, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0) Converted to: (System.IdentityModel.Tokens.Jwt, Version=5.7.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, OldVersion=5.6.0.0-5.7.0.0)</path>
  </entry>
  <entry>
    <record>1797</record>
    <time>2025/12/04 15:38:20.952</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Azure.Core, Version=1.41.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=1.0.0.0-1.41.0.0) Second Binding Redirect: (Azure.Core, Version=1.41.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=0.0.0.0-1.41.0.0) Converted to: (Azure.Core, Version=1.41.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8, OldVersion=0.0.0.0-1.41.0.0)</path>
  </entry>
  <entry>
    <record>1798</record>
    <time>2025/12/04 15:38:20.954</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (PublicAssemblies\System.Net.Http.Formatting.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\teamfoundation\team explorer\System.Net.Http.Formatting.dll).</description>
    <path>System.Net.Http.Formatting, Version=5.2.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35</path>
  </entry>
  <entry>
    <record>1799</record>
    <time>2025/12/04 15:38:20.955</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (PublicAssemblies\Microsoft.Extensions.ObjectPool.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\copilot\Microsoft.Extensions.ObjectPool.dll).</description>
    <path>Microsoft.Extensions.ObjectPool, Version=9.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60</path>
  </entry>
  <entry>
    <record>1800</record>
    <time>2025/12/04 15:38:20.958</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (CommonExtensions\Microsoft\Terminal\Microsoft.VisualStudio.Terminal.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\terminal\Microsoft.VisualStudio.Terminal.dll).</description>
    <path>Microsoft.VisualStudio.Terminal, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1801</record>
    <time>2025/12/04 15:38:20.958</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.VisualStudio.AppDesigner, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.14.0.0) Second Binding Redirect: (Microsoft.VisualStudio.AppDesigner, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=10.0.0.0-17.14.0.0) Converted to: (Microsoft.VisualStudio.AppDesigner, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.14.0.0)</path>
  </entry>
  <entry>
    <record>1802</record>
    <time>2025/12/04 15:38:20.958</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found overlapping version ranges for a Binding Redirect. Coalescing.</description>
    <path>First Binding Redirect: (Microsoft.VisualStudio.Editors, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.14.0.0) Second Binding Redirect: (Microsoft.VisualStudio.Editors, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=10.0.0.0-17.14.0.0) Converted to: (Microsoft.VisualStudio.Editors, Version=17.14.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, OldVersion=0.0.0.0-17.14.0.0)</path>
  </entry>
  <entry>
    <record>1803</record>
    <time>2025/12/04 15:38:20.962</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (CommonExtensions\Microsoft\LanguageServer\Microsoft.VisualStudio.LanguageServer.Protocol.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\Microsoft.VisualStudio.LanguageServer.Protocol.dll).</description>
    <path>Microsoft.VisualStudio.LanguageServer.Protocol, Version=17.14.35.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1804</record>
    <time>2025/12/04 15:38:20.962</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (CommonExtensions\Microsoft\LanguageServer\Microsoft.VisualStudio.LanguageServer.Protocol.Extensions.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\Microsoft.VisualStudio.LanguageServer.Protocol.Extensions.dll).</description>
    <path>Microsoft.VisualStudio.LanguageServer.Protocol.Extensions, Version=17.14.35.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1805</record>
    <time>2025/12/04 15:38:20.962</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Found duplicate Code Base entries. Prefer CONFIG path (CommonExtensions\Microsoft\LanguageServer\Microsoft.VisualStudio.LanguageServer.Protocol.Internal.dll) over PKGDEF path (c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\languageserver\Microsoft.VisualStudio.LanguageServer.Protocol.Internal.dll).</description>
    <path>Microsoft.VisualStudio.LanguageServer.Protocol.Internal, Version=17.14.35.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</path>
  </entry>
  <entry>
    <record>1806</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.0 of Microsoft.Extensions.Configuration because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1807</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.0 of Microsoft.Extensions.Configuration.Abstractions because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1808</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 3.1.0.0 of Microsoft.Extensions.DependencyInjection.Abstractions because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1809</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.1.2.0 of Microsoft.Extensions.DependencyModel because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1810</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.0 of Microsoft.Extensions.FileProviders.Abstractions because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1811</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.0 of Microsoft.Extensions.FileSystemGlobbing because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1812</record>
    <time>2025/12/04 15:38:21.044</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 3.1.8.0 of Microsoft.Extensions.FileSystemGlobbing because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1813</record>
    <time>2025/12/04 15:38:21.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 3.1.0.0 of Microsoft.Extensions.Logging because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1814</record>
    <time>2025/12/04 15:38:21.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.1 of Microsoft.Extensions.Logging.Abstractions because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1815</record>
    <time>2025/12/04 15:38:21.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 3.1.0.0 of Microsoft.Extensions.Logging.Abstractions because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1816</record>
    <time>2025/12/04 15:38:21.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 3.1.0.0 of Microsoft.Extensions.Options because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1817</record>
    <time>2025/12/04 15:38:21.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 7.0.0.0 of Microsoft.Extensions.Primitives because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1818</record>
    <time>2025/12/04 15:38:21.056</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.0.1264.42 of Microsoft.Web.WebView2.Core because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-1.0.2903.40 to 1.0.2903.40.</description>
  </entry>
  <entry>
    <record>1819</record>
    <time>2025/12/04 15:38:21.056</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.0.1264.42 of Microsoft.Web.WebView2.Wpf because it is made obsolete by the BindingRedirect moving everything in the range 0.0.0.0-1.0.2903.40 to 1.0.2903.40.</description>
  </entry>
  <entry>
    <record>1820</record>
    <time>2025/12/04 15:38:21.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 13.0.0.0 of Newtonsoft.Json because it is made obsolete by the BindingRedirect moving everything in the range 4.5.0.0-13.0.0.0 to 13.0.3.0.</description>
  </entry>
  <entry>
    <record>1821</record>
    <time>2025/12/04 15:38:21.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 2.1.0.1603 of SQLitePCLRaw.batteries_v2 because it is made obsolete by the BindingRedirect moving everything in the range 2.0.0.0-2.1.4.1835 to 2.1.4.1835.</description>
  </entry>
  <entry>
    <record>1822</record>
    <time>2025/12/04 15:38:21.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 2.1.0.1603 of SQLitePCLRaw.core because it is made obsolete by the BindingRedirect moving everything in the range 2.0.0.0-2.1.4.1835 to 2.1.4.1835.</description>
  </entry>
  <entry>
    <record>1823</record>
    <time>2025/12/04 15:38:21.058</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 2.1.0.1603 of SQLitePCLRaw.provider.dynamic_cdecl because it is made obsolete by the BindingRedirect moving everything in the range 2.0.0.0-2.1.4.1835 to 2.1.4.1835.</description>
  </entry>
  <entry>
    <record>1824</record>
    <time>2025/12/04 15:38:21.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.0.33.0 of System.Composition.Hosting because it is made obsolete by the BindingRedirect moving everything in the range 1.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1825</record>
    <time>2025/12/04 15:38:21.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.0.33.0 of System.Composition.TypedParts because it is made obsolete by the BindingRedirect moving everything in the range 1.0.0.0-9.0.0.0 to 9.0.0.0.</description>
  </entry>
  <entry>
    <record>1826</record>
    <time>2025/12/04 15:38:21.060</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Removing CodeBase entry for version 1.0.2.0 of System.Memory.Data because it is made obsolete by the BindingRedirect moving everything in the range 1.0.0.0-6.0.0.1 to 6.0.0.1.</description>
  </entry>
  <entry>
    <record>1827</record>
    <time>2025/12/04 15:38:21.068</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Configuration file to be used for CLR initialization</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\devenv.exe.config</path>
  </entry>
  <entry>
    <record>1828</record>
    <time>2025/12/04 15:38:21.069</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>AppId starting registry detouring</description>
  </entry>
  <entry>
    <record>1829</record>
    <time>2025/12/04 15:38:21.582</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskSchedulerPackage]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>1830</record>
    <time>2025/12/04 15:38:21.653</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized ServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>1831</record>
    <time>2025/12/04 15:38:21.654</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [AsyncQueryServicePackage]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>1832</record>
    <time>2025/12/04 15:38:21.676</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [AsyncQueryServicePackage]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>1833</record>
    <time>2025/12/04 15:38:21.739</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskSchedulerPackage]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>1834</record>
    <time>2025/12/04 15:38:21.809</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [BackgroundInitiailizationSafetyCheckerPackage]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>1835</record>
    <time>2025/12/04 15:38:21.813</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [BackgroundInitiailizationSafetyCheckerPackage]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>1836</record>
    <time>2025/12/04 15:38:21.858</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DelayAttributionPackage]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>1837</record>
    <time>2025/12/04 15:38:21.860</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DelayAttributionPackage]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>1838</record>
    <time>2025/12/04 15:38:21.873</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>1839</record>
    <time>2025/12/04 15:38:21.972</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>1840</record>
    <time>2025/12/04 15:38:22.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SettingsPackage]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>1841</record>
    <time>2025/12/04 15:38:22.172</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UnifiedSettingsPackage]</description>
    <guid>{CB9107B5-6429-4C8A-B20B-1258255E59D0}</guid>
  </entry>
  <entry>
    <record>1842</record>
    <time>2025/12/04 15:38:22.198</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>1843</record>
    <time>2025/12/04 15:38:22.233</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeatureFlagsPackage]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>1844</record>
    <time>2025/12/04 15:38:22.305</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RemoteSettingsPackage]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>1845</record>
    <time>2025/12/04 15:38:22.320</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSExperimentationPackage]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>1846</record>
    <time>2025/12/04 15:38:22.335</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ThreadedWaitDialogPackage]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>1847</record>
    <time>2025/12/04 15:38:22.338</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ServiceBrokerPackage]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>1848</record>
    <time>2025/12/04 15:38:22.346</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ThreadedWaitDialogPackage]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>1849</record>
    <time>2025/12/04 15:38:22.371</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSExperimentationPackage]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>1850</record>
    <time>2025/12/04 15:38:22.373</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ServiceBrokerPackage]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>1851</record>
    <time>2025/12/04 15:38:22.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RemoteSettingsPackage]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>1852</record>
    <time>2025/12/04 15:38:22.506</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>1853</record>
    <time>2025/12/04 15:38:22.730</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>1854</record>
    <time>2025/12/04 15:38:22.732</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GelFactoryPackage]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>1855</record>
    <time>2025/12/04 15:38:22.735</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GelFactoryPackage]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>1856</record>
    <time>2025/12/04 15:38:22.743</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Environment Package]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>1857</record>
    <time>2025/12/04 15:38:22.770</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Successfully restored App Path</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\common7\ide\devenv.exe</path>
  </entry>
  <entry>
    <record>1858</record>
    <time>2025/12/04 15:38:22.781</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SettingsPackage]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>1859</record>
    <time>2025/12/04 15:38:22.856</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{FBE2D754-387C-4F14-9C6E-7C786C0751BB}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1860</record>
    <time>2025/12/04 15:38:22.858</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package MsixProjectExtensionsPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1861</record>
    <time>2025/12/04 15:38:25.376</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1862</record>
    <time>2025/12/04 15:38:25.377</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>1863</record>
    <time>2025/12/04 15:38:25.420</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C5EDD1EE-C43B-4360-9CE4-6B993CA12897}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1864</record>
    <time>2025/12/04 15:38:25.420</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package CSharpVsInteractiveWindowPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1865</record>
    <time>2025/12/04 15:38:25.568</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE*\VsLogUI.dll</path>
  </entry>
  <entry>
    <record>1866</record>
    <time>2025/12/04 15:38:25.568</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>1867</record>
    <time>2025/12/04 15:38:25.630</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C78CA057-CC29-421F-AD6D-3B0943DEBDFC}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: 1
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1868</record>
    <time>2025/12/04 15:38:25.630</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>1869</record>
    <time>2025/12/04 15:38:25.705</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: VSMenus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1870</record>
    <time>2025/12/04 15:38:25.705</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>1871</record>
    <time>2025/12/04 15:38:26.698</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>1872</record>
    <time>2025/12/04 15:38:26.980</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Environment Package Window Management]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>1873</record>
    <time>2025/12/04 15:38:27.568</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>1874</record>
    <time>2025/12/04 15:38:27.968</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>1875</record>
    <time>2025/12/04 15:38:27.993</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>1876</record>
    <time>2025/12/04 15:38:28.228</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>1877</record>
    <time>2025/12/04 15:38:28.247</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Source Control Integration Package]</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>1878</record>
    <time>2025/12/04 15:38:28.252</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UIContextRulesPackage]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>1879</record>
    <time>2025/12/04 15:38:28.362</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Containers Tools Extensions UI Context Rule: Debugging Containerized Solution&apos; for UI context 02537375-e071-4fa7-a4b5-535b4db50b20.</description>
  </entry>
  <entry>
    <record>1880</record>
    <time>2025/12/04 15:38:28.364</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context 038331f0-d1e8-4e82-ae9e-1c3a53303ce6.</description>
  </entry>
  <entry>
    <record>1881</record>
    <time>2025/12/04 15:38:28.364</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container&apos; for UI context 0563cf07-d14f-4b0f-b971-1913c51fa212.</description>
  </entry>
  <entry>
    <record>1882</record>
    <time>2025/12/04 15:38:28.365</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Menu UIContext rule&apos; for UI context 0c4f937e-e5ec-463d-9f09-46733c63b4a7.</description>
  </entry>
  <entry>
    <record>1883</record>
    <time>2025/12/04 15:38:28.365</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Managed Edit and Continue capability&apos; for UI context 0c89ae24-6d19-474c-a3aa-dc3b66fdbb5f.</description>
  </entry>
  <entry>
    <record>1884</record>
    <time>2025/12/04 15:38:28.365</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto load JavaScript Project System&apos; for UI context 1143326c-fe5c-4f3f-87bc-1340578a940b.</description>
  </entry>
  <entry>
    <record>1885</record>
    <time>2025/12/04 15:38:28.365</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Solution&apos; for UI context 139192cb-9a48-4618-b0a0-3770a8e7abbd.</description>
  </entry>
  <entry>
    <record>1886</record>
    <time>2025/12/04 15:38:28.372</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;UpgradeableProjectLoaded&apos; for UI context 1837160d-723f-43cd-8185-97758295a859.</description>
  </entry>
  <entry>
    <record>1887</record>
    <time>2025/12/04 15:38:28.372</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Autoload when the AzureTokenProvider nuget package is installed&apos; for UI context 18b3651f-0deb-401e-87ee-6eecb7a7e8de.</description>
  </entry>
  <entry>
    <record>1888</record>
    <time>2025/12/04 15:38:28.372</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;LogCat Tool Window&apos; for UI context 197894f5-a027-4e07-9a05-8f37cdc87c0f.</description>
  </entry>
  <entry>
    <record>1889</record>
    <time>2025/12/04 15:38:28.373</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;PowerShellFileSelected&apos; for UI context 1d16d31f-62c9-4d40-a521-a4dc2255004c.</description>
  </entry>
  <entry>
    <record>1890</record>
    <time>2025/12/04 15:38:28.390</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;NotClientMode&apos; for UI context 1df254f5-c85e-45b8-aa1f-95ee3a586706.</description>
  </entry>
  <entry>
    <record>1891</record>
    <time>2025/12/04 15:38:28.391</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Azure Functions Capability&apos; for UI context 1e5670c4-d270-4a0e-bd2b-d59eadd375ec.</description>
  </entry>
  <entry>
    <record>1892</record>
    <time>2025/12/04 15:38:28.392</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Load Code Analysis Package&apos; for UI context 23319069-3e60-4738-a4ae-03fd710e203c.</description>
  </entry>
  <entry>
    <record>1893</record>
    <time>2025/12/04 15:38:28.393</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;WebProjectsUIContext&apos; for UI context 3419bb27-a33d-47a9-a60e-9f24ba63e13b.</description>
  </entry>
  <entry>
    <record>1894</record>
    <time>2025/12/04 15:38:28.398</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Mcp Registry Activation Flag&apos; for UI context 347e08ec-7935-46b8-80db-51e9b9f726e8.</description>
  </entry>
  <entry>
    <record>1895</record>
    <time>2025/12/04 15:38:28.421</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCode Package Activation&apos; for UI context 39b5ffd8-2f3d-4395-a8aa-43a3c0e65342.</description>
  </entry>
  <entry>
    <record>1896</record>
    <time>2025/12/04 15:38:28.421</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCode CSharp Package Activation&apos; for UI context 39b5ffd8-2f3d-4395-a8aa-43a3c0e65366.</description>
  </entry>
  <entry>
    <record>1897</record>
    <time>2025/12/04 15:38:28.422</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ActiveProjectSupportsBlend&apos; for UI context 3a014e53-f5ba-4db3-9cd6-9469b8889d1b.</description>
  </entry>
  <entry>
    <record>1898</record>
    <time>2025/12/04 15:38:28.422</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container and Not Building&apos; for UI context 3b164e37-2e43-4cf9-b3b0-d4cc6a5dbf4a.</description>
  </entry>
  <entry>
    <record>1899</record>
    <time>2025/12/04 15:38:28.422</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Test Adapter for Boost.Test&apos; for UI context 3c4b983b-4670-40a8-9e2f-e7b457498c12.</description>
  </entry>
  <entry>
    <record>1900</record>
    <time>2025/12/04 15:38:28.422</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;LinuxLaunchProfilePackage&apos; for UI context 3ff627fb-a955-4988-88c7-0f609697a2ce.</description>
  </entry>
  <entry>
    <record>1901</record>
    <time>2025/12/04 15:38:28.427</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Loaded projects context&apos; for UI context 437e5c61-1934-48e1-9ffb-f774691ddddf.</description>
  </entry>
  <entry>
    <record>1902</record>
    <time>2025/12/04 15:38:28.427</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TaskRunnerExplorerUIContext&apos; for UI context 441e30df-ae09-4fb5-95db-1198a3c5f0a9.</description>
  </entry>
  <entry>
    <record>1903</record>
    <time>2025/12/04 15:38:28.427</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AspireSupportedProjectUIContext&apos; for UI context 470b1bb2-7568-4962-a51b-052bd300719d.</description>
  </entry>
  <entry>
    <record>1904</record>
    <time>2025/12/04 15:38:28.428</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCode Package Activation&apos; for UI context 4ab5ffd8-2f3d-4395-a8aa-43a3c0e65424.</description>
  </entry>
  <entry>
    <record>1905</record>
    <time>2025/12/04 15:38:28.428</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Activate Browser Link&apos; for UI context 4d987316-17d4-4741-b0fe-766f88cbd893.</description>
  </entry>
  <entry>
    <record>1906</record>
    <time>2025/12/04 15:38:28.428</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status token valid rule&apos; for UI context 50e910d0-e6e9-4120-862d-6d5b152e7607.</description>
  </entry>
  <entry>
    <record>1907</record>
    <time>2025/12/04 15:38:28.429</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Managed languages projects context&apos; for UI context 51865ae6-ec33-4181-893a-277f4d5088b6.</description>
  </entry>
  <entry>
    <record>1908</record>
    <time>2025/12/04 15:38:28.430</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AspireSolutionUIContext&apos; for UI context 530594c8-34f0-4fcf-8b79-5ca83d491e3b.</description>
  </entry>
  <entry>
    <record>1909</record>
    <time>2025/12/04 15:38:28.430</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context 549f949d-fa62-433f-9002-86c02acd4020.</description>
  </entry>
  <entry>
    <record>1910</record>
    <time>2025/12/04 15:38:28.430</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ComposeUpContextMenuVisibilityUIContextRule&apos; for UI context 54ca2797-3a3c-4a83-a723-534cee3a5a47.</description>
  </entry>
  <entry>
    <record>1911</record>
    <time>2025/12/04 15:38:28.430</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and App Container and Not Building&apos; for UI context 5c517dfa-808a-4682-80e4-097851b5ac67.</description>
  </entry>
  <entry>
    <record>1912</record>
    <time>2025/12/04 15:38:28.431</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Diagnostic tool windows available&apos; for UI context 5c69788a-62f3-42c8-880a-1a4ce40c6671.</description>
  </entry>
  <entry>
    <record>1913</record>
    <time>2025/12/04 15:38:28.435</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AddDockerSupportCommandVisibilityRule&apos; for UI context 5d0ad025-3bf2-4260-bdb9-8e320ffa4b1e.</description>
  </entry>
  <entry>
    <record>1914</record>
    <time>2025/12/04 15:38:28.436</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Show Web Live Preview View Switch Commands&apos; for UI context 62aea38a-7eb2-42e3-9070-1dc1d862c843.</description>
  </entry>
  <entry>
    <record>1915</record>
    <time>2025/12/04 15:38:28.436</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Supported Project&apos; for UI context 62df7443-fc28-4039-ad60-2d4343ec3550.</description>
  </entry>
  <entry>
    <record>1916</record>
    <time>2025/12/04 15:38:28.436</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AutomaticallyShowRemoteBrowserToolWindow&apos; for UI context 65cae6d5-ccc1-426a-8281-9786992c0ce8.</description>
  </entry>
  <entry>
    <record>1917</record>
    <time>2025/12/04 15:38:28.437</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;WebProjectsUIContext&apos; for UI context 65f4082e-1631-4a91-9c1d-4870a6f7152f.</description>
  </entry>
  <entry>
    <record>1918</record>
    <time>2025/12/04 15:38:28.437</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VCProjectInSolutionBIVSUIContext&apos; for UI context 6bd501d0-44e6-48b6-8ccb-e2abae056efb.</description>
  </entry>
  <entry>
    <record>1919</record>
    <time>2025/12/04 15:38:28.437</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Razor Cohosting Activation&apos; for UI context 6d5b86dc-6b8a-483b-ae30-098a3c7d6774.</description>
  </entry>
  <entry>
    <record>1920</record>
    <time>2025/12/04 15:38:28.438</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Gaia Package Activation&apos; for UI context 714b61b9-9d9d-4bb5-b09f-8a348993dceb.</description>
  </entry>
  <entry>
    <record>1921</record>
    <time>2025/12/04 15:38:28.438</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Test Adapter for Google Test&apos; for UI context 7517f9ae-397f-48e1-8e1b-dac609d9f52d.</description>
  </entry>
  <entry>
    <record>1922</record>
    <time>2025/12/04 15:38:28.438</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCode Visual Basic Package Activation&apos; for UI context 7525e823-ad94-4220-9a3a-ff4409dfde3b.</description>
  </entry>
  <entry>
    <record>1923</record>
    <time>2025/12/04 15:38:28.438</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp or VB File Active&apos; for UI context 7941d596-a429-42a7-9cff-ba936e31df9b.</description>
  </entry>
  <entry>
    <record>1924</record>
    <time>2025/12/04 15:38:28.472</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DiffDualFilesSelectedUIContext&apos; for UI context 7a931449-e9eb-46ee-b055-690cafd73e90.</description>
  </entry>
  <entry>
    <record>1925</record>
    <time>2025/12/04 15:38:28.473</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;StartupDelayed&apos; for UI context 7cac4ae1-2e6b-4b02-a91c-71611e86f273.</description>
  </entry>
  <entry>
    <record>1926</record>
    <time>2025/12/04 15:38:28.473</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;UICONTEXT_DiagnosticsHubAvailable&apos; for UI context 7cf409b5-9ae3-4a1f-a896-488d65736f12.</description>
  </entry>
  <entry>
    <record>1927</record>
    <time>2025/12/04 15:38:28.473</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;BlendSolutionExists&apos; for UI context 7d30c25d-a30b-451a-a4d5-9229204e6aa5.</description>
  </entry>
  <entry>
    <record>1928</record>
    <time>2025/12/04 15:38:28.475</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ContainersToolsPackage&apos; for UI context 7fa13108-6cad-490e-a9e7-bfa08ec420e2.</description>
  </entry>
  <entry>
    <record>1929</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Guide Feature Flag&apos; for UI context 81369861-ff67-4821-9701-64cf12d8d233.</description>
  </entry>
  <entry>
    <record>1930</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TestWindowShowMenus&apos; for UI context 8499c183-61d1-41f9-a458-9c19d88485d3.</description>
  </entry>
  <entry>
    <record>1931</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status signed in rule&apos; for UI context 87453937-35de-4ecd-9aec-ff07d343d777.</description>
  </entry>
  <entry>
    <record>1932</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Live Preview tool window available&apos; for UI context 88515398-e0c9-40df-9011-16bc003d8c59.</description>
  </entry>
  <entry>
    <record>1933</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;EnableCrlServiceContext&apos; for UI context 8df8df2b-263d-46b7-898f-cc607de778fb.</description>
  </entry>
  <entry>
    <record>1934</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;StartGraphicsDiagnosticsIsUsable&apos; for UI context 8e31647d-30be-4efd-a01c-d4684f9096d1.</description>
  </entry>
  <entry>
    <record>1935</record>
    <time>2025/12/04 15:38:28.476</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCodeCppPackage Package Activation&apos; for UI context 91026838-ad38-4dee-bdde-d22cf467473f.</description>
  </entry>
  <entry>
    <record>1936</record>
    <time>2025/12/04 15:38:28.477</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;PackageManagerUIContext&apos; for UI context 9c1a4c33-0ecc-4ec7-9f81-75bd534c4825.</description>
  </entry>
  <entry>
    <record>1937</record>
    <time>2025/12/04 15:38:28.477</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Generate Unit test default Context Enabler&apos; for UI context 9e320ac6-e171-460b-be27-a8487972575c.</description>
  </entry>
  <entry>
    <record>1938</record>
    <time>2025/12/04 15:38:28.477</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DockerComposePackageAutoLoadRule&apos; for UI context a339e303-52f4-47b4-9091-ac10bd0a1e10.</description>
  </entry>
  <entry>
    <record>1939</record>
    <time>2025/12/04 15:38:28.478</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Show Web Live Preview Commands&apos; for UI context a3a931d2-1ae5-4a5f-b618-1c8c9f43bba9.</description>
  </entry>
  <entry>
    <record>1940</record>
    <time>2025/12/04 15:38:28.478</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot Completions feature activation&apos; for UI context a7f179b8-a8e8-4729-86e1-414bb0a103c8.</description>
  </entry>
  <entry>
    <record>1941</record>
    <time>2025/12/04 15:38:28.478</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot Conversations feature activation&apos; for UI context a8984974-3a2f-4e50-810a-4cc51f6c1a04.</description>
  </entry>
  <entry>
    <record>1942</record>
    <time>2025/12/04 15:38:28.478</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto-show diagnostic tool windows&apos; for UI context a8b34c48-ee24-4e2b-bebc-2e2fed1f5b6a.</description>
  </entry>
  <entry>
    <record>1943</record>
    <time>2025/12/04 15:38:28.480</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DiffSingleFileSelectedUIContext&apos; for UI context aefa1456-ee1a-4886-9310-8ca46c857773.</description>
  </entry>
  <entry>
    <record>1944</record>
    <time>2025/12/04 15:38:28.480</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitHub Copilot Upgrade Package Context&apos; for UI context b278396b-c9d1-4628-8650-b8ce3925c5f0.</description>
  </entry>
  <entry>
    <record>1945</record>
    <time>2025/12/04 15:38:28.480</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;TestWindowAutoLoad&apos; for UI context b638d8c9-e2df-4324-81d0-f74d90c9695f.</description>
  </entry>
  <entry>
    <record>1946</record>
    <time>2025/12/04 15:38:28.481</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context b7a929aa-7045-4e99-a9dd-aa03107ae7af.</description>
  </entry>
  <entry>
    <record>1947</record>
    <time>2025/12/04 15:38:28.481</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;PageModelSelected&apos; for UI context b7f184b0-9013-447d-811d-cca0bad96901.</description>
  </entry>
  <entry>
    <record>1948</record>
    <time>2025/12/04 15:38:28.481</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CascadePackageAutoLoadRule&apos; for UI context ba60ab23-e429-41b0-9f9f-9b1e564e7309.</description>
  </entry>
  <entry>
    <record>1949</record>
    <time>2025/12/04 15:38:28.481</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status disabled by policy rule&apos; for UI context bc0944dd-503a-4f6b-9072-6117fb55308e.</description>
  </entry>
  <entry>
    <record>1950</record>
    <time>2025/12/04 15:38:28.482</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AspireManageComponentsExperienceUIContext&apos; for UI context be707fe7-aa90-4361-8ce6-613b8f8fca92.</description>
  </entry>
  <entry>
    <record>1951</record>
    <time>2025/12/04 15:38:28.482</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Has Solution and (App Container or Has &apos;Package And Publish&apos; menu or is MAUI)&apos; for UI context beee6818-689a-44d3-bbc4-32e9efe3baa2.</description>
  </entry>
  <entry>
    <record>1952</record>
    <time>2025/12/04 15:38:28.482</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;UICONTEXT_HotReloadVisible&apos; for UI context c0e3fa40-ab04-4790-8308-919b35bc2313.</description>
  </entry>
  <entry>
    <record>1953</record>
    <time>2025/12/04 15:38:28.485</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AddOrchestratorSupportVisibilityRule&apos; for UI context c6b376c1-3ff1-4af1-8676-cd95ce77ea1d.</description>
  </entry>
  <entry>
    <record>1954</record>
    <time>2025/12/04 15:38:28.485</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto load for vb, c#, php&apos; for UI context c7a507c9-4afb-474f-b871-6dc6fe403cf8.</description>
  </entry>
  <entry>
    <record>1955</record>
    <time>2025/12/04 15:38:28.485</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status determined rule&apos; for UI context c936efcc-6baa-4ad3-9c2b-7ba750acf18f.</description>
  </entry>
  <entry>
    <record>1956</record>
    <time>2025/12/04 15:38:28.485</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;WAP Project (VB or CS) or Web Site Project or .NET Core projects&apos; for UI context c9b9b439-ce3f-4bb3-bc22-be2284d1d963.</description>
  </entry>
  <entry>
    <record>1957</record>
    <time>2025/12/04 15:38:28.485</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context cd2def36-cca4-46b6-b93b-7b5c0f4d3be1.</description>
  </entry>
  <entry>
    <record>1958</record>
    <time>2025/12/04 15:38:28.486</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Upgrade Assistant Package UI Context&apos; for UI context ce6ab3d1-54a2-4dbb-8ade-d90deb002c1f.</description>
  </entry>
  <entry>
    <record>1959</record>
    <time>2025/12/04 15:38:28.486</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ManageProfileContextMenuVisibilityUIContextRule&apos; for UI context cf83100a-911a-4362-9374-f6c9a93c158e.</description>
  </entry>
  <entry>
    <record>1960</record>
    <time>2025/12/04 15:38:28.486</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CSharp Project or Console App or Web Project Open&apos; for UI context d018aba7-8308-4a69-bf59-337cb7e0537d.</description>
  </entry>
  <entry>
    <record>1961</record>
    <time>2025/12/04 15:38:28.486</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status copilot completions only rule&apos; for UI context d713c27f-1a0a-40a5-8fc3-99910e4a5f6b.</description>
  </entry>
  <entry>
    <record>1962</record>
    <time>2025/12/04 15:38:28.487</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Web Live Preview Feature is Enabled&apos; for UI context d9bc8c7e-cb6e-4428-ac17-2db913577525.</description>
  </entry>
  <entry>
    <record>1963</record>
    <time>2025/12/04 15:38:28.487</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;WebProjectsUIContext&apos; for UI context d9bd51b7-c99f-42fe-bc07-50a927a34d05.</description>
  </entry>
  <entry>
    <record>1964</record>
    <time>2025/12/04 15:38:28.488</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;DotNetCoreWebProjectUIContext&apos; for UI context dbcaaf18-fd1d-431f-9f1b-78f605c32996.</description>
  </entry>
  <entry>
    <record>1965</record>
    <time>2025/12/04 15:38:28.489</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot Internal User, expression&apos; for UI context df9248b0-d4b7-4308-8956-0c31ee152090.</description>
  </entry>
  <entry>
    <record>1966</record>
    <time>2025/12/04 15:38:28.490</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Auto load Entity Data Model Package&apos; for UI context e000c7e5-dba5-4682-abe0-7f6ce57b236d.</description>
  </entry>
  <entry>
    <record>1967</record>
    <time>2025/12/04 15:38:28.494</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ShowDotnetTargetMenu&apos; for UI context e0d11c80-bf25-4fa1-b796-0f2767e3fbdc.</description>
  </entry>
  <entry>
    <record>1968</record>
    <time>2025/12/04 15:38:28.495</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status error rule&apos; for UI context e17ac071-4b46-4d26-b4fd-73e29d817168.</description>
  </entry>
  <entry>
    <record>1969</record>
    <time>2025/12/04 15:38:28.495</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Copilot badge account status entitled rule&apos; for UI context e423757a-7869-403b-874a-ac10fbd5a681.</description>
  </entry>
  <entry>
    <record>1970</record>
    <time>2025/12/04 15:38:28.495</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Load Managed Project Package&apos; for UI context e7df1626-44dd-4e8c-a8a0-92eab6ddc16e.</description>
  </entry>
  <entry>
    <record>1971</record>
    <time>2025/12/04 15:38:28.496</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VCProjectBIVSUIContext&apos; for UI context e96989f7-e3bc-4920-809f-6e7353f677f1.</description>
  </entry>
  <entry>
    <record>1972</record>
    <time>2025/12/04 15:38:28.496</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dotnetweb, Teams or functions projectOpen&apos; for UI context eb597fe1-59de-4cd7-89dc-598f9aef4186.</description>
  </entry>
  <entry>
    <record>1973</record>
    <time>2025/12/04 15:38:28.497</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;OpenInTerminalCmdUIContext&apos; for UI context ebf84b38-0cc8-4ec8-aa0a-1f4de42abebc.</description>
  </entry>
  <entry>
    <record>1974</record>
    <time>2025/12/04 15:38:28.497</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context ec852623-f4b6-4c74-9272-3361ef323b5b.</description>
  </entry>
  <entry>
    <record>1975</record>
    <time>2025/12/04 15:38:28.498</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;AspireOrSupportedProjectUIContext&apos; for UI context f3d9a767-20aa-472d-ae5b-3ff39100f987.</description>
  </entry>
  <entry>
    <record>1976</record>
    <time>2025/12/04 15:38:28.498</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Microsoft Library Manager&apos; for UI context f8c0db80-39c2-4f32-9be3-701f2d25add8.</description>
  </entry>
  <entry>
    <record>1977</record>
    <time>2025/12/04 15:38:28.498</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ConfigFile&apos; for UI context f8c0db80-39c2-4f32-9be3-701f2d25add9.</description>
  </entry>
  <entry>
    <record>1978</record>
    <time>2025/12/04 15:38:28.499</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;IntelliCode C# / VB Remote Package Activation&apos; for UI context fb2beacd-64bb-4cc3-aa25-9be20c9b15df.</description>
  </entry>
  <entry>
    <record>1979</record>
    <time>2025/12/04 15:38:28.499</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VSToolWindowUIContext&apos; for UI context fd7ce107-0b2a-409f-8e1c-90bf51caf448.</description>
  </entry>
  <entry>
    <record>1980</record>
    <time>2025/12/04 15:38:28.499</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;ManageProfileDebugMenuVisibilityUIContextRule&apos; for UI context ff4818df-3fa6-41e1-9bf3-3254456f6653.</description>
  </entry>
  <entry>
    <record>1981</record>
    <time>2025/12/04 15:38:28.499</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UIContextRulesPackage]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>1982</record>
    <time>2025/12/04 15:38:28.517</time>
    <type>Information</type>
    <source>AutoLoadManager</source>
    <description>Visual Studio is using the restricted package autoload manager that doesn&apos;t allow synchronous autoload requests.</description>
  </entry>
  <entry>
    <record>1983</record>
    <time>2025/12/04 15:38:28.542</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Source Control Integration Package]</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>1984</record>
    <time>2025/12/04 15:38:28.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>1985</record>
    <time>2025/12/04 15:38:28.647</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>1986</record>
    <time>2025/12/04 15:38:29.987</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeatureFlagsPackage]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>1987</record>
    <time>2025/12/04 15:38:30.078</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UnifiedSettingsPackage]</description>
    <guid>{CB9107B5-6429-4C8A-B20B-1258255E59D0}</guid>
  </entry>
  <entry>
    <record>1988</record>
    <time>2025/12/04 15:38:30.545</time>
    <type>Error</type>
    <source>UnifiedSettings</source>
    <description>Failed to load package string with id f47a268a-bba9-442d-ac61-eef97f906458 and resource id #1002</description>
  </entry>
  <entry>
    <record>1989</record>
    <time>2025/12/04 15:38:30.545</time>
    <type>Error</type>
    <source>UnifiedSettings</source>
    <description>Failed to load package string with id 5C6B696A-FF72-4D26-B8E4-09BB7C9A8EB2 and resource id #113</description>
  </entry>
  <entry>
    <record>1990</record>
    <time>2025/12/04 15:38:32.703</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [EnvironmentOptionsPackage]</description>
    <guid>{D16083E9-47D6-4842-96CD-4CB314838942}</guid>
  </entry>
  <entry>
    <record>1991</record>
    <time>2025/12/04 15:38:32.707</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [EnvironmentOptionsPackage]</description>
    <guid>{D16083E9-47D6-4842-96CD-4CB314838942}</guid>
  </entry>
  <entry>
    <record>1992</record>
    <time>2025/12/04 15:38:32.747</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionUpdater.Update] Start: Context=Composition</description>
  </entry>
  <entry>
    <record>1993</record>
    <time>2025/12/04 15:38:32.833</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionBuilder.InitializeSettings] Start: SettingsCount=1126</description>
  </entry>
  <entry>
    <record>1994</record>
    <time>2025/12/04 15:38:32.872</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionBuilder.InitializeCategories] Start: CategoriesCount=212</description>
  </entry>
  <entry>
    <record>1995</record>
    <time>2025/12/04 15:38:33.201</time>
    <type>Error</type>
    <source>Unified Settings</source>
    <description>[projectsAndSolutions.modernization] Could not resolve string resource: @ModernizationOptionCategoryTitle;{752B9D96-073B-4E60-9244-BCE1338B45F4}</description>
  </entry>
  <entry>
    <record>1996</record>
    <time>2025/12/04 15:38:33.546</time>
    <type>Error</type>
    <source>Unified Settings</source>
    <description>[projectsAndSolutions.modernization.enableclassicupgradeassistant] Could not resolve string resource: @EnableClassicUpgradeAssistantOptionDescription;{752B9D96-073B-4E60-9244-BCE1338B45F4}</description>
  </entry>
  <entry>
    <record>1997</record>
    <time>2025/12/04 15:38:33.551</time>
    <type>Error</type>
    <source>Unified Settings</source>
    <description>[projectsAndSolutions.modernization.enableclassicupgradeassistant] Could not resolve string resource: @EnableClassicUpgradeAssistantOptionTitle;{752B9D96-073B-4E60-9244-BCE1338B45F4}</description>
  </entry>
  <entry>
    <record>1998</record>
    <time>2025/12/04 15:38:33.717</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{FBE2D754-387C-4F14-9C6E-7C786C0751BB}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>1999</record>
    <time>2025/12/04 15:38:33.717</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package MsixProjectExtensionsPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>2000</record>
    <time>2025/12/04 15:38:35.258</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2FFE45C4-5C73-493C-B187-F2E955FF875E}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>2001</record>
    <time>2025/12/04 15:38:35.258</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>2002</record>
    <time>2025/12/04 15:38:35.281</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C5EDD1EE-C43B-4360-9CE4-6B993CA12897}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: Menus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>2003</record>
    <time>2025/12/04 15:38:35.281</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package CSharpVsInteractiveWindowPackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>2004</record>
    <time>2025/12/04 15:38:35.425</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE*\VsLogUI.dll</path>
  </entry>
  <entry>
    <record>2005</record>
    <time>2025/12/04 15:38:35.426</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Failed to find CTMENU resource &apos;#1000&apos; in loaded UI library.</description>
  </entry>
  <entry>
    <record>2006</record>
    <time>2025/12/04 15:38:35.452</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{C78CA057-CC29-421F-AD6D-3B0943DEBDFC}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: 1
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>2007</record>
    <time>2025/12/04 15:38:35.452</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>2008</record>
    <time>2025/12/04 15:38:35.474</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
    <hr>0x800a006f</hr>
    <errorinfo>Resource not found: VSMenus.ctmenu
Parameter name: resourceName</errorinfo>
  </entry>
  <entry>
    <record>2009</record>
    <time>2025/12/04 15:38:35.474</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Error loading UI library for package XamlLanguagePackage. HrLoadNativeUILibrary failed with 0x800a006f.</description>
  </entry>
  <entry>
    <record>2010</record>
    <time>2025/12/04 15:38:37.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>2011</record>
    <time>2025/12/04 15:38:37.469</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>2012</record>
    <time>2025/12/04 15:38:37.529</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ImageServicePackage]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>2013</record>
    <time>2025/12/04 15:38:37.533</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ImageServicePackage]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>2014</record>
    <time>2025/12/04 15:38:37.628</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Logging Package]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>2015</record>
    <time>2025/12/04 15:38:37.629</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE*\VsLogUI.dll</path>
  </entry>
  <entry>
    <record>2016</record>
    <time>2025/12/04 15:38:37.637</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Logging Package]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>2017</record>
    <time>2025/12/04 15:38:38.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>2018</record>
    <time>2025/12/04 15:38:38.151</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>2019</record>
    <time>2025/12/04 15:38:38.329</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: &#x672A;&#x80FD;&#x52A0;&#x8F7D;&#x6587;&#x4EF6;&#x6216;&#x7A0B;&#x5E8F;&#x96C6;&#x201C;Xamarin.VisualStudio.Interfaces, Version=17.14.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756&#x201D;&#x6216;&#x5B83;&#x7684;&#x67D0;&#x4E00;&#x4E2A;&#x4F9D;&#x8D56;&#x9879;&#x3002;&#x7CFB;&#x7EDF;&#x627E;&#x4E0D;&#x5230;&#x6307;&#x5B9A;&#x7684;&#x6587;&#x4EF6;&#x3002;</description>
    <path>c:\program files\microsoft visual studio\2022\community\common7\ide\commonextensions\microsoft\xamldiagnostics\Microsoft.VisualStudio.DesignTools.Diagnostics.dll</path>
  </entry>
  <entry>
    <record>2020</record>
    <time>2025/12/04 15:38:38.346</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ExtensionManagerPackage]</description>
    <guid>{E7576C05-1874-450C-9E98-CF3A0897A069}</guid>
  </entry>
  <entry>
    <record>2021</record>
    <time>2025/12/04 15:38:38.392</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ExtensionManagerPackage]</description>
    <guid>{E7576C05-1874-450C-9E98-CF3A0897A069}</guid>
  </entry>
  <entry>
    <record>2022</record>
    <time>2025/12/04 15:38:38.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>User extensions enabled by setting</description>
    <path>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\17.0_ecca3c4a\ExtensionManager\EnableAdminExtensions</path>
  </entry>
  <entry>
    <record>2023</record>
    <time>2025/12/04 15:38:38.589</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>2024</record>
    <time>2025/12/04 15:38:38.589</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions</path>
  </entry>
  <entry>
    <record>2025</record>
    <time>2025/12/04 15:38:38.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions</path>
  </entry>
  <entry>
    <record>2026</record>
    <time>2025/12/04 15:38:38.599</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2027</record>
    <time>2025/12/04 15:38:38.601</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2028</record>
    <time>2025/12/04 15:38:38.603</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2029</record>
    <time>2025/12/04 15:38:38.605</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2030</record>
    <time>2025/12/04 15:38:38.606</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2031</record>
    <time>2025/12/04 15:38:38.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>2032</record>
    <time>2025/12/04 15:38:38.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions</path>
  </entry>
  <entry>
    <record>2033</record>
    <time>2025/12/04 15:38:38.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions</path>
  </entry>
  <entry>
    <record>2034</record>
    <time>2025/12/04 15:38:38.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2035</record>
    <time>2025/12/04 15:38:38.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2036</record>
    <time>2025/12/04 15:38:38.621</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2037</record>
    <time>2025/12/04 15:38:38.621</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2038</record>
    <time>2025/12/04 15:38:38.621</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2039</record>
    <time>2025/12/04 15:38:38.639</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>2040</record>
    <time>2025/12/04 15:38:38.640</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions</path>
  </entry>
  <entry>
    <record>2041</record>
    <time>2025/12/04 15:38:38.640</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions</path>
  </entry>
  <entry>
    <record>2042</record>
    <time>2025/12/04 15:38:38.640</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2043</record>
    <time>2025/12/04 15:38:38.642</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2044</record>
    <time>2025/12/04 15:38:38.642</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2045</record>
    <time>2025/12/04 15:38:38.642</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2046</record>
    <time>2025/12/04 15:38:38.642</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2047</record>
    <time>2025/12/04 15:38:38.743</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 5 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2048</record>
    <time>2025/12/04 15:38:38.743</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2049</record>
    <time>2025/12/04 15:38:38.743</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2050</record>
    <time>2025/12/04 15:38:38.746</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2051</record>
    <time>2025/12/04 15:38:38.747</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 5 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2052</record>
    <time>2025/12/04 15:38:38.772</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>IncompatibilityList - Check to disable incompatible extensions.</description>
  </entry>
  <entry>
    <record>2053</record>
    <time>2025/12/04 15:38:38.784</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2054</record>
    <time>2025/12/04 15:38:38.784</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2055</record>
    <time>2025/12/04 15:38:38.785</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions\Microsoft\Windows Kits\10\Desktop SDK\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2056</record>
    <time>2025/12/04 15:38:38.787</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions\Microsoft\Windows Kits\10\Windows Store SDK\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2057</record>
    <time>2025/12/04 15:38:38.795</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2058</record>
    <time>2025/12/04 15:38:38.799</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2059</record>
    <time>2025/12/04 15:38:38.799</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2060</record>
    <time>2025/12/04 15:38:38.822</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 6 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2061</record>
    <time>2025/12/04 15:38:38.846</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions\n0khvzdt.l31\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2062</record>
    <time>2025/12/04 15:38:38.846</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions\qrggq4ed.eoh\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2063</record>
    <time>2025/12/04 15:38:38.847</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions\ybuiojsm.2hg\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2064</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\1fqd54kc.sl4\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2065</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\1suwhkpo.fdu\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2066</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\3gwd1xjz.iph\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2067</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\5azeavgy.ezz\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2068</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\a13rb3tq.l1x\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2069</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\aicebs0b.seq\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2070</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\awf3ales.uod\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2071</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\b4uz2h3d.f32\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2072</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\c1fdqost.uo1\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2073</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\cxmcuifo.jqe\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2074</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\d3cssyxy.1qt\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2075</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\dldt0xyc.mmr\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2076</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\fhvq2npo.j1k\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2077</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\frxn04uo.emo\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2078</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\IncredibuildExtension\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2079</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\jaz1sfdq.bjk\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2080</record>
    <time>2025/12/04 15:38:38.861</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\kgritfwz.d5h\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2081</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft.Vsix.TemplatesPackage\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2082</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\n1qmsxyr.ex5\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2083</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\oy0h1gjl.1jk\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2084</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\pmzwt5ad.vrq\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2085</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\TestPlatform\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2086</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\tkq5tv0c.mpl\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2087</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\uvvwvtsi.5ne\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2088</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\v3elbbla.l1z\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2089</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\vd3pamtt.o5o\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2090</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\VSSDK\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2091</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\xcfzbgjs.fem\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2092</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\.NetNative\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2093</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\AppCAT\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2094</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\AppModernizationForDotNet\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2095</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\ClickOnce\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2096</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\ConnectedServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2097</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Cookiecutter\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2098</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Copilot\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2099</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\CopilotUpgradeAgent\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2100</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\DebugAdapterHost\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2101</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\DebuggerServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2102</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\IntelliCode\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2103</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\IntelliCode.CSharp\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2104</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\JavaScript\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2105</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\LiveShare\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2106</record>
    <time>2025/12/04 15:38:38.862</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\LiveShare.VSCore\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2107</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\ManagedProjectSystem\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2108</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Microsoft Office 365 Connected Service\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2109</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Portable Library Tools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2110</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Publish\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2111</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\ResourceExplorer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2112</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\TailoredProjectServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2113</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\TemplateEngine\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2114</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\UpgradeAssistant\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2115</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\WCF Connected Service\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2116</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Live Preview\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2117</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2118</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools Shared\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2119</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2120</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Windows Azure Tools Diagnostics\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2121</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\VSSDK\ProjectSystem\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2122</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Xamarin\AndroidDeviceManager\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2123</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Xamarin\AndroidSdkManager\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2124</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\AppInsights\Contracts\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2125</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\AppInsights\Core\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2126</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\CodeSense\Framework\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2127</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Graphics\Debugger\Extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2128</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Modeling\17.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2129</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\NodeJsTools\NodeJsTools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2130</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\NodeJsTools\TestAdapter\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2131</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Python\Core\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2132</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Python\Django\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2133</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Python\Profiling\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2134</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Python\VCDebugLauncher\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2135</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLDB\SSDTUpdate\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2136</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLDB\Vsix\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2137</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\SQLEditor\Vsix\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2138</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Unit Test Explorer\TestWIExtension\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2139</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\VC\ClassWizard\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2140</record>
    <time>2025/12/04 15:38:38.863</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Visual Studio MPF\10.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2141</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Visual Studio MPF\11.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2142</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Visual Studio MPF\12.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2143</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Visual Studio MPF\14.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2144</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web\Mvc\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2145</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools\Azure\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2146</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools\Library Manager\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2147</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\Common\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2148</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\RemoteDebugger\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2149</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Windows Azure Tools\SnapshotViewer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2150</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\NVIDIA\CUDA 12.8 Wizards\12.8\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2151</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web\Mvc\Scaffolding\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2152</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools\Azure\Package\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2153</record>
    <time>2025/12/04 15:38:38.864</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions\Microsoft\Web Tools\Azure\WebJobs\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2154</record>
    <time>2025/12/04 15:38:38.865</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Capping recursion at 5 directories in each extension root due to &apos;default limit behavior&apos;.</description>
  </entry>
  <entry>
    <record>2155</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\DataDesign\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2156</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Asal\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2157</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Azure Sphere\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2158</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CallHierarchy\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2159</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ClientDiagnostics\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2160</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2161</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CodeAnalysis\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2162</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Commands\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2163</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\DesignTools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2164</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\DesktopBridge\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2165</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\EBF\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2166</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Editor\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2167</record>
    <time>2025/12/04 15:38:38.934</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Embedded\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2168</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ErrorList\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2169</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Extensibility\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2170</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ExtensibilityProject\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2171</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\FSharp\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2172</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\HotReload\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2173</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Identity\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2174</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\IdentityGS\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2175</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Interactive\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2176</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\InteractiveWindow\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2177</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\LanguageServer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2178</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Markdown\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2179</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Microsoft.VisualStudio.Copilot.Contracts\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2180</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\NavigateTo\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2181</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\NuGet\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2182</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\NuGetRecommender\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2183</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\OpenFolder\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2184</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Performance Tools\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2185</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ProductUpdate\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2186</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Project\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2187</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ProjectServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2188</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ProjectSystemQuery\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2189</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\RazorLanguageServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2190</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ReferenceManager\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2191</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Search\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2192</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Terminal\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2193</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TestWindow\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2194</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TextMate\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2195</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TSServer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2196</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TypeScript\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2197</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\UniversalFlavor\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2198</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2199</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Windows.Forms\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2200</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\XamlDiagnostics\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2201</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\XamlLanguageService\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2202</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\BenchmarkDotNet\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2203</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\CppBuildInsights\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2204</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\CpuSampling\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2205</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Database\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2206</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Debugger\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2207</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\DiagnosticsHub\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2208</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\DotNetAsync\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2209</record>
    <time>2025/12/04 15:38:38.935</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\DotNetCounters\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2210</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\DotNetObjectAlloc\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2211</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\EventsViewer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2212</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\FileIO\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2213</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Instrumentation\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2214</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\MefHosting\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2215</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\ParallelDebugger\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2216</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\PerfMarkers\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2217</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Shell\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2218</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\TreeNavigation\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2219</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\UserMarks\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2220</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Architecture Tools\GraphProviderPackage\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2221</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ClientDiagnostics\AppAnalysis\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2222</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\ClientDiagnostics\AppResponsiveness\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2223</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Client\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2224</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Linux\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2225</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\CMake\Linux.TestAdapter\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2226</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\EBF\TestExplorer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2227</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Editorconfig\Command\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2228</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Editorconfig\Wizard\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2229</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\JSDiagnostics\Debugger\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2230</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Language\GenerateType\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2231</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Linux\Linux\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2232</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Linux\Shared\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2233</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\MDD\Android\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2234</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2235</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VBCSharp\ExpressionEvaluators\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2236</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VBCSharp\LanguageServices\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2237</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VBCSharp\SourceBasedTestDiscovery\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2238</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\CodeLens\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2239</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\Copilot\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2240</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\Debugger\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2241</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\LanguageServer\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2242</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VC\Project\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2243</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VisualStudio\Editors\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2244</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Debugger\Visualizers\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2245</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\TreeNavigation\GraphProvider\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2246</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Platform\Visual Studio MPF\17.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2247</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Architecture Tools\Providers\ManagedProvider\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2248</record>
    <time>2025/12/04 15:38:38.936</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Architecture Tools\Providers\NativeCode\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2249</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Architecture Tools\Providers\Solution\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2250</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Git\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2251</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\VBCSharp\LanguageServices\Core\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2252</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\Web\Razor\v3.0\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2253</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\WebClient\Diagnostics\ToolWindows\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2254</record>
    <time>2025/12/04 15:38:38.938</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Found &apos;C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions\Microsoft\WebClient\Diagnostics\WebDiagnosticsAttach\extension.vsixmanifest&apos;</description>
  </entry>
  <entry>
    <record>2255</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Single-project MSIX Packaging Tools for VS 2022&apos; (Microsoft.SingleProjectMSIXPackagingTools.Dev17)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\1FQD54KC.SL4\</path>
  </entry>
  <entry>
    <record>2256</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Windows Software Development Kit for Windows Store Apps&apos; (Microsoft.Windows.DevelopmentKit.WindowsStore)...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\WINDOWS STORE SDK\</path>
  </entry>
  <entry>
    <record>2257</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\WINDOWS STORE SDK\</path>
  </entry>
  <entry>
    <record>2258</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Windows Desktop SDK&apos; (Microsoft.Windows.DevelopmentKit.Desktop)...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\DESKTOP SDK\</path>
  </entry>
  <entry>
    <record>2259</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES (X86)\COMMON FILES\MICROSOFT\EXTENSIONMANAGER\EXTENSIONS\MICROSOFT\WINDOWS KITS\10\DESKTOP SDK\</path>
  </entry>
  <entry>
    <record>2260</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Tools for Containers&apos; (48FAED45-39EF-4C17-AC18-B3875ADAD266)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\3GWD1XJZ.IPH\</path>
  </entry>
  <entry>
    <record>2261</record>
    <time>2025/12/04 15:38:40.491</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Tools for Containers - Build Tools&apos; (3DF0B260-1070-43D7-AEC0-EE83BC78EE66)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\1SUWHKPO.FDU\</path>
  </entry>
  <entry>
    <record>2262</record>
    <time>2025/12/04 15:38:40.504</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\1SUWHKPO.FDU\</path>
  </entry>
  <entry>
    <record>2263</record>
    <time>2025/12/04 15:38:40.505</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\3GWD1XJZ.IPH\</path>
  </entry>
  <entry>
    <record>2264</record>
    <time>2025/12/04 15:38:40.505</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\1FQD54KC.SL4\</path>
  </entry>
  <entry>
    <record>2265</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Compiler Platform SDK For Visual Studio 2022&apos; (ef918f69-be54-4b44-b381-81d6cecef939)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\5AZEAVGY.EZZ\</path>
  </entry>
  <entry>
    <record>2266</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;MSTest V2 Templates&apos; (mstestProjectTemplate)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\A13RB3TQ.L1X\</path>
  </entry>
  <entry>
    <record>2267</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\5AZEAVGY.EZZ\</path>
  </entry>
  <entry>
    <record>2268</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\A13RB3TQ.L1X\</path>
  </entry>
  <entry>
    <record>2269</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Windows App SDK C++ VS2022 Templates&apos; (Microsoft.WindowsAppSDK.Cpp.Dev17)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\</path>
  </entry>
  <entry>
    <record>2270</record>
    <time>2025/12/04 15:38:40.507</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\</path>
  </entry>
  <entry>
    <record>2271</record>
    <time>2025/12/04 15:38:40.508</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.Debugger.VsDbg.Integration&apos; (Microsoft.VisualStudio.Debugger.VsDbg.Integration.7B06A237-37E6-4260-A5D5-BC8C5BFC851D)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\B4UZ2H3D.F32\</path>
  </entry>
  <entry>
    <record>2272</record>
    <time>2025/12/04 15:38:40.508</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\B4UZ2H3D.F32\</path>
  </entry>
  <entry>
    <record>2273</record>
    <time>2025/12/04 15:38:40.508</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Node.js for Visual Studio&apos; (Microsoft.VisualStudio.Package.NodeJs.9ecec6f7-3c09-4cb4-ab9c-54b1e65defee)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AICEBS0B.SEQ\</path>
  </entry>
  <entry>
    <record>2274</record>
    <time>2025/12/04 15:38:40.508</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AICEBS0B.SEQ\</path>
  </entry>
  <entry>
    <record>2275</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Tools for Containers&apos; (Microsoft.VisualStudio.Package.ContainersTools)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\FHVQ2NPO.J1K\</path>
  </entry>
  <entry>
    <record>2276</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Node.js Tools MSBuild Targets&apos; (90B6AE2E-9BDC-4D22-A670-78978E6AE4DF)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\D3CSSYXY.1QT\</path>
  </entry>
  <entry>
    <record>2277</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\FHVQ2NPO.J1K\</path>
  </entry>
  <entry>
    <record>2278</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\D3CSSYXY.1QT\</path>
  </entry>
  <entry>
    <record>2279</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;C++/WinRT templates and visualizer for VS2022&apos; (Microsoft.Windows.CppWinRT.Dev17)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\C1FDQOST.UO1\</path>
  </entry>
  <entry>
    <record>2280</record>
    <time>2025/12/04 15:38:40.509</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Core Debugging with WSL&apos; (82e81c51-04b7-4681-91bb-87b6cf7c516b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\DLDT0XYC.MMR\</path>
  </entry>
  <entry>
    <record>2281</record>
    <time>2025/12/04 15:38:40.510</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\C1FDQOST.UO1\</path>
  </entry>
  <entry>
    <record>2282</record>
    <time>2025/12/04 15:38:40.510</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\DLDT0XYC.MMR\</path>
  </entry>
  <entry>
    <record>2283</record>
    <time>2025/12/04 15:38:40.510</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Test Adapter for Boost.Test&apos; (BoostUnitTestAdapter.95183667-1f65-419b-9cac-c9fbbed28f8b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\CXMCUIFO.JQE\</path>
  </entry>
  <entry>
    <record>2284</record>
    <time>2025/12/04 15:38:40.510</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\CXMCUIFO.JQE\</path>
  </entry>
  <entry>
    <record>2285</record>
    <time>2025/12/04 15:38:40.511</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;IncrediBuild Build Acceleration&apos; (Menu.Incredibuild.2D67659E-40A5-4EEC-9F61-92C25DE9AA16)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\INCREDIBUILDEXTENSION\</path>
  </entry>
  <entry>
    <record>2286</record>
    <time>2025/12/04 15:38:40.511</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\INCREDIBUILDEXTENSION\</path>
  </entry>
  <entry>
    <record>2287</record>
    <time>2025/12/04 15:38:40.511</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Extensibility Templates&apos; (Microsoft.Vsix.TemplatesPackage)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT.VSIX.TEMPLATESPACKAGE\</path>
  </entry>
  <entry>
    <record>2288</record>
    <time>2025/12/04 15:38:40.511</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT.VSIX.TEMPLATESPACKAGE\</path>
  </entry>
  <entry>
    <record>2289</record>
    <time>2025/12/04 15:38:40.512</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;MSTest V2 Templates for Visual Basic&apos; (MSTestDesktopVB.Microsoft.c6c7fff6-20cb-405d-9ad4-a60a6d0c55d9)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\FRXN04UO.EMO\</path>
  </entry>
  <entry>
    <record>2290</record>
    <time>2025/12/04 15:38:40.512</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\FRXN04UO.EMO\</path>
  </entry>
  <entry>
    <record>2291</record>
    <time>2025/12/04 15:38:40.512</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Container Tools Extensions&apos; (Microsoft.VisualStudio.Containers.Tools.Extensions)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\JAZ1SFDQ.BJK\</path>
  </entry>
  <entry>
    <record>2292</record>
    <time>2025/12/04 15:38:40.512</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\JAZ1SFDQ.BJK\</path>
  </entry>
  <entry>
    <record>2293</record>
    <time>2025/12/04 15:38:40.513</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;MSTest V2 Create Unit Test Extension&apos; (MSTestV2UnitTestExtensionPackage.Microsoft.632139eb-968c-47ce-8667-f0898f00833f)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\KGRITFWZ.D5H\</path>
  </entry>
  <entry>
    <record>2294</record>
    <time>2025/12/04 15:38:40.513</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\KGRITFWZ.D5H\</path>
  </entry>
  <entry>
    <record>2295</record>
    <time>2025/12/04 15:38:40.514</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Windows App SDK C# VS2022 Templates&apos; (Microsoft.WindowsAppSDK.Cs.Dev17)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\</path>
  </entry>
  <entry>
    <record>2296</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Test Adapter for Google Test&apos; (GoogleTestAdapterVSIX.d3b8e668-8582-4be9-ab42-aaf872704ef3)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\N1QMSXYR.EX5\</path>
  </entry>
  <entry>
    <record>2297</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\</path>
  </entry>
  <entry>
    <record>2298</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\N1QMSXYR.EX5\</path>
  </entry>
  <entry>
    <record>2299</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Test Platform&apos; (Microsoft.TestPlatform.VSIX.Microsoft.0e51abf6-9f5f-401e-a812-4043b87acabf)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TESTPLATFORM\</path>
  </entry>
  <entry>
    <record>2300</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TESTPLATFORM\</path>
  </entry>
  <entry>
    <record>2301</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;AssemblyInfo Wizard&apos; (Microsoft.VisualStudio.Templates.AssemblyInfo.Wizard)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\OY0H1GJL.1JK\</path>
  </entry>
  <entry>
    <record>2302</record>
    <time>2025/12/04 15:38:40.515</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\OY0H1GJL.1JK\</path>
  </entry>
  <entry>
    <record>2303</record>
    <time>2025/12/04 15:38:40.516</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;WebDriver Test Template For Edge (.NET Framework)&apos; (EdgeDriverTest.0b43ac6b-e6ff-4afc-a5f6-286d41c046a6)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\PMZWT5AD.VRQ\</path>
  </entry>
  <entry>
    <record>2304</record>
    <time>2025/12/04 15:38:40.516</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\PMZWT5AD.VRQ\</path>
  </entry>
  <entry>
    <record>2305</record>
    <time>2025/12/04 15:38:40.536</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio SDK&apos; (Microsoft.VisualStudio.SDK)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VSSDK\</path>
  </entry>
  <entry>
    <record>2306</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;TypeScript Build for Microsoft Visual Studio&apos; (Microsoft.TypeScript.3105e3af-f2c4-4ddc-be8e-d065c00a5be1)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VD3PAMTT.O5O\</path>
  </entry>
  <entry>
    <record>2307</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;ML.NET Model Builder 2022&apos; (A274A0E2-E41E-40CC-A694-8D5D14BBD2D0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\UVVWVTSI.5NE\</path>
  </entry>
  <entry>
    <record>2308</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VSSDK\</path>
  </entry>
  <entry>
    <record>2309</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\UVVWVTSI.5NE\</path>
  </entry>
  <entry>
    <record>2310</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VD3PAMTT.O5O\</path>
  </entry>
  <entry>
    <record>2311</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Cache Service&apos; (Microsoft.VisualStudio.Cache.Service)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XCFZBGJS.FEM\</path>
  </entry>
  <entry>
    <record>2312</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XCFZBGJS.FEM\</path>
  </entry>
  <entry>
    <record>2313</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;WebDriver Test Template For Edge (.NET Core)&apos; (EdgeDriverTestDotNetCore.047a6d51-9322-4a4c-825b-5fe6cd48494c)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\V3ELBBLA.L1Z\</path>
  </entry>
  <entry>
    <record>2314</record>
    <time>2025/12/04 15:38:40.537</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\V3ELBBLA.L1Z\</path>
  </entry>
  <entry>
    <record>2315</record>
    <time>2025/12/04 15:38:40.538</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Native VS Integration&apos; (.NetNative.Microsoft.76F163D5-4A7A-47F7-9F5D-AA1743525C3F)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\.NETNATIVE\</path>
  </entry>
  <entry>
    <record>2316</record>
    <time>2025/12/04 15:38:40.538</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\.NETNATIVE\</path>
  </entry>
  <entry>
    <record>2317</record>
    <time>2025/12/04 15:38:40.538</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Connected Services&apos; (ConnectedServices.897486C9-63BD-48D3-8A33-CB770FBD0723)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CONNECTEDSERVICES\</path>
  </entry>
  <entry>
    <record>2318</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;GitHub Copilot app modernization for .NET&apos; (Microsoft.Modernization.MigrateToAzure)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPMODERNIZATIONFORDOTNET\</path>
  </entry>
  <entry>
    <record>2319</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio ClickOnce Publish Provider&apos; (ClickOnceProvider.13ff266c-3231-421f-870e-f31a8ca48395)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CLICKONCE\</path>
  </entry>
  <entry>
    <record>2320</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CONNECTEDSERVICES\</path>
  </entry>
  <entry>
    <record>2321</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPMODERNIZATIONFORDOTNET\</path>
  </entry>
  <entry>
    <record>2322</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CLICKONCE\</path>
  </entry>
  <entry>
    <record>2323</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Azure Migrate application and code assessment&apos; (Microsoft.Modernization.AppCAT)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPCAT\</path>
  </entry>
  <entry>
    <record>2324</record>
    <time>2025/12/04 15:38:40.539</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPCAT\</path>
  </entry>
  <entry>
    <record>2325</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;GitHub Copilot&apos; (VisualStudio.GitHub.Copilot)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COPILOT\</path>
  </entry>
  <entry>
    <record>2326</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COPILOT\</path>
  </entry>
  <entry>
    <record>2327</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;VS Debugger Brokered Services Package&apos; (Microsoft.VisualStudio.Debugger.BrokeredServices)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\DEBUGGERSERVICES\</path>
  </entry>
  <entry>
    <record>2328</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\DEBUGGERSERVICES\</path>
  </entry>
  <entry>
    <record>2329</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Cookiecutter&apos; (7B469DDE-BFCC-4975-9C6E-154583ED3672)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COOKIECUTTER\</path>
  </entry>
  <entry>
    <record>2330</record>
    <time>2025/12/04 15:38:40.541</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COOKIECUTTER\</path>
  </entry>
  <entry>
    <record>2331</record>
    <time>2025/12/04 15:38:40.542</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost&apos; (Microsoft.VisualStudio.Debugger.VSCodeDebuggerHost.Microsoft.42741dc7-574b-4d5b-b8d7-02b7d23cbc85)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\DEBUGADAPTERHOST\</path>
  </entry>
  <entry>
    <record>2332</record>
    <time>2025/12/04 15:38:40.542</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\DEBUGADAPTERHOST\</path>
  </entry>
  <entry>
    <record>2333</record>
    <time>2025/12/04 15:38:40.542</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;GitHub Copilot app modernization - upgrade for .NET&apos; (Microsoft.Modernization.UpgradeAgent)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COPILOTUPGRADEAGENT\</path>
  </entry>
  <entry>
    <record>2334</record>
    <time>2025/12/04 15:38:40.542</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\COPILOTUPGRADEAGENT\</path>
  </entry>
  <entry>
    <record>2335</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Live Share VS Core&apos; (Microsoft.VisualStudio.LiveShare.VSCore)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\LIVESHARE.VSCORE\</path>
  </entry>
  <entry>
    <record>2336</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio IntelliCode - C#&apos; (Microsoft.VisualStudio.IntelliCode.CSharp)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\INTELLICODE.CSHARP\</path>
  </entry>
  <entry>
    <record>2337</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\INTELLICODE.CSHARP\</path>
  </entry>
  <entry>
    <record>2338</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio IntelliCode&apos; (IntelliCode.VSIX.598224b2-b987-401b-8509-f568d0c0b946)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\INTELLICODE\</path>
  </entry>
  <entry>
    <record>2339</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\LIVESHARE.VSCORE\</path>
  </entry>
  <entry>
    <record>2340</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\INTELLICODE\</path>
  </entry>
  <entry>
    <record>2341</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Live Share&apos; (Microsoft.VisualStudio.LiveShare.2022)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\LIVESHARE\</path>
  </entry>
  <entry>
    <record>2342</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\LIVESHARE\</path>
  </entry>
  <entry>
    <record>2343</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;JavaScript Project System&apos; (Microsoft.VisualStudio.JavaScript.ProjectSystem)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\JAVASCRIPT\</path>
  </entry>
  <entry>
    <record>2344</record>
    <time>2025/12/04 15:38:40.543</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\JAVASCRIPT\</path>
  </entry>
  <entry>
    <record>2345</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;C#, Visual Basic and F# project systems&apos; (EDDCB5BE-3C18-444E-8E50-AE06CD345872)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MANAGEDPROJECTSYSTEM\</path>
  </entry>
  <entry>
    <record>2346</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MANAGEDPROJECTSYSTEM\</path>
  </entry>
  <entry>
    <record>2347</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Resource Explorer&apos; (Microsoft.VisualStudio.ResourceExplorer)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\RESOURCEEXPLORER\</path>
  </entry>
  <entry>
    <record>2348</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\RESOURCEEXPLORER\</path>
  </entry>
  <entry>
    <record>2349</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft VisualStudio Managed Publish&apos; (E9E7F832-34FD-43F8-BACF-39D21037E93A)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PUBLISH\</path>
  </entry>
  <entry>
    <record>2350</record>
    <time>2025/12/04 15:38:40.544</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PUBLISH\</path>
  </entry>
  <entry>
    <record>2351</record>
    <time>2025/12/04 15:38:40.546</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Office 365 Services with Microsoft Graph&apos; (Office365.F8BFDB32-F4EB-49BF-97CF-FF814F939753)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MICROSOFT OFFICE 365 CONNECTED SERVICE\</path>
  </entry>
  <entry>
    <record>2352</record>
    <time>2025/12/04 15:38:40.546</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MICROSOFT OFFICE 365 CONNECTED SERVICE\</path>
  </entry>
  <entry>
    <record>2353</record>
    <time>2025/12/04 15:38:40.547</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Portable Library Tools&apos; (10143FCD-81D4-434C-8360-6557F1C053E9)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PORTABLE LIBRARY TOOLS\</path>
  </entry>
  <entry>
    <record>2354</record>
    <time>2025/12/04 15:38:40.547</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PORTABLE LIBRARY TOOLS\</path>
  </entry>
  <entry>
    <record>2355</record>
    <time>2025/12/04 15:38:40.548</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos; WCF Web Service Reference&apos; (WCFSVCREF.4E55C53D-1367-4057-9DA7-2507AFF68A55)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WCF CONNECTED SERVICE\</path>
  </entry>
  <entry>
    <record>2356</record>
    <time>2025/12/04 15:38:40.548</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WCF CONNECTED SERVICE\</path>
  </entry>
  <entry>
    <record>2357</record>
    <time>2025/12/04 15:38:40.548</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Web Live Preview&apos; (Microsoft.WebTools.BrowserLink.WebLivePreview)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB LIVE PREVIEW\</path>
  </entry>
  <entry>
    <record>2358</record>
    <time>2025/12/04 15:38:40.548</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB LIVE PREVIEW\</path>
  </entry>
  <entry>
    <record>2359</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Template Engine&apos; (3B5EAFB3-87E4-4986-8924-D24DF860D894)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\TEMPLATEENGINE\</path>
  </entry>
  <entry>
    <record>2360</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\TEMPLATEENGINE\</path>
  </entry>
  <entry>
    <record>2361</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.TailoredProjectServices.Debugger.dll&apos; (Microsoft.VisualStudio.TailoredProjectServices.Debugger.dll)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\TAILOREDPROJECTSERVICES\</path>
  </entry>
  <entry>
    <record>2362</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Upgrade Assistant&apos; (Microsoft.Modernization.UpgradeAssistant)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\UPGRADEASSISTANT\</path>
  </entry>
  <entry>
    <record>2363</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\UPGRADEASSISTANT\</path>
  </entry>
  <entry>
    <record>2364</record>
    <time>2025/12/04 15:38:40.549</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\TAILOREDPROJECTSERVICES\</path>
  </entry>
  <entry>
    <record>2365</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Sdk Project System&apos; (Microsoft.VisualStudio.Sdk.ProjectSystem)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VSSDK\PROJECTSYSTEM\</path>
  </entry>
  <entry>
    <record>2366</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\VSSDK\PROJECTSYSTEM\</path>
  </entry>
  <entry>
    <record>2367</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft ASP.NET and Web Tools&apos; (1D7A611D-F1E7-4E23-91D6-C64426EBE6B5)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\</path>
  </entry>
  <entry>
    <record>2368</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\</path>
  </entry>
  <entry>
    <record>2369</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft ASP.NET and Web Tools&apos; (E8105105-1014-4688-9F62-52186FEBF19B)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS SHARED\</path>
  </entry>
  <entry>
    <record>2370</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS SHARED\</path>
  </entry>
  <entry>
    <record>2371</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Azure Tools&apos; (77a5a151-6a9b-4d08-bc38-340ab29566e2)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\</path>
  </entry>
  <entry>
    <record>2372</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\</path>
  </entry>
  <entry>
    <record>2373</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Azure Tools Diagnostics&apos; (28365939-02C4-4D35-BD4B-147D2D8F8A2A)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS DIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2374</record>
    <time>2025/12/04 15:38:40.551</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS DIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2375</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CodeSenseFramework&apos; (157a4c97-f489-4efd-8700-3b50d586fa58)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CODESENSE\FRAMEWORK\</path>
  </entry>
  <entry>
    <record>2376</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\CODESENSE\FRAMEWORK\</path>
  </entry>
  <entry>
    <record>2377</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Android Device Manager&apos; (Microsoft.VisualStudio.Android.DeviceManager)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XAMARIN\ANDROIDDEVICEMANAGER\</path>
  </entry>
  <entry>
    <record>2378</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XAMARIN\ANDROIDDEVICEMANAGER\</path>
  </entry>
  <entry>
    <record>2379</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Xamarin Android SDK Manager&apos; (Microsoft.VisualStudio.Android.SdkManager)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XAMARIN\ANDROIDSDKMANAGER\</path>
  </entry>
  <entry>
    <record>2380</record>
    <time>2025/12/04 15:38:40.552</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\XAMARIN\ANDROIDSDKMANAGER\</path>
  </entry>
  <entry>
    <record>2381</record>
    <time>2025/12/04 15:38:40.553</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Developer Analytics Tools&apos; (7B66689B-28BD-4D2E-96CD-A76F120CA567)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPINSIGHTS\CONTRACTS\</path>
  </entry>
  <entry>
    <record>2382</record>
    <time>2025/12/04 15:38:40.553</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPINSIGHTS\CONTRACTS\</path>
  </entry>
  <entry>
    <record>2383</record>
    <time>2025/12/04 15:38:40.553</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Developer Analytics Tools&apos; (6784BA9A-FE1E-4000-8357-DC3D9B2C27F9)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPINSIGHTS\CORE\</path>
  </entry>
  <entry>
    <record>2384</record>
    <time>2025/12/04 15:38:40.553</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\APPINSIGHTS\CORE\</path>
  </entry>
  <entry>
    <record>2385</record>
    <time>2025/12/04 15:38:40.553</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Graphics&apos; (CDA2D886-5BCE-406D-BB46-08B20D3B3E96)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\GRAPHICS\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2386</record>
    <time>2025/12/04 15:38:40.554</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\GRAPHICS\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2387</record>
    <time>2025/12/04 15:38:40.554</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Python&apos; (96492FC7-7BC6-46F7-8559-66BB4E09FD1E)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\CORE\</path>
  </entry>
  <entry>
    <record>2388</record>
    <time>2025/12/04 15:38:40.554</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\CORE\</path>
  </entry>
  <entry>
    <record>2389</record>
    <time>2025/12/04 15:38:40.554</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Node.js Test Adapter&apos; ({69795897-7116-44CA-B20F-958C56A5399C})...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\TESTADAPTER\</path>
  </entry>
  <entry>
    <record>2390</record>
    <time>2025/12/04 15:38:40.554</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\TESTADAPTER\</path>
  </entry>
  <entry>
    <record>2391</record>
    <time>2025/12/04 15:38:40.556</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Modeling Extension&apos; (Microsoft.VisualStudio.Modeling.Extension)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MODELING\17.0\</path>
  </entry>
  <entry>
    <record>2392</record>
    <time>2025/12/04 15:38:40.556</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\MODELING\17.0\</path>
  </entry>
  <entry>
    <record>2393</record>
    <time>2025/12/04 15:38:40.556</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Node.js Tools&apos; (FE8A8C3D-328A-476D-99F9-2A24B75F8C7F)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\</path>
  </entry>
  <entry>
    <record>2394</record>
    <time>2025/12/04 15:38:40.556</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\</path>
  </entry>
  <entry>
    <record>2395</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;SQL Server Data Tools&apos; (Microsoft.VisualStudio.Data.Tools)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLDB\VSIX\</path>
  </entry>
  <entry>
    <record>2396</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Python - Profiling&apos; (81da0100-e6db-4783-91ea-c38c3fa1b81e)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\PROFILING\</path>
  </entry>
  <entry>
    <record>2397</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\PROFILING\</path>
  </entry>
  <entry>
    <record>2398</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Python - Django&apos; (a8637c34-aa55-46e2-973c-9c3e09afc17b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\DJANGO\</path>
  </entry>
  <entry>
    <record>2399</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\DJANGO\</path>
  </entry>
  <entry>
    <record>2400</record>
    <time>2025/12/04 15:38:40.557</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLDB\VSIX\</path>
  </entry>
  <entry>
    <record>2401</record>
    <time>2025/12/04 15:38:40.558</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft SQL Server Data Tools&apos; (C4D3BC8D-48FB-495D-BCA3-9539975C0B18)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLDB\SSDTUPDATE\</path>
  </entry>
  <entry>
    <record>2402</record>
    <time>2025/12/04 15:38:40.558</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLDB\SSDTUPDATE\</path>
  </entry>
  <entry>
    <record>2403</record>
    <time>2025/12/04 15:38:40.558</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Python - C++ project debugging support&apos; (PythonVCDebugLauncher.5AF7E179-1406-4804-9267-93F3BD7C7422)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\VCDEBUGLAUNCHER\</path>
  </entry>
  <entry>
    <record>2404</record>
    <time>2025/12/04 15:38:40.558</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\PYTHON\VCDEBUGLAUNCHER\</path>
  </entry>
  <entry>
    <record>2405</record>
    <time>2025/12/04 15:38:40.559</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;SQL Server Data Tools - Sql Editor&apos; (Microsoft.VisualStudio.Data.Tools.SqlEditor)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLEDITOR\VSIX\</path>
  </entry>
  <entry>
    <record>2406</record>
    <time>2025/12/04 15:38:40.559</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\SQLEDITOR\VSIX\</path>
  </entry>
  <entry>
    <record>2407</record>
    <time>2025/12/04 15:38:40.559</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ Class Wizard Package Implementation&apos; (Microsoft.VCClassWizard.ClassWizardPackage)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VC\CLASSWIZARD\</path>
  </entry>
  <entry>
    <record>2408</record>
    <time>2025/12/04 15:38:40.559</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VC\CLASSWIZARD\</path>
  </entry>
  <entry>
    <record>2409</record>
    <time>2025/12/04 15:38:40.560</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio MPF&apos; (Microsoft.VisualStudio.MPF)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\10.0\</path>
  </entry>
  <entry>
    <record>2410</record>
    <time>2025/12/04 15:38:40.560</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\10.0\</path>
  </entry>
  <entry>
    <record>2411</record>
    <time>2025/12/04 15:38:40.560</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Associate Test Method to Work Item&apos; (6e008c95-9cf6-47cd-9ecd-cfdf33277f8c)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\UNIT TEST EXPLORER\TESTWIEXTENSION\</path>
  </entry>
  <entry>
    <record>2412</record>
    <time>2025/12/04 15:38:40.560</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\UNIT TEST EXPLORER\TESTWIEXTENSION\</path>
  </entry>
  <entry>
    <record>2413</record>
    <time>2025/12/04 15:38:40.563</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio MPF 11.0&apos; (Microsoft.VisualStudio.MPF.11.0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\11.0\</path>
  </entry>
  <entry>
    <record>2414</record>
    <time>2025/12/04 15:38:40.563</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\11.0\</path>
  </entry>
  <entry>
    <record>2415</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft ASP.NET Web Frameworks and Tools&apos; (EB5FC179-25CB-4644-A84A-DED3D3F8590B)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB\MVC\</path>
  </entry>
  <entry>
    <record>2416</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB\MVC\</path>
  </entry>
  <entry>
    <record>2417</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Library Manager&apos; (Microsoft.Web.LibraryManager)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\LIBRARY MANAGER\</path>
  </entry>
  <entry>
    <record>2418</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Azure App Service Tools Common Components&apos; (614747DE-4215-4F0B-B663-DAC4DB7E44F8)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\</path>
  </entry>
  <entry>
    <record>2419</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\</path>
  </entry>
  <entry>
    <record>2420</record>
    <time>2025/12/04 15:38:40.564</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\LIBRARY MANAGER\</path>
  </entry>
  <entry>
    <record>2421</record>
    <time>2025/12/04 15:38:40.566</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio MPF 14.0&apos; (Microsoft.VisualStudio.MPF.14.0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\14.0\</path>
  </entry>
  <entry>
    <record>2422</record>
    <time>2025/12/04 15:38:40.566</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio MPF 12.0&apos; (Microsoft.VisualStudio.MPF.12.0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\12.0\</path>
  </entry>
  <entry>
    <record>2423</record>
    <time>2025/12/04 15:38:40.566</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\12.0\</path>
  </entry>
  <entry>
    <record>2424</record>
    <time>2025/12/04 15:38:40.566</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\VISUAL STUDIO MPF\14.0\</path>
  </entry>
  <entry>
    <record>2425</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Common Azure Tools&apos; (3410A1F6-C408-45E8-978E-D6D6921937E8)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\COMMON\</path>
  </entry>
  <entry>
    <record>2426</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\COMMON\</path>
  </entry>
  <entry>
    <record>2427</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CUDA 12.8 Wizards&apos; (Vsip.CudaTemplates.d14a0700-084a-41ad-96ef-cf8c86982bd8)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\NVIDIA\CUDA 12.8 WIZARDS\12.8\</path>
  </entry>
  <entry>
    <record>2428</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\NVIDIA\CUDA 12.8 WIZARDS\12.8\</path>
  </entry>
  <entry>
    <record>2429</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.WindowsAzure.RemoteDebugger&apos; (21E001B0-66E4-4C3F-A446-526B001C6278)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\REMOTEDEBUGGER\</path>
  </entry>
  <entry>
    <record>2430</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\REMOTEDEBUGGER\</path>
  </entry>
  <entry>
    <record>2431</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio ASP.NET MVC 5 Scaffolding&apos; (Microsoft.AspNet.Scaffolding.Mvc.5.0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB\MVC\SCAFFOLDING\</path>
  </entry>
  <entry>
    <record>2432</record>
    <time>2025/12/04 15:38:40.567</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB\MVC\SCAFFOLDING\</path>
  </entry>
  <entry>
    <record>2433</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Snapshot Debugger&apos; (Microsoft.SnapshotDebugger.03cacfb4-a900-400a-8545-e2be7f835124)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\SNAPSHOTVIEWER\</path>
  </entry>
  <entry>
    <record>2434</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WINDOWS AZURE TOOLS\SNAPSHOTVIEWER\</path>
  </entry>
  <entry>
    <record>2435</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Azure Sphere for Visual Studio 2022&apos; (Microsoft.VisualStudio.AzureSphere.D04ED893-E024-4CC2-9828-50AD52E3444A)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\</path>
  </entry>
  <entry>
    <record>2436</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\</path>
  </entry>
  <entry>
    <record>2437</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Azure App Service Tools&apos; (8B566E37-A2E1-4020-9D1A-1FEFFCFA9253)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\PACKAGE\</path>
  </entry>
  <entry>
    <record>2438</record>
    <time>2025/12/04 15:38:40.569</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\PACKAGE\</path>
  </entry>
  <entry>
    <record>2439</record>
    <time>2025/12/04 15:38:40.570</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Azure Functions and Web Jobs Tools&apos; (Microsoft.VisualStudio.Web.AzureFunctions)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\WEBJOBS\</path>
  </entry>
  <entry>
    <record>2440</record>
    <time>2025/12/04 15:38:40.570</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\WEB TOOLS\AZURE\WEBJOBS\</path>
  </entry>
  <entry>
    <record>2441</record>
    <time>2025/12/04 15:38:40.570</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Keychain Credential Helper&apos; (Microsoft.VisualStudio.KeychainCredentialHelper)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ASAL\</path>
  </entry>
  <entry>
    <record>2442</record>
    <time>2025/12/04 15:38:40.570</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ASAL\</path>
  </entry>
  <entry>
    <record>2443</record>
    <time>2025/12/04 15:38:40.572</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio DataDesign&apos; (Microsoft.VisualStudio.DataDesign)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\DATADESIGN\</path>
  </entry>
  <entry>
    <record>2444</record>
    <time>2025/12/04 15:38:40.572</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\DATADESIGN\</path>
  </entry>
  <entry>
    <record>2445</record>
    <time>2025/12/04 15:38:40.572</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.Commands&apos; (Microsoft.VisualStudio.Commands.d1d01a95-e978-4540-bd6f-20bda7ce4929)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\COMMANDS\</path>
  </entry>
  <entry>
    <record>2446</record>
    <time>2025/12/04 15:38:40.572</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\COMMANDS\</path>
  </entry>
  <entry>
    <record>2447</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CMake support for Visual Studio&apos; (Microsoft.VisualStudio.CMake.VC.526FBDAA-5C95-4044-8131-A5B7057781B1)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\</path>
  </entry>
  <entry>
    <record>2448</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\</path>
  </entry>
  <entry>
    <record>2449</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Client Diagnostics&apos; (ClientDiagnostics..ac2d8bbe-fced-4277-8f61-24cecafa06b6)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2450</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2451</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Call Hierarchy&apos; (Microsoft.VisualStudio.Platform.CallHierarchy)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CALLHIERARCHY\</path>
  </entry>
  <entry>
    <record>2452</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CALLHIERARCHY\</path>
  </entry>
  <entry>
    <record>2453</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CodeAnalysis&apos; (Microsoft.VisualStudio.CodeAnalysis)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CODEANALYSIS\</path>
  </entry>
  <entry>
    <record>2454</record>
    <time>2025/12/04 15:38:40.573</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CODEANALYSIS\</path>
  </entry>
  <entry>
    <record>2455</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Embedded Tools&apos; (Microsoft.VisualStudio.Embedded)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EMBEDDED\</path>
  </entry>
  <entry>
    <record>2456</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EMBEDDED\</path>
  </entry>
  <entry>
    <record>2457</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Editor&apos; (Microsoft.VisualStudio.Platform.Editor)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITOR\</path>
  </entry>
  <entry>
    <record>2458</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITOR\</path>
  </entry>
  <entry>
    <record>2459</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Windows Application Packaging Project System&apos; (Microsoft.VisualStudio.DesktopBridge.ProjectSystem.dll)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\DESKTOPBRIDGE\</path>
  </entry>
  <entry>
    <record>2460</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;External Build support for Visual Studio&apos; (Microsoft.VisualStudio.Workspace.ExternalBuildFramework.F3641056-6B12-4C85-A36F-77736BEA3FC9)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EBF\</path>
  </entry>
  <entry>
    <record>2461</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EBF\</path>
  </entry>
  <entry>
    <record>2462</record>
    <time>2025/12/04 15:38:40.574</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\DESKTOPBRIDGE\</path>
  </entry>
  <entry>
    <record>2463</record>
    <time>2025/12/04 15:38:40.576</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio XAML Designer&apos; (Microsoft.VisualStudio.DesignTools.XamlDesignerHost)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\DESIGNTOOLS\</path>
  </entry>
  <entry>
    <record>2464</record>
    <time>2025/12/04 15:38:40.576</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\DESIGNTOOLS\</path>
  </entry>
  <entry>
    <record>2465</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Error List&apos; (Microsoft.VisualStudio.ErrorList)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ERRORLIST\</path>
  </entry>
  <entry>
    <record>2466</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ERRORLIST\</path>
  </entry>
  <entry>
    <record>2467</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Hot Reload Components&apos; (Microsoft.VisualStudio.HotReload)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\HOTRELOAD\</path>
  </entry>
  <entry>
    <record>2468</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\HOTRELOAD\</path>
  </entry>
  <entry>
    <record>2469</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual F# Tools&apos; (VisualFSharp)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\FSHARP\</path>
  </entry>
  <entry>
    <record>2470</record>
    <time>2025/12/04 15:38:40.577</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\FSHARP\</path>
  </entry>
  <entry>
    <record>2471</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;VisualStudio.Extensibility Project System&apos; (Microsoft.VisualStudio.Extensibility.Project)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\</path>
  </entry>
  <entry>
    <record>2472</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\</path>
  </entry>
  <entry>
    <record>2473</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Extensibility Support&apos; (Microsoft.VisualStudio.Extensibility.Container)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITY\</path>
  </entry>
  <entry>
    <record>2474</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITY\</path>
  </entry>
  <entry>
    <record>2475</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Identity Service&apos; (Microsoft.VisualStudio.Identity)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\IDENTITY\</path>
  </entry>
  <entry>
    <record>2476</record>
    <time>2025/12/04 15:38:40.578</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\IDENTITY\</path>
  </entry>
  <entry>
    <record>2477</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;VisualStudio Interactive Window&apos; (1F42C6D0-F876-4AF0-8185-1BEB0A325BB2)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\INTERACTIVEWINDOW\</path>
  </entry>
  <entry>
    <record>2478</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\INTERACTIVEWINDOW\</path>
  </entry>
  <entry>
    <record>2479</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Language Server Protocol Client&apos; (Microsoft.VisualStudio.LanguageServer)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LANGUAGESERVER\</path>
  </entry>
  <entry>
    <record>2480</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LANGUAGESERVER\</path>
  </entry>
  <entry>
    <record>2481</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Interactive Extensions Package&apos; (d5009e66-baab-4459-8792-31b287e829ba)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\INTERACTIVE\</path>
  </entry>
  <entry>
    <record>2482</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\INTERACTIVE\</path>
  </entry>
  <entry>
    <record>2483</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.Developer.IdentityServiceGS&apos; (Microsoft.Developer.IdentityServiceGS)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\IDENTITYGS\</path>
  </entry>
  <entry>
    <record>2484</record>
    <time>2025/12/04 15:38:40.579</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\IDENTITYGS\</path>
  </entry>
  <entry>
    <record>2485</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Markdown language service&apos; (Microsoft.VisualStudio.Platform.Markdown)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MARKDOWN\</path>
  </entry>
  <entry>
    <record>2486</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MARKDOWN\</path>
  </entry>
  <entry>
    <record>2487</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;NuGetRecommender&apos; (NuGetRecommender.1c74c0d3-19bc-4e51-a0f1-5258a3023d2b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NUGETRECOMMENDER\</path>
  </entry>
  <entry>
    <record>2488</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NUGETRECOMMENDER\</path>
  </entry>
  <entry>
    <record>2489</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;NuGet Package Manager for Visual Studio 2022&apos; (NuGet.72c5d240-f742-48d4-a0f1-7016671e405b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NUGET\</path>
  </entry>
  <entry>
    <record>2490</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NUGET\</path>
  </entry>
  <entry>
    <record>2491</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Navigate To&apos; (Microsoft.VisualStudio.Platform.NavigateTo)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NAVIGATETO\</path>
  </entry>
  <entry>
    <record>2492</record>
    <time>2025/12/04 15:38:40.580</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\NAVIGATETO\</path>
  </entry>
  <entry>
    <record>2493</record>
    <time>2025/12/04 15:38:40.582</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;GitHub Copilot - Contracts&apos; (Microsoft.VisualStudio.Copilot.Contracts)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MICROSOFT.VISUALSTUDIO.COPILOT.CONTRACTS\</path>
  </entry>
  <entry>
    <record>2494</record>
    <time>2025/12/04 15:38:40.582</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MICROSOFT.VISUALSTUDIO.COPILOT.CONTRACTS\</path>
  </entry>
  <entry>
    <record>2495</record>
    <time>2025/12/04 15:38:40.582</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Profiler Margin&apos; (Microsoft.VisualStudio.PerformanceTools.EditorIntegration)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PERFORMANCE TOOLS\</path>
  </entry>
  <entry>
    <record>2496</record>
    <time>2025/12/04 15:38:40.582</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio AnyCode&apos; (Microsoft.VisualStudio.AnyCode)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\OPENFOLDER\</path>
  </entry>
  <entry>
    <record>2497</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\OPENFOLDER\</path>
  </entry>
  <entry>
    <record>2498</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio ProjectServices&apos; (Microsoft.VisualStudio.ProjectServices)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECTSERVICES\</path>
  </entry>
  <entry>
    <record>2499</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PERFORMANCE TOOLS\</path>
  </entry>
  <entry>
    <record>2500</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Product Updates&apos; (8EAF6C8E-1283-4EEE-AB6E-F0F087BFCBFD)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PRODUCTUPDATE\</path>
  </entry>
  <entry>
    <record>2501</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECTSERVICES\</path>
  </entry>
  <entry>
    <record>2502</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PRODUCTUPDATE\</path>
  </entry>
  <entry>
    <record>2503</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Common Project System&apos; (Microsoft.VisualStudio.ProjectSystem)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECT\</path>
  </entry>
  <entry>
    <record>2504</record>
    <time>2025/12/04 15:38:40.583</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECT\</path>
  </entry>
  <entry>
    <record>2505</record>
    <time>2025/12/04 15:38:40.584</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Search&apos; (Microsoft.VisualStudio.Platform.Search)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\SEARCH\</path>
  </entry>
  <entry>
    <record>2506</record>
    <time>2025/12/04 15:38:40.584</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\SEARCH\</path>
  </entry>
  <entry>
    <record>2507</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Terminal&apos; (Microsoft.VisualStudio.Platform.Terminal.x64)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TERMINAL\</path>
  </entry>
  <entry>
    <record>2508</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TERMINAL\</path>
  </entry>
  <entry>
    <record>2509</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Razor Language Services&apos; (Microsoft.VisualStudio.RazorExtension)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\RAZORLANGUAGESERVICES\</path>
  </entry>
  <entry>
    <record>2510</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\RAZORLANGUAGESERVICES\</path>
  </entry>
  <entry>
    <record>2511</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Project System Query&apos; (Microsoft.VisualStudio.ProjectSystem.Query)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECTSYSTEMQUERY\</path>
  </entry>
  <entry>
    <record>2512</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\PROJECTSYSTEMQUERY\</path>
  </entry>
  <entry>
    <record>2513</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Reference Manager&apos; (Microsoft.VisualStudio.ReferenceManager)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\REFERENCEMANAGER\</path>
  </entry>
  <entry>
    <record>2514</record>
    <time>2025/12/04 15:38:40.585</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\REFERENCEMANAGER\</path>
  </entry>
  <entry>
    <record>2515</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio Extension for TextMate Grammars&apos; (Microsoft.VisualStudio.TextMateGrammars)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEXTMATE\</path>
  </entry>
  <entry>
    <record>2516</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;TypeScript Language Server&apos; (Microsoft.VisualStudio.Package.TypeScript.TSServer.b6fe773c-24c4-428e-9557-0883d0cbe5b4)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TSSERVER\</path>
  </entry>
  <entry>
    <record>2517</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEXTMATE\</path>
  </entry>
  <entry>
    <record>2518</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TSSERVER\</path>
  </entry>
  <entry>
    <record>2519</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Test Explorer Window&apos; (TestWindow.Microsoft.0771d463-d74d-4e95-aac2-39d3c7ec1f97)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TESTWINDOW\</path>
  </entry>
  <entry>
    <record>2520</record>
    <time>2025/12/04 15:38:40.587</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TESTWINDOW\</path>
  </entry>
  <entry>
    <record>2521</record>
    <time>2025/12/04 15:38:40.588</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.UniversalLibrary.dll&apos; (Microsoft.VisualStudio.UniversalLibrary.dll)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\UNIVERSALFLAVOR\</path>
  </entry>
  <entry>
    <record>2522</record>
    <time>2025/12/04 15:38:40.588</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\UNIVERSALFLAVOR\</path>
  </entry>
  <entry>
    <record>2523</record>
    <time>2025/12/04 15:38:40.588</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;TypeScript Tools for Microsoft Visual Studio&apos; (Microsoft.TypeScript.3D12078A-1A3F-4AFF-8B70-0037C0F580CD)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TYPESCRIPT\</path>
  </entry>
  <entry>
    <record>2524</record>
    <time>2025/12/04 15:38:40.588</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TYPESCRIPT\</path>
  </entry>
  <entry>
    <record>2525</record>
    <time>2025/12/04 15:38:40.589</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;BenchmarkDotNet Tool&apos; (BenchmarkDotNet.Microsoft Corp..b880d9be-372a-40bf-9aec-0801dd3a2b5d)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\BENCHMARKDOTNET\</path>
  </entry>
  <entry>
    <record>2526</record>
    <time>2025/12/04 15:38:40.589</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\BENCHMARKDOTNET\</path>
  </entry>
  <entry>
    <record>2527</record>
    <time>2025/12/04 15:38:40.589</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;WinForms Designer&apos; (ACD83F93-440C-4EDD-B086-436F5852F4E1)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WINDOWS.FORMS\</path>
  </entry>
  <entry>
    <record>2528</record>
    <time>2025/12/04 15:38:40.590</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WINDOWS.FORMS\</path>
  </entry>
  <entry>
    <record>2529</record>
    <time>2025/12/04 15:38:40.590</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ Misc. MEF Components&apos; (Microsoft.VisualStudio.VC)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\</path>
  </entry>
  <entry>
    <record>2530</record>
    <time>2025/12/04 15:38:40.590</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\</path>
  </entry>
  <entry>
    <record>2531</record>
    <time>2025/12/04 15:38:40.591</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio XAML Diagnostics Tools&apos; (Microsoft.VisualStudio.DesignTools.Diagnostics)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\XAMLDIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2532</record>
    <time>2025/12/04 15:38:40.591</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\XAMLDIAGNOSTICS\</path>
  </entry>
  <entry>
    <record>2533</record>
    <time>2025/12/04 15:38:40.591</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio XAML Language Service&apos; (Microsoft.VisualStudio.DesignTools.XamlLanguageService)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\XAMLLANGUAGESERVICE\</path>
  </entry>
  <entry>
    <record>2534</record>
    <time>2025/12/04 15:38:40.591</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\XAMLLANGUAGESERVICE\</path>
  </entry>
  <entry>
    <record>2535</record>
    <time>2025/12/04 15:38:40.591</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Diagnostics Hub&apos; (22512d50-40bc-4dea-89b1-21d70bb4218e)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DIAGNOSTICSHUB\</path>
  </entry>
  <entry>
    <record>2536</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Cpp Build Insights Tool&apos; (CppBuildInsights.Microsoft Corp..8332E269-72A4-4020-B678-0AAA2A6562F5)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\CPPBUILDINSIGHTS\</path>
  </entry>
  <entry>
    <record>2537</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DIAGNOSTICSHUB\</path>
  </entry>
  <entry>
    <record>2538</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\CPPBUILDINSIGHTS\</path>
  </entry>
  <entry>
    <record>2539</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CPU Usage&apos; (CpuSampling.Microsoft Corp..7cdb3050-b7a1-4c26-8480-0769a8432ee7)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\CPUSAMPLING\</path>
  </entry>
  <entry>
    <record>2540</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\CPUSAMPLING\</path>
  </entry>
  <entry>
    <record>2541</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Debugger GUI&apos; (VsDebugPresentationPackage)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2542</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Database Tool&apos; (DatabaseTool.Microsoft Corp..94b63a54-1218-4d29-adff-ae2f856c67f4)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DATABASE\</path>
  </entry>
  <entry>
    <record>2543</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DATABASE\</path>
  </entry>
  <entry>
    <record>2544</record>
    <time>2025/12/04 15:38:40.592</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2545</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Async Tool&apos; (DotNetAsync.Microsoft Corp..b880d9be-372a-40bf-9aec-0801dd3a2b5d)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETASYNC\</path>
  </entry>
  <entry>
    <record>2546</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETASYNC\</path>
  </entry>
  <entry>
    <record>2547</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;File IO Tool&apos; (FileIO.Microsoft Corp..96f6ae6f-3915-41b7-aadb-bcf77c540729)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\FILEIO\</path>
  </entry>
  <entry>
    <record>2548</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\FILEIO\</path>
  </entry>
  <entry>
    <record>2549</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;EventsViewer Tool&apos; (EventsViewerTool.Microsoft Corp..01FAD7C8-77EC-4E88-9F80-C88FA0055252)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\EVENTSVIEWER\</path>
  </entry>
  <entry>
    <record>2550</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\EVENTSVIEWER\</path>
  </entry>
  <entry>
    <record>2551</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.Net Counters Tool&apos; (DotNetCountersTool.Microsoft Corp..0ec7bae7-c2b8-4df3-87ed-47dccb4d0192)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETCOUNTERS\</path>
  </entry>
  <entry>
    <record>2552</record>
    <time>2025/12/04 15:38:40.593</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETCOUNTERS\</path>
  </entry>
  <entry>
    <record>2553</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Object Allocation&apos; (DotNetObjectAllocation.Microsoft Corp..2205b5d8-e06d-453d-80b8-dcea82c6dd5b)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETOBJECTALLOC\</path>
  </entry>
  <entry>
    <record>2554</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DOTNETOBJECTALLOC\</path>
  </entry>
  <entry>
    <record>2555</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio MEF host&apos; (Microsoft.VisualStudio.Platform.MefHost)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\MEFHOSTING\</path>
  </entry>
  <entry>
    <record>2556</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\MEFHOSTING\</path>
  </entry>
  <entry>
    <record>2557</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Perf Markers&apos; (PerfMarkers.Microsoft Corporation.5f945160-e23d-49c5-8997-e05932baa944)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\PERFMARKERS\</path>
  </entry>
  <entry>
    <record>2558</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\PERFMARKERS\</path>
  </entry>
  <entry>
    <record>2559</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Parallel Debugger GUI&apos; (ParallelDebugPackage)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\PARALLELDEBUGGER\</path>
  </entry>
  <entry>
    <record>2560</record>
    <time>2025/12/04 15:38:40.595</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\PARALLELDEBUGGER\</path>
  </entry>
  <entry>
    <record>2561</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Instrumentation&apos; (Instrumentation.Microsoft Corp..7cdb3050-b7a1-4c26-8480-0769a8432ee7)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\INSTRUMENTATION\</path>
  </entry>
  <entry>
    <record>2562</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\INSTRUMENTATION\</path>
  </entry>
  <entry>
    <record>2563</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Shell Components&apos; (Microsoft.VisualStudio.Platform)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\SHELL\</path>
  </entry>
  <entry>
    <record>2564</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\SHELL\</path>
  </entry>
  <entry>
    <record>2565</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Application Responsiveness&apos; (AppResponsiveness..D57E4960-6C0D-4336-AFEF-CB2FAD5E97AD)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\APPRESPONSIVENESS\</path>
  </entry>
  <entry>
    <record>2566</record>
    <time>2025/12/04 15:38:40.596</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\APPRESPONSIVENESS\</path>
  </entry>
  <entry>
    <record>2567</record>
    <time>2025/12/04 15:38:40.597</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;UserMarks Tool&apos; (UserMarksTool.Microsoft Corp..27656D46-B6EC-4B37-85FA-32C6C90ADCE5)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\USERMARKS\</path>
  </entry>
  <entry>
    <record>2568</record>
    <time>2025/12/04 15:38:40.597</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\USERMARKS\</path>
  </entry>
  <entry>
    <record>2569</record>
    <time>2025/12/04 15:38:40.597</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio Tree Navigation&apos; (Microsoft.VisualStudio.TreeNavigation)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\TREENAVIGATION\</path>
  </entry>
  <entry>
    <record>2570</record>
    <time>2025/12/04 15:38:40.597</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\TREENAVIGATION\</path>
  </entry>
  <entry>
    <record>2571</record>
    <time>2025/12/04 15:38:40.598</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;UI Application Analysis&apos; (AppAnalysis..2A78E22C-164F-4185-A439-5B5DC5824EC6)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\APPANALYSIS\</path>
  </entry>
  <entry>
    <record>2572</record>
    <time>2025/12/04 15:38:40.599</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CLIENTDIAGNOSTICS\APPANALYSIS\</path>
  </entry>
  <entry>
    <record>2573</record>
    <time>2025/12/04 15:38:40.599</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;GraphProviderPackage&apos; (5F2E5E42-4192-4D79-A0D8-1D881E808829)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\GRAPHPROVIDERPACKAGE\</path>
  </entry>
  <entry>
    <record>2574</record>
    <time>2025/12/04 15:38:40.600</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\GRAPHPROVIDERPACKAGE\</path>
  </entry>
  <entry>
    <record>2575</record>
    <time>2025/12/04 15:38:40.600</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CMake client for Visual Studio&apos; (Microsoft.VisualStudio.CMake.VC.3DA3EDC9-446F-467A-82C0-260057228811)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CLIENT\</path>
  </entry>
  <entry>
    <record>2576</record>
    <time>2025/12/04 15:38:40.600</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\CLIENT\</path>
  </entry>
  <entry>
    <record>2577</record>
    <time>2025/12/04 15:38:40.600</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CMake Linux Test Adapter&apos; (Microsoft.VisualStudio.Linux.CMake.VC.TestAdapter.460F03F1-7738-4500-B95E-68CBB470E0E4)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\LINUX.TESTADAPTER\</path>
  </entry>
  <entry>
    <record>2578</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\LINUX.TESTADAPTER\</path>
  </entry>
  <entry>
    <record>2579</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;External Build Framework Test Adapter support&apos; (MS.VS.Workspace.EBF.TestProvider.E7C2F617-305E-4EFE-A0AB-46C392988EAF)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EBF\TESTEXPLORER\</path>
  </entry>
  <entry>
    <record>2580</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;CMake support for Visual Studio&apos; (Microsoft.VisualStudio.Linux.CMake.VC.10F84D6A-F5B4-4FB8-9988-352ED3051200)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\LINUX\</path>
  </entry>
  <entry>
    <record>2581</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\CMAKE\LINUX\</path>
  </entry>
  <entry>
    <record>2582</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EBF\TESTEXPLORER\</path>
  </entry>
  <entry>
    <record>2583</record>
    <time>2025/12/04 15:38:40.602</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;editorconfig Command&apos; (Microsoft.VisualStudio.Templates.Editorconfig.Command)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITORCONFIG\COMMAND\</path>
  </entry>
  <entry>
    <record>2584</record>
    <time>2025/12/04 15:38:40.603</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITORCONFIG\COMMAND\</path>
  </entry>
  <entry>
    <record>2585</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ for Linux and Mac Development&apos; (Microsoft.VisualStudio.Linux.Shared)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\SHARED\</path>
  </entry>
  <entry>
    <record>2586</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\SHARED\</path>
  </entry>
  <entry>
    <record>2587</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;JavaScript Debug Adapter&apos; (Microsoft.VisualStudio.JavaScript.DebugAdapter.cde3ffb3-2b8d-4776-b1d9-ff645a8f11ca)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\JSDIAGNOSTICS\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2588</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;editorconfig Wizard&apos; (Microsoft.VisualStudio.Templates.Editorconfig.Wizard.Setup)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITORCONFIG\WIZARD\</path>
  </entry>
  <entry>
    <record>2589</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\JSDIAGNOSTICS\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2590</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EDITORCONFIG\WIZARD\</path>
  </entry>
  <entry>
    <record>2591</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ for Linux Development&apos; (Microsoft.VisualStudio.Linux.VC.53CDC963-411A-4C4D-921C-DE3B5A78025F)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\</path>
  </entry>
  <entry>
    <record>2592</record>
    <time>2025/12/04 15:38:40.604</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LINUX\LINUX\</path>
  </entry>
  <entry>
    <record>2593</record>
    <time>2025/12/04 15:38:40.605</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Generate Type User Interface&apos; (Microsoft.VisualStudio.Language.GenerateType)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LANGUAGE\GENERATETYPE\</path>
  </entry>
  <entry>
    <record>2594</record>
    <time>2025/12/04 15:38:40.605</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\LANGUAGE\GENERATETYPE\</path>
  </entry>
  <entry>
    <record>2595</record>
    <time>2025/12/04 15:38:40.607</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Roslyn Language Services&apos; (0b5e8ddb-f12d-4131-a71d-77acc26a798f)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\LANGUAGESERVICES\</path>
  </entry>
  <entry>
    <record>2596</record>
    <time>2025/12/04 15:38:40.607</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Team Explorer&apos; (Microsoft.VisualStudio.TeamFoundation.TeamExplorer.Extensions)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEAMFOUNDATION\TEAM EXPLORER\</path>
  </entry>
  <entry>
    <record>2597</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\LANGUAGESERVICES\</path>
  </entry>
  <entry>
    <record>2598</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEAMFOUNDATION\TEAM EXPLORER\</path>
  </entry>
  <entry>
    <record>2599</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Roslyn Expression Evaluators&apos; (21BAC26D-2935-4D0D-A282-AD647E2592B5)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\EXPRESSIONEVALUATORS\</path>
  </entry>
  <entry>
    <record>2600</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\EXPRESSIONEVALUATORS\</path>
  </entry>
  <entry>
    <record>2601</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft.VisualStudio.Android.VC&apos; (Microsoft.VisualStudio.Android.VC.B2656F14-3E31-4BE8-9C4A-3B61A5BD7F7A)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MDD\ANDROID\</path>
  </entry>
  <entry>
    <record>2602</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\MDD\ANDROID\</path>
  </entry>
  <entry>
    <record>2603</record>
    <time>2025/12/04 15:38:40.608</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Real Time Test Discovery Package&apos; (100cce4d-b061-4215-8fcd-9cb9334929b3)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\SOURCEBASEDTESTDISCOVERY\</path>
  </entry>
  <entry>
    <record>2604</record>
    <time>2025/12/04 15:38:40.609</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\SOURCEBASEDTESTDISCOVERY\</path>
  </entry>
  <entry>
    <record>2605</record>
    <time>2025/12/04 15:38:40.609</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Language Server Protocol (LSP) Server for C/C++&apos; (Microsoft.VisualStudio.VC.LanguageServer)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\LANGUAGESERVER\</path>
  </entry>
  <entry>
    <record>2606</record>
    <time>2025/12/04 15:38:40.609</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\LANGUAGESERVER\</path>
  </entry>
  <entry>
    <record>2607</record>
    <time>2025/12/04 15:38:40.609</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ CodeLens data point providers.&apos; (Microsoft.VisualStudio.VC.CodeLens)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\CODELENS\</path>
  </entry>
  <entry>
    <record>2608</record>
    <time>2025/12/04 15:38:40.610</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual C++ Project Engine&apos; (Microsoft.VisualStudio.Project.VisualC)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\PROJECT\</path>
  </entry>
  <entry>
    <record>2609</record>
    <time>2025/12/04 15:38:40.610</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\CODELENS\</path>
  </entry>
  <entry>
    <record>2610</record>
    <time>2025/12/04 15:38:40.610</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\PROJECT\</path>
  </entry>
  <entry>
    <record>2611</record>
    <time>2025/12/04 15:38:40.610</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft Visual Studio C/C++ Expression Evaluator&apos; (CppDebug)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2612</record>
    <time>2025/12/04 15:38:40.610</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\DEBUGGER\</path>
  </entry>
  <entry>
    <record>2613</record>
    <time>2025/12/04 15:38:40.613</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;VC Copilot&apos; (Microsoft.VisualStudio.VC.Copilot)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\COPILOT\</path>
  </entry>
  <entry>
    <record>2614</record>
    <time>2025/12/04 15:38:40.613</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VC\COPILOT\</path>
  </entry>
  <entry>
    <record>2615</record>
    <time>2025/12/04 15:38:40.613</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;VisualStudio Editors&apos; (F6B5EACA-7FA1-4591-8D40-A38234763621)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VISUALSTUDIO\EDITORS\</path>
  </entry>
  <entry>
    <record>2616</record>
    <time>2025/12/04 15:38:40.613</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VISUALSTUDIO\EDITORS\</path>
  </entry>
  <entry>
    <record>2617</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Visual Studio MPF 17.0&apos; (Microsoft.VisualStudio.MPF.17.0)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\VISUAL STUDIO MPF\17.0\</path>
  </entry>
  <entry>
    <record>2618</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\VISUAL STUDIO MPF\17.0\</path>
  </entry>
  <entry>
    <record>2619</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Debugger Visualizers Package&apos; (Microsoft.VisualStudio.DebuggerVisualizers.Package)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DEBUGGER\VISUALIZERS\</path>
  </entry>
  <entry>
    <record>2620</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\DEBUGGER\VISUALIZERS\</path>
  </entry>
  <entry>
    <record>2621</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Tree Navigation Graph Provider&apos; (Microsoft.VisualStudio.TreeNavigation.GraphProvider)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\TREENAVIGATION\GRAPHPROVIDER\</path>
  </entry>
  <entry>
    <record>2622</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\PLATFORM\TREENAVIGATION\GRAPHPROVIDER\</path>
  </entry>
  <entry>
    <record>2623</record>
    <time>2025/12/04 15:38:40.614</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;C# Provider&apos; (Microsoft.VisualStudio.Progression.LanguageService.ManagedProvider)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\MANAGEDPROVIDER\</path>
  </entry>
  <entry>
    <record>2624</record>
    <time>2025/12/04 15:38:40.615</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\MANAGEDPROVIDER\</path>
  </entry>
  <entry>
    <record>2625</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Microsoft WebTools Razor 3_0&apos; (Microsoft.WebTools.Languages.Razor.3)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEB\RAZOR\V3.0\</path>
  </entry>
  <entry>
    <record>2626</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEB\RAZOR\V3.0\</path>
  </entry>
  <entry>
    <record>2627</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Native Code Provider&apos; (Microsoft.VisualStudio.Progression.Native.CodeProvider)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\NATIVECODE\</path>
  </entry>
  <entry>
    <record>2628</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\NATIVECODE\</path>
  </entry>
  <entry>
    <record>2629</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;MinGit&apos; (Microsoft.VisualStudio.TeamFoundation.TeamExplorer.MinGit)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEAMFOUNDATION\TEAM EXPLORER\GIT\</path>
  </entry>
  <entry>
    <record>2630</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\TEAMFOUNDATION\TEAM EXPLORER\GIT\</path>
  </entry>
  <entry>
    <record>2631</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Solution Provider&apos; (Microsoft.VisualStudio.Progression.VSProvider)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\SOLUTION\</path>
  </entry>
  <entry>
    <record>2632</record>
    <time>2025/12/04 15:38:40.617</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\ARCHITECTURE TOOLS\PROVIDERS\SOLUTION\</path>
  </entry>
  <entry>
    <record>2633</record>
    <time>2025/12/04 15:38:40.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Roslyn Services for .NET ServiceHub Host&apos; (77E1B4B1-51C4-4B24-9CA2-3CFAC4943DFF)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\LANGUAGESERVICES\CORE\</path>
  </entry>
  <entry>
    <record>2634</record>
    <time>2025/12/04 15:38:40.620</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\VBCSHARP\LANGUAGESERVICES\CORE\</path>
  </entry>
  <entry>
    <record>2635</record>
    <time>2025/12/04 15:38:40.621</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Baidu Comate&apos; (vs_comate.8b0993ed-0f8f-40da-b67e-6ffbe90df116)...</description>
    <path>C:\USERS\XUKAI\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_ECCA3C4A\EXTENSIONS\QRGGQ4ED.EOH\</path>
  </entry>
  <entry>
    <record>2636</record>
    <time>2025/12/04 15:38:40.622</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;.NET Upgrade Assistant&apos; (Microsoft.NET.UpgradeAssistant)...</description>
    <path>C:\USERS\XUKAI\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_ECCA3C4A\EXTENSIONS\YBUIOJSM.2HG\</path>
  </entry>
  <entry>
    <record>2637</record>
    <time>2025/12/04 15:38:40.622</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;HtmlToolHost&apos; (b66f381b-48de-4c10-b71b-ef9a2a808d85)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEBCLIENT\DIAGNOSTICS\TOOLWINDOWS\</path>
  </entry>
  <entry>
    <record>2638</record>
    <time>2025/12/04 15:38:40.622</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEBCLIENT\DIAGNOSTICS\TOOLWINDOWS\</path>
  </entry>
  <entry>
    <record>2639</record>
    <time>2025/12/04 15:38:40.622</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;Baidu Comate&apos; (vs_comate.8b0993ed-0f8f-40da-b67e-6ffbe90df116)...</description>
    <path>C:\USERS\XUKAI\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\17.0_ECCA3C4A\EXTENSIONS\N0KHVZDT.L31\</path>
  </entry>
  <entry>
    <record>2640</record>
    <time>2025/12/04 15:38:40.622</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Successfully loaded extension &apos;WebDiagnosticsAttach&apos; (B64A8572-DE00-483C-90ED-E61EB7FEA9BF)...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEBCLIENT\DIAGNOSTICS\WEBDIAGNOSTICSATTACH\</path>
  </entry>
  <entry>
    <record>2641</record>
    <time>2025/12/04 15:38:40.623</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\WEBCLIENT\DIAGNOSTICS\WEBDIAGNOSTICSATTACH\</path>
  </entry>
  <entry>
    <record>2642</record>
    <time>2025/12/04 15:38:40.696</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Extension is enabled...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions\ybuiojsm.2hg\</path>
  </entry>
  <entry>
    <record>2643</record>
    <time>2025/12/04 15:38:40.773</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>2644</record>
    <time>2025/12/04 15:38:40.773</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\CommonExtensions</path>
  </entry>
  <entry>
    <record>2645</record>
    <time>2025/12/04 15:38:40.773</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\Extensions</path>
  </entry>
  <entry>
    <record>2646</record>
    <time>2025/12/04 15:38:40.774</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2647</record>
    <time>2025/12/04 15:38:40.774</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2648</record>
    <time>2025/12/04 15:38:40.775</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Users\xukai\AppData\Local\Microsoft SDKs</path>
  </entry>
  <entry>
    <record>2649</record>
    <time>2025/12/04 15:38:40.775</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2650</record>
    <time>2025/12/04 15:38:40.775</time>
    <type>Information</type>
    <source>Extension Manager</source>
    <description>Searching folder for extension.vsixmanifest files...</description>
    <path>C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions</path>
  </entry>
  <entry>
    <record>2651</record>
    <time>2025/12/04 15:38:56.000</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>2652</record>
    <time>2025/12/04 15:38:57.164</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Dialogs]</description>
    <guid>{A1609AC6-6B91-42E1-8B92-6C8593CB4A8D}</guid>
  </entry>
  <entry>
    <record>2653</record>
    <time>2025/12/04 15:38:57.179</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Dialogs]</description>
    <guid>{A1609AC6-6B91-42E1-8B92-6C8593CB4A8D}</guid>
  </entry>
  <entry>
    <record>2654</record>
    <time>2025/12/04 15:38:57.419</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (), file (C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ItemTemplates\Templates.Editorconfig.SolutionFile.Setup.Item..vstman). Invalid template element (TemplateID) value (Microsoft.VisualStudio.Templates.Editorconfig.AspNetCore.default).</description>
  </entry>
  <entry>
    <record>2655</record>
    <time>2025/12/04 15:38:57.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UnzipPackage]</description>
    <guid>{40048C5B-E7A6-4B9F-B7AA-E71FD261F695}</guid>
  </entry>
  <entry>
    <record>2656</record>
    <time>2025/12/04 15:38:57.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UnzipPackage]</description>
    <guid>{40048C5B-E7A6-4B9F-B7AA-E71FD261F695}</guid>
  </entry>
  <entry>
    <record>2657</record>
    <time>2025/12/04 15:38:57.654</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;Visual F# Items&apos; is rejected because it is not a relative path: &apos;\.\NullPath&apos;</description>
  </entry>
  <entry>
    <record>2658</record>
    <time>2025/12/04 15:39:00.157</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.Cs.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2659</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.Cs.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2660</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.Cs.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2661</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.Cs.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2662</record>
    <time>2025/12/04 15:39:00.157</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2663</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2664</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2665</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2666</record>
    <time>2025/12/04 15:39:00.157</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2667</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2668</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2669</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2670</record>
    <time>2025/12/04 15:39:00.157</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2671</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2672</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2673</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2674</record>
    <time>2025/12/04 15:39:00.157</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2675</record>
    <time>2025/12/04 15:39:00.157</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2676</record>
    <time>2025/12/04 15:39:00.158</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2677</record>
    <time>2025/12/04 15:39:00.158</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2678</record>
    <time>2025/12/04 15:39:00.158</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\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2679</record>
    <time>2025/12/04 15:39:00.158</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2680</record>
    <time>2025/12/04 15:39:00.158</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2681</record>
    <time>2025/12/04 15:39:00.158</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.Cs.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2682</record>
    <time>2025/12/04 15:39:00.225</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>Error in Template (C:\Users\xukai\AppData\Local\Microsoft\VisualStudio\17.0_ecca3c4a\VTC\c5912e05558cda060d0abc79e3a9659f\~IC\Templates\md-web.zip\MyTemplate.vstemplate), file (MyTemplate.vstemplate).  ProjectSubType not found.  ProjectType(Web) requires a ProjectSubType.</description>
  </entry>
  <entry>
    <record>2683</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2684</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2685</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2686</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.BlankPage.vstemplate</path>
  </entry>
  <entry>
    <record>2687</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.CppWinRT.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2688</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.CppWinRT.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2689</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.CppWinRT.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2690</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Desktop.CppWinRT.BlankWindow.vstemplate</path>
  </entry>
  <entry>
    <record>2691</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2692</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2693</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2694</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.ResourceDictionary.vstemplate</path>
  </entry>
  <entry>
    <record>2695</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2696</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2697</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2698</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.Resw.vstemplate</path>
  </entry>
  <entry>
    <record>2699</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2700</record>
    <time>2025/12/04 15:39:00.309</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2701</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2702</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.TemplatedControl.vstemplate</path>
  </entry>
  <entry>
    <record>2703</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2704</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2705</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2706</record>
    <time>2025/12/04 15:39:00.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ItemTemplates\templateManifest0.1033.vstman\WinUI.Neutral.CppWinRT.UserControl.vstemplate</path>
  </entry>
  <entry>
    <record>2707</record>
    <time>2025/12/04 15:39:01.848</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>Finding sdk version for 17.14</description>
  </entry>
  <entry>
    <record>2708</record>
    <time>2025/12/04 15:39:01.866</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>sdk version: 9.0.308, dotnet root path: C:\Program Files\dotnet</description>
  </entry>
  <entry>
    <record>2709</record>
    <time>2025/12/04 15:39:02.186</time>
    <type>Information</type>
    <source>DotNetOptionalSdkTemplateProvider.OnGetAllTemplatePackagePathsAsync</source>
    <description>template packages: </description>
  </entry>
  <entry>
    <record>2710</record>
    <time>2025/12/04 15:39:02.463</time>
    <type>Information</type>
    <source>AggregateTemplatePackageProvider.FinalizePackages</source>
    <description>Templates to install: C:\Program Files\dotnet\templates\3.1.33\microsoft.aspnetcore.components.webassembly.templates.3.2.1.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.common.itemtemplates.9.0.308.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.common.projecttemplates.3.1.3.1.27.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.test.projecttemplates.3.1.1.1.0-rc.22558.1.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.itemtemplates.5.0.17.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.web.projecttemplates.3.1.3.1.32.nupkg,C:\Program Files\dotnet\templates\3.1.33\microsoft.dotnet.web.spa.projecttemplates.3.1.3.1.32.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.winforms.projecttemplates.9.0.11-servicing.25519.1.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.wpf.projecttemplates.9.0.11-rtm.25520.2.nupkg,C:\Program Files\dotnet\templates\5.0.17\nunit3.dotnetnew.template.1.8.1.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.common.projecttemplates.5.0.5.0.403.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.test.projecttemplates.5.0.1.1.0-rc.23410.2.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.projecttemplates.5.0.5.0.17.nupkg,C:\Program Files\dotnet\templates\5.0.17\microsoft.dotnet.web.spa.projecttemplates.5.0.5.0.17.nupkg,C:\Program Files\dotnet\templates\6.0.36\microsoft.dotnet.common.projecttemplates.6.0.6.0.427.nupkg,C:\Program Files\dotnet\templates\6.0.36\microsoft.dotnet.test.projecttemplates.6.0.1.0.2-beta4.22207.1.nupkg,C:\Program Files\dotnet\templates\6.0.36\microsoft.dotnet.web.itemtemplates.6.0.6.0.36.nupkg,C:\Program Files\dotnet\templates\6.0.36\microsoft.dotnet.web.projecttemplates.6.0.6.0.36.nupkg,C:\Program Files\dotnet\templates\6.0.36\microsoft.dotnet.web.spa.projecttemplates.6.0.6.0.36.nupkg,C:\Program Files\dotnet\templates\7.0.19\microsoft.dotnet.common.projecttemplates.7.0.7.0.100.nupkg,C:\Program Files\dotnet\templates\7.0.19\microsoft.dotnet.test.projecttemplates.7.0.1.1.0-rc.24059.1.nupkg,C:\Program Files\dotnet\templates\7.0.19\microsoft.dotnet.web.itemtemplates.7.0.7.0.19.nupkg,C:\Program Files\dotnet\templates\7.0.19\microsoft.dotnet.web.projecttemplates.7.0.7.0.19.nupkg,C:\Program Files\dotnet\templates\7.0.19\microsoft.dotnet.web.spa.projecttemplates.7.0.7.0.19.nupkg,C:\Program Files\dotnet\templates\8.0.22\microsoft.dotnet.common.projecttemplates.8.0.8.0.416.nupkg,C:\Program Files\dotnet\templates\8.0.22\microsoft.dotnet.test.projecttemplates.8.0.1.1.0-rc.24059.1.nupkg,C:\Program Files\dotnet\templates\8.0.22\microsoft.dotnet.web.itemtemplates.8.0.8.0.22.nupkg,C:\Program Files\dotnet\templates\8.0.22\microsoft.dotnet.web.projecttemplates.8.0.8.0.22.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.common.projecttemplates.9.0.9.0.308.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.web.itemtemplates.9.0.9.0.11.nupkg,C:\Program Files\dotnet\templates\9.0.11\microsoft.dotnet.web.projecttemplates.9.0.9.0.11.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\aspire\Aspire.ProjectTemplates.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.CSharp.17.11.2.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.Azure.WebJobs.VisualBasic.17.11.2.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\web tools\azure\templates\Microsoft.WebTools.Http.Template.17.11.2.nupkg,c:\program files\microsoft visual studio\2022\community\common7\ide\extensions\microsoft\templateengine\Microsoft.VisualStudio.TemplateEngine.FallbackHostData.17.14.133.nupkg</description>
  </entry>
  <entry>
    <record>2711</record>
    <time>2025/12/04 15:39:04.492</time>
    <type>Information</type>
    <source>AggregateTemplatePackageProvider.LogGlobalPackagesToActivityLogAsync</source>
    <description>Globally installed templates: </description>
  </entry>
  <entry>
    <record>2712</record>
    <time>2025/12/04 15:39:04.641</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NETCore.ConsoleApplication, order: 0.1</description>
  </entry>
  <entry>
    <record>2713</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Console``C#, order: 0.1</description>
  </entry>
  <entry>
    <record>2714</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.CSharp.ASPNET.WebCore, order: 1</description>
  </entry>
  <entry>
    <record>2715</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Blazor``C#, order: 1</description>
  </entry>
  <entry>
    <record>2716</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Aspire.Starter.9``C#, order: 1.1</description>
  </entry>
  <entry>
    <record>2717</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Aspire.Starter``C#, order: 1.2</description>
  </entry>
  <entry>
    <record>2718</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.RazorPages``C#, order: 1.3</description>
  </entry>
  <entry>
    <record>2719</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.WebApi``C#, order: 1.4</description>
  </entry>
  <entry>
    <record>2720</record>
    <time>2025/12/04 15:39:04.642</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.WebApiAot``C#, order: 1.5</description>
  </entry>
  <entry>
    <record>2721</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Api``C#, order: 1.6</description>
  </entry>
  <entry>
    <record>2722</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NetStandard.ClassLibrary, order: 2</description>
  </entry>
  <entry>
    <record>2723</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Library``C#, order: 2</description>
  </entry>
  <entry>
    <record>2724</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Aspire.Empty.9``C#, order: 3.1</description>
  </entry>
  <entry>
    <record>2725</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Aspire.Empty``C#, order: 3.2</description>
  </entry>
  <entry>
    <record>2726</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Empty``C#, order: 3.6</description>
  </entry>
  <entry>
    <record>2727</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Mvc``C#, order: 3.7</description>
  </entry>
  <entry>
    <record>2728</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Blazor.Wasm``C#, order: 3.8</description>
  </entry>
  <entry>
    <record>2729</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Blazor.Wasm.Empty``C#, order: 3.9</description>
  </entry>
  <entry>
    <record>2730</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Blazor.Server``C#, order: 3.1</description>
  </entry>
  <entry>
    <record>2731</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Blazor.Server.Empty``C#, order: 3.11</description>
  </entry>
  <entry>
    <record>2732</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: AzureFunctions``C#, order: 3.12</description>
  </entry>
  <entry>
    <record>2733</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.AzureFunctions.ProjectTemplate.CSharp, order: 3.12</description>
  </entry>
  <entry>
    <record>2734</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.CSharp.ASPNET.Grpc, order: 3.13</description>
  </entry>
  <entry>
    <record>2735</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Grpc``C#, order: 3.13</description>
  </entry>
  <entry>
    <record>2736</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.CSharp.ASPNET.RazorClassLibrary, order: 3.14</description>
  </entry>
  <entry>
    <record>2737</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Razor``C#, order: 3.14</description>
  </entry>
  <entry>
    <record>2738</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.CSharp.ASPNET.Worker, order: 3.15</description>
  </entry>
  <entry>
    <record>2739</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Worker.Empty``C#, order: 3.15</description>
  </entry>
  <entry>
    <record>2740</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.DotNet.Web.Spa.ProjectTemplates.Angular``C#, order: 3.81</description>
  </entry>
  <entry>
    <record>2741</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.DotNet.Web.Spa.ProjectTemplates.React``C#, order: 3.82</description>
  </entry>
  <entry>
    <record>2742</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.DotNet.Web.Spa.ProjectTemplates.ReactRedux``C#, order: 3.83</description>
  </entry>
  <entry>
    <record>2743</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NETCore.UnitTest, order: 4</description>
  </entry>
  <entry>
    <record>2744</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.MSTest``C#, order: 4</description>
  </entry>
  <entry>
    <record>2745</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.Cs.SingleProjectPackagedApp, order: 4.1</description>
  </entry>
  <entry>
    <record>2746</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.CppWinRT.SingleProjectPackagedApp, order: 4.2</description>
  </entry>
  <entry>
    <record>2747</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NETCore.ConsoleApplication, order: 4.3</description>
  </entry>
  <entry>
    <record>2748</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Console``VB, order: 4.3</description>
  </entry>
  <entry>
    <record>2749</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NetStandard.ClassLibrary, order: 4.4</description>
  </entry>
  <entry>
    <record>2750</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Library``VB, order: 4.4</description>
  </entry>
  <entry>
    <record>2751</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NETCore.UnitTest, order: 4.6</description>
  </entry>
  <entry>
    <record>2752</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.MSTest``VB, order: 4.6</description>
  </entry>
  <entry>
    <record>2753</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Empty, order: 5</description>
  </entry>
  <entry>
    <record>2754</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Windows.ConsoleApplication, order: 6.5</description>
  </entry>
  <entry>
    <record>2755</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.Cs.ClassLibrary, order: 6.61</description>
  </entry>
  <entry>
    <record>2756</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.Cs.PackagedApp, order: 6.62</description>
  </entry>
  <entry>
    <record>2757</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.Cs.UnitTestApp, order: 6.63</description>
  </entry>
  <entry>
    <record>2758</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Neutral.CppWinRT.RuntimeComponent, order: 6.64</description>
  </entry>
  <entry>
    <record>2759</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.CppWinRT.PackagedApp, order: 6.65</description>
  </entry>
  <entry>
    <record>2760</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.WinUI.Desktop.CppWinRT.UnitTestApp, order: 6.66</description>
  </entry>
  <entry>
    <record>2761</record>
    <time>2025/12/04 15:39:04.644</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WinForms``C#, order: 7</description>
  </entry>
  <entry>
    <record>2762</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.NETCore.Winforms, order: 7</description>
  </entry>
  <entry>
    <record>2763</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WinForms``VB, order: 7.1</description>
  </entry>
  <entry>
    <record>2764</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WindowsFormsApplication, order: 7.2</description>
  </entry>
  <entry>
    <record>2765</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CMake.CMakeProject, order: 7.4</description>
  </entry>
  <entry>
    <record>2766</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Windows.DesktopWizard, order: 7.5</description>
  </entry>
  <entry>
    <record>2767</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NetCore.WPF, order: 8</description>
  </entry>
  <entry>
    <record>2768</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF``C#, order: 8</description>
  </entry>
  <entry>
    <record>2769</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NetCore.WPF.Control, order: 8</description>
  </entry>
  <entry>
    <record>2770</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.Control``C#, order: 8</description>
  </entry>
  <entry>
    <record>2771</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NetCore.WPF.Custom.Control, order: 8</description>
  </entry>
  <entry>
    <record>2772</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.CustomControl``C#, order: 8</description>
  </entry>
  <entry>
    <record>2773</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.Library``C#, order: 8</description>
  </entry>
  <entry>
    <record>2774</record>
    <time>2025/12/04 15:39:04.647</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.NetCore.WPF, order: 8</description>
  </entry>
  <entry>
    <record>2775</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VB.NetCore.WPF.Control, order: 8</description>
  </entry>
  <entry>
    <record>2776</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF``VB, order: 8</description>
  </entry>
  <entry>
    <record>2777</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.Control``VB, order: 8</description>
  </entry>
  <entry>
    <record>2778</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.Library``VB, order: 8</description>
  </entry>
  <entry>
    <record>2779</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WPFApplication, order: 8.1</description>
  </entry>
  <entry>
    <record>2780</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VB.NetCore.WPF.Custom.Control, order: 8.2</description>
  </entry>
  <entry>
    <record>2781</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.WPF.CustomControl``VB, order: 8</description>
  </entry>
  <entry>
    <record>2782</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WpfApplication, order: 8.2</description>
  </entry>
  <entry>
    <record>2783</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NETCore.NUnitTest, order: 9</description>
  </entry>
  <entry>
    <record>2784</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: NUnit3.DotNetNew.Template``C#, order: 9</description>
  </entry>
  <entry>
    <record>2785</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NETCore.NUnitTest, order: 9.1</description>
  </entry>
  <entry>
    <record>2786</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: NUnit3.DotNetNew.Template``VB, order: 9.1</description>
  </entry>
  <entry>
    <record>2787</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Windows.DesktopApplication, order: 9.5</description>
  </entry>
  <entry>
    <record>2788</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Maui.App``C#, order: 9.7</description>
  </entry>
  <entry>
    <record>2789</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Maui.BlazorApp``C#, order: 9.8</description>
  </entry>
  <entry>
    <record>2790</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Maui.Library``C#, order: 9.9</description>
  </entry>
  <entry>
    <record>2791</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.iOS.iOSApp``C#, order: 10</description>
  </entry>
  <entry>
    <record>2792</record>
    <time>2025/12/04 15:39:04.648</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.iOS.iOSTabbedApp``C#, order: 10.1</description>
  </entry>
  <entry>
    <record>2793</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.iOS.iOSLib``C#, order: 10.2</description>
  </entry>
  <entry>
    <record>2794</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.MacCatalyst.MacCatalystApp``C#, order: 10.3</description>
  </entry>
  <entry>
    <record>2795</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.MacCatalyst.MacCatalystBinding``C#, order: 10.4</description>
  </entry>
  <entry>
    <record>2796</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.MacCatalyst.MacCatalystLib``C#, order: 10.5</description>
  </entry>
  <entry>
    <record>2797</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.Android.AndroidApp``C#, order: 10.6</description>
  </entry>
  <entry>
    <record>2798</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.Android.AndroidBinding``C#, order: 10.7</description>
  </entry>
  <entry>
    <record>2799</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.Android.AndroidWearApp``C#, order: 10.8</description>
  </entry>
  <entry>
    <record>2800</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: __Microsoft.Android.AndroidLib``C#, order: 10.9</description>
  </entry>
  <entry>
    <record>2801</record>
    <time>2025/12/04 15:39:04.649</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.BlankXamlApplication, order: 13</description>
  </entry>
  <entry>
    <record>2802</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.WAP, order: 13.1</description>
  </entry>
  <entry>
    <record>2803</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.BlankCoreApplication, order: 13.2</description>
  </entry>
  <entry>
    <record>2804</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CS.WinRT.UAP.BlankApplication, order: 13.3</description>
  </entry>
  <entry>
    <record>2805</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CPP.WinRT.UAP.BlankApp, order: 13.4</description>
  </entry>
  <entry>
    <record>2806</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.WinRT.UAP.BlankApplication, order: 13.5</description>
  </entry>
  <entry>
    <record>2807</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.ClassLibrary, order: 13.6</description>
  </entry>
  <entry>
    <record>2808</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CS.WinRT.UAP.ClassLibrary, order: 13.7</description>
  </entry>
  <entry>
    <record>2809</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DirectX.DirectXXamlUAPApp, order: 14</description>
  </entry>
  <entry>
    <record>2810</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VisualStudio.Kubernetes.Tools.KubernetesProject, order: 20</description>
  </entry>
  <entry>
    <record>2811</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 372D6086-484E-4FAB-9041-2BAA2788FCCA, order: 21</description>
  </entry>
  <entry>
    <record>2812</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CloudServiceProject.CloudService_cs, order: 22</description>
  </entry>
  <entry>
    <record>2813</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 242d8a18-c18d-43a6-99bc-d8de83c3553a, order: 23</description>
  </entry>
  <entry>
    <record>2814</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Core.Application, order: 25</description>
  </entry>
  <entry>
    <record>2815</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Core.Empty, order: 26</description>
  </entry>
  <entry>
    <record>2816</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Django.Starter, order: 27</description>
  </entry>
  <entry>
    <record>2817</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Flask.Starter, order: 28</description>
  </entry>
  <entry>
    <record>2818</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Bottle.Starter, order: 29</description>
  </entry>
  <entry>
    <record>2819</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 58D3C61C-1E8D-40F3-89C3-037FD35E1D89, order: 30</description>
  </entry>
  <entry>
    <record>2820</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 7A151419-AA51-41D1-9D2A-36CA95A67DEA, order: 31</description>
  </entry>
  <entry>
    <record>2821</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 9a7efcc7-8c54-4d92-ba92-e9080bb367d8, order: 32</description>
  </entry>
  <entry>
    <record>2822</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 3934b181-9929-4dce-b4fa-c06902f4e485, order: 33</description>
  </entry>
  <entry>
    <record>2823</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 2858ddcd-8f95-4a36-b632-f797fc33d119, order: 34</description>
  </entry>
  <entry>
    <record>2824</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16EmptyProject_CS, order: 45</description>
  </entry>
  <entry>
    <record>2825</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15EmptyProject_CS, order: 46</description>
  </entry>
  <entry>
    <record>2826</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16EmptyProject_VB, order: 47</description>
  </entry>
  <entry>
    <record>2827</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15EmptyProject_VB, order: 48</description>
  </entry>
  <entry>
    <record>2828</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15SharePointAddIn_CS, order: 49</description>
  </entry>
  <entry>
    <record>2829</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Forms.App, order: 50</description>
  </entry>
  <entry>
    <record>2830</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Android.App, order: 51</description>
  </entry>
  <entry>
    <record>2831</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.iOS.App, order: 52</description>
  </entry>
  <entry>
    <record>2832</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Android.WearApp, order: 53</description>
  </entry>
  <entry>
    <record>2833</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.WatchOS.App, order: 54</description>
  </entry>
  <entry>
    <record>2834</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.Android.NativeActivity, order: 65</description>
  </entry>
  <entry>
    <record>2835</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.AndroidJavaPackaging, order: 66</description>
  </entry>
  <entry>
    <record>2836</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.AndroidJavaLibrary, order: 67</description>
  </entry>
  <entry>
    <record>2837</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.Android.Dll, order: 68</description>
  </entry>
  <entry>
    <record>2838</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.Android.StaticLibrary, order: 69</description>
  </entry>
  <entry>
    <record>2839</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Breadcrumb.Graphics.GetCocos2d, order: 70</description>
  </entry>
  <entry>
    <record>2840</record>
    <time>2025/12/04 15:39:04.650</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Breadcrumb.Graphics.GetUnreal, order: 71</description>
  </entry>
  <entry>
    <record>2841</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: cSharp.VSIX.VSIXProject, order: 75</description>
  </entry>
  <entry>
    <record>2842</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: visualBasic.VSIX.VSIXProject, order: 76</description>
  </entry>
  <entry>
    <record>2843</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: cSharp.ProjectTemplate, order: 77</description>
  </entry>
  <entry>
    <record>2844</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: cSharp.ItemTemplate, order: 78</description>
  </entry>
  <entry>
    <record>2845</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: visualBasic.ProjectTemplate, order: 79</description>
  </entry>
  <entry>
    <record>2846</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Linux.VC.ConsoleApplication, order: 80</description>
  </entry>
  <entry>
    <record>2847</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Linux.VC.EmptyProject, order: 81</description>
  </entry>
  <entry>
    <record>2848</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Linux.VC.Raspberry.Blink, order: 82</description>
  </entry>
  <entry>
    <record>2849</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Linux.VC.MakefileProject, order: 83</description>
  </entry>
  <entry>
    <record>2850</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Breadcrumb.Xamarin.UWPSupport, order: 85</description>
  </entry>
  <entry>
    <record>2851</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: common7\IDE\SolutionTemplates\blank.sln, order: 99</description>
  </entry>
  <entry>
    <record>2852</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.ConsoleApplication, order: 100</description>
  </entry>
  <entry>
    <record>2853</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NETCore.Winforms, order: 101</description>
  </entry>
  <entry>
    <record>2854</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.CSharp.ASPNET, order: 102</description>
  </entry>
  <entry>
    <record>2855</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.ClassLibrary, order: 103</description>
  </entry>
  <entry>
    <record>2856</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NetCore.ClassLibrary, order: 104</description>
  </entry>
  <entry>
    <record>2857</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: common7\IDE\Extensions\Microsoft\SQLDB\ProjectItems\SSDT.vstemplate, order: 105</description>
  </entry>
  <entry>
    <record>2858</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cloud.CSharp.Sdk.WebJob.Continuous, order: 106</description>
  </entry>
  <entry>
    <record>2859</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.UnitTestProject.v2, order: 108</description>
  </entry>
  <entry>
    <record>2860</record>
    <time>2025/12/04 15:39:04.651</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.NETCore.XUnitTest, order: 109</description>
  </entry>
  <entry>
    <record>2861</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.xUnit``C#, order: 109</description>
  </entry>
  <entry>
    <record>2862</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Web.EdgeDriverTestCore, order: 111</description>
  </entry>
  <entry>
    <record>2863</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Web.EdgeDriverTest, order: 112</description>
  </entry>
  <entry>
    <record>2864</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WindowsFormsService, order: 113</description>
  </entry>
  <entry>
    <record>2865</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WPFBrowserApplication, order: 114</description>
  </entry>
  <entry>
    <record>2866</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WPFCustomControlLibrary, order: 115</description>
  </entry>
  <entry>
    <record>2867</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WPFControlLibrary, order: 116</description>
  </entry>
  <entry>
    <record>2868</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WindowsFormsControlLibrary, order: 117</description>
  </entry>
  <entry>
    <record>2869</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.CSharp.Wcf, order: 118</description>
  </entry>
  <entry>
    <record>2870</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Wap.CSharp.Wcf, order: 120</description>
  </entry>
  <entry>
    <record>2871</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WCF, order: 121</description>
  </entry>
  <entry>
    <record>2872</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CS.SharedProject, order: 122</description>
  </entry>
  <entry>
    <record>2873</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.EmptyProject, order: 123</description>
  </entry>
  <entry>
    <record>2874</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.CSharp.EmptyWeb, order: 124</description>
  </entry>
  <entry>
    <record>2875</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.CSharp.WebApplication, order: 125</description>
  </entry>
  <entry>
    <record>2876</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: razor3StarterSiteProjectTemplate.cshtml, order: 126</description>
  </entry>
  <entry>
    <record>2877</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.CSharp.DynamicDataEntityWebSite, order: 127</description>
  </entry>
  <entry>
    <record>2878</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.CSharp.DynamicDataLinqToSqlWebSite, order: 128</description>
  </entry>
  <entry>
    <record>2879</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.ConsoleApplication, order: 129</description>
  </entry>
  <entry>
    <record>2880</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.WAP.VisualBasic.ASPNET, order: 130</description>
  </entry>
  <entry>
    <record>2881</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WindowsApplication, order: 133</description>
  </entry>
  <entry>
    <record>2882</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.ClassLibrary, order: 134</description>
  </entry>
  <entry>
    <record>2883</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cloud.VisualBasic.Sdk.WebJob.Continuous, order: 136</description>
  </entry>
  <entry>
    <record>2884</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NetCore.ClassLibrary, order: 137</description>
  </entry>
  <entry>
    <record>2885</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.UnitTestProject.v2, order: 138</description>
  </entry>
  <entry>
    <record>2886</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.NETCore.XUnitTest, order: 140</description>
  </entry>
  <entry>
    <record>2887</record>
    <time>2025/12/04 15:39:04.652</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.xUnit``VB, order: 140</description>
  </entry>
  <entry>
    <record>2888</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WindowsControlLibrary, order: 142</description>
  </entry>
  <entry>
    <record>2889</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WpfBrowserApplication, order: 143</description>
  </entry>
  <entry>
    <record>2890</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WpfControlLibrary, order: 144</description>
  </entry>
  <entry>
    <record>2891</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WpfCustomControlLibrary, order: 145</description>
  </entry>
  <entry>
    <record>2892</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.WindowsService, order: 146</description>
  </entry>
  <entry>
    <record>2893</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Windows.EmptyProject, order: 147</description>
  </entry>
  <entry>
    <record>2894</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.SharedProject, order: 148</description>
  </entry>
  <entry>
    <record>2895</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Wap.VisualBasic.Wcf, order: 149</description>
  </entry>
  <entry>
    <record>2896</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.Wcf, order: 150</description>
  </entry>
  <entry>
    <record>2897</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.VisualBasic.Wcf, order: 151</description>
  </entry>
  <entry>
    <record>2898</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.RssService, order: 152</description>
  </entry>
  <entry>
    <record>2899</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.VisualBasic.EmptyWeb, order: 153</description>
  </entry>
  <entry>
    <record>2900</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.VisualBasic.WebApplication, order: 154</description>
  </entry>
  <entry>
    <record>2901</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: razor3StarterSiteProjectTemplate.vbhtml, order: 155</description>
  </entry>
  <entry>
    <record>2902</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.VisualBasic.DynamicDataEntityWebSite, order: 156</description>
  </entry>
  <entry>
    <record>2903</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Web.VisualBasic.DynamicDataLinqToSqlWebSite, order: 157</description>
  </entry>
  <entry>
    <record>2904</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NETCore.ConsoleApplication, order: 158</description>
  </entry>
  <entry>
    <record>2905</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Console``F#, order: 158</description>
  </entry>
  <entry>
    <record>2906</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NetStandard.ClassLibrary, order: 159</description>
  </entry>
  <entry>
    <record>2907</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Common.Library``F#, order: 159</description>
  </entry>
  <entry>
    <record>2908</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DotNet.FSharp.ASPNET.WebCore, order: 160</description>
  </entry>
  <entry>
    <record>2909</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Empty``F#, order: 160</description>
  </entry>
  <entry>
    <record>2910</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.Mvc``F#, order: 160.2</description>
  </entry>
  <entry>
    <record>2911</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Web.WebApi``F#, order: 160.4</description>
  </entry>
  <entry>
    <record>2912</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Worker.Empty``F#, order: 160.6</description>
  </entry>
  <entry>
    <record>2913</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NetCore.ClassLibrary, order: 161</description>
  </entry>
  <entry>
    <record>2914</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NETCore.UnitTest, order: 162</description>
  </entry>
  <entry>
    <record>2915</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.MSTest``F#, order: 162</description>
  </entry>
  <entry>
    <record>2916</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NETCore.XUnitTest, order: 163</description>
  </entry>
  <entry>
    <record>2917</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Test.xUnit``F#, order: 163</description>
  </entry>
  <entry>
    <record>2918</record>
    <time>2025/12/04 15:39:04.653</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.NETCore.NUnitTest, order: 164</description>
  </entry>
  <entry>
    <record>2919</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Nunit3.DotNetNew.Template``F#, order: 164</description>
  </entry>
  <entry>
    <record>2920</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Application, order: 165</description>
  </entry>
  <entry>
    <record>2921</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cloud.VisualBasic.ASPNET, order: 166</description>
  </entry>
  <entry>
    <record>2922</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Library, order: 167</description>
  </entry>
  <entry>
    <record>2923</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Tutorial, order: 168</description>
  </entry>
  <entry>
    <record>2924</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.MFC.Application, order: 200</description>
  </entry>
  <entry>
    <record>2925</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Windows.Dll, order: 201</description>
  </entry>
  <entry>
    <record>2926</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CLRCore.Console, order: 201.5</description>
  </entry>
  <entry>
    <record>2927</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CLRCore.Empty, order: 201.6</description>
  </entry>
  <entry>
    <record>2928</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: &gt;Microsoft.VisualC.Project.CLRCore.Library, order: 201.7</description>
  </entry>
  <entry>
    <record>2929</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CLR.Empty, order: 202</description>
  </entry>
  <entry>
    <record>2930</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CLR.Console, order: 203</description>
  </entry>
  <entry>
    <record>2931</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Windows.StaticLibrary, order: 204</description>
  </entry>
  <entry>
    <record>2932</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VC.Shared, order: 205</description>
  </entry>
  <entry>
    <record>2933</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.ATL.ATLProject, order: 206</description>
  </entry>
  <entry>
    <record>2934</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.MFC.DLL, order: 207</description>
  </entry>
  <entry>
    <record>2935</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.CLR.Library, order: 208</description>
  </entry>
  <entry>
    <record>2936</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.MakeFile, order: 209</description>
  </entry>
  <entry>
    <record>2937</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.MFC.ActiveX, order: 210</description>
  </entry>
  <entry>
    <record>2938</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.Test.Unit.Native, order: 212</description>
  </entry>
  <entry>
    <record>2939</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Project.GoogleTest, order: 213</description>
  </entry>
  <entry>
    <record>2940</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Windows.CppWinRT.ConsoleApplication, order: 214</description>
  </entry>
  <entry>
    <record>2941</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Windows.CppWinRT.WindowsRuntimeComponent, order: 215</description>
  </entry>
  <entry>
    <record>2942</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Windows.CppWinRT.BlankApp, order: 216</description>
  </entry>
  <entry>
    <record>2943</record>
    <time>2025/12/04 15:39:04.654</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Windows.CppWinRT.CoreApp, order: 217</description>
  </entry>
  <entry>
    <record>2944</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Breadcrumb.Universal.GetWinUICppSupport, order: 299</description>
  </entry>
  <entry>
    <record>2945</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.UnitTestApplication, order: 300</description>
  </entry>
  <entry>
    <record>2946</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.UAP.UnitTestProject.v2, order: 300.5</description>
  </entry>
  <entry>
    <record>2947</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CS.WinRT.UAP.NET.RuntimeComponent, order: 301</description>
  </entry>
  <entry>
    <record>2948</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CS.WinRT.UAP.RuntimeComponent, order: 301.1</description>
  </entry>
  <entry>
    <record>2949</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CS.WinRT.UAP.OptionalPackage, order: 302</description>
  </entry>
  <entry>
    <record>2950</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DesktopBridge.CS, order: 303</description>
  </entry>
  <entry>
    <record>2951</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DirectX.DirectXUAPApp, order: 304</description>
  </entry>
  <entry>
    <record>2952</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DirectX.DirectX12UAPApp, order: 305</description>
  </entry>
  <entry>
    <record>2953</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CPP.WinRT.UAP.UnitTest, order: 306</description>
  </entry>
  <entry>
    <record>2954</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Threshold.DLL, order: 307</description>
  </entry>
  <entry>
    <record>2955</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: testProject-V1-WindowsStoreProject-CS, order: 308</description>
  </entry>
  <entry>
    <record>2956</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Threshold.Component, order: 309</description>
  </entry>
  <entry>
    <record>2957</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.WinRT.UAP.ClassLibrary, order: 310</description>
  </entry>
  <entry>
    <record>2958</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.UAP.UnitTestProject.v2, order: 311</description>
  </entry>
  <entry>
    <record>2959</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualC.Threshold.Lib, order: 312</description>
  </entry>
  <entry>
    <record>2960</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: testProject-V1-WindowsStoreProject-VB, order: 313</description>
  </entry>
  <entry>
    <record>2961</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.WinRT.UAP.RuntimeComponent, order: 314</description>
  </entry>
  <entry>
    <record>2962</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VB.WinRT.UAP.OptionalPackage, order: 315</description>
  </entry>
  <entry>
    <record>2963</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DesktopBridge.VC, order: 316</description>
  </entry>
  <entry>
    <record>2964</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.DesktopBridge.VB, order: 317</description>
  </entry>
  <entry>
    <record>2965</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualStudio.Breadcrumb.Universal.GetVCSupport, order: 318</description>
  </entry>
  <entry>
    <record>2966</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CSharp.UWP.WindowsTemplateStudio, order: 319</description>
  </entry>
  <entry>
    <record>2967</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VisualBasic.UWP.WindowsTemplateStudio, order: 320</description>
  </entry>
  <entry>
    <record>2968</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CSharp.UWP.WindowsTemplateStudio.pre, order: 321</description>
  </entry>
  <entry>
    <record>2969</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.CSharp.UWP.WindowsTemplateStudio.dev, order: 322</description>
  </entry>
  <entry>
    <record>2970</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VisualBasic.UWP.WindowsTemplateStudio.pre, order: 323</description>
  </entry>
  <entry>
    <record>2971</record>
    <time>2025/12/04 15:39:04.655</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.VisualBasic.UWP.WindowsTemplateStudio.dev, order: 324</description>
  </entry>
  <entry>
    <record>2972</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CloudServiceProject.VisualBasic.CloudService_vb, order: 500</description>
  </entry>
  <entry>
    <record>2973</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 587f41e6-04c6-4d76-8ac6-39b342e14a71, order: 501</description>
  </entry>
  <entry>
    <record>2974</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Azure.HDInsight.HiveApplicationTemplate, order: 503</description>
  </entry>
  <entry>
    <record>2975</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Azure.HDInsight.HiveSampleApplicationTemplate, order: 504</description>
  </entry>
  <entry>
    <record>2976</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: Microsoft.Azure.HDInsight.PigApplicationTemplate, order: 505</description>
  </entry>
  <entry>
    <record>2977</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: stormProject, order: 506</description>
  </entry>
  <entry>
    <record>2978</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sqlAzureWriter, order: 507</description>
  </entry>
  <entry>
    <record>2979</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: documentDBReader, order: 508</description>
  </entry>
  <entry>
    <record>2980</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: documentDBWriter, order: 509</description>
  </entry>
  <entry>
    <record>2981</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: azureEventHubsReader, order: 510</description>
  </entry>
  <entry>
    <record>2982</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: azureEventHubsWriter, order: 511</description>
  </entry>
  <entry>
    <record>2983</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: azureHDInsightHBaseReader, order: 512</description>
  </entry>
  <entry>
    <record>2984</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: azureHDInsightHBaseWriter, order: 513</description>
  </entry>
  <entry>
    <record>2985</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: hybridStormSample, order: 514</description>
  </entry>
  <entry>
    <record>2986</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: stormSample, order: 515</description>
  </entry>
  <entry>
    <record>2987</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: USQLProject, order: 516</description>
  </entry>
  <entry>
    <record>2988</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: USQLCSharpProject, order: 517</description>
  </entry>
  <entry>
    <record>2989</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: USqlCSharpUdoUnitTestProject, order: 518</description>
  </entry>
  <entry>
    <record>2990</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: USQLSampleProject, order: 519</description>
  </entry>
  <entry>
    <record>2991</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: USqlCSharpUdoUnitTestSampleProject, order: 520</description>
  </entry>
  <entry>
    <record>2992</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.FlaskJade.Starter, order: 600</description>
  </entry>
  <entry>
    <record>2993</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.IronPython.Console, order: 601</description>
  </entry>
  <entry>
    <record>2994</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.IronPython.WindowsForms, order: 602</description>
  </entry>
  <entry>
    <record>2995</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.IronPython.WPF, order: 603</description>
  </entry>
  <entry>
    <record>2996</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Django.Blank, order: 604</description>
  </entry>
  <entry>
    <record>2997</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Flask.Blank, order: 605</description>
  </entry>
  <entry>
    <record>2998</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Bottle.Blank, order: 606</description>
  </entry>
  <entry>
    <record>2999</record>
    <time>2025/12/04 15:39:04.656</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Django.Polls, order: 607</description>
  </entry>
  <entry>
    <record>3000</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.FlaskJade.Polls, order: 608</description>
  </entry>
  <entry>
    <record>3001</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Flask.Polls, order: 609</description>
  </entry>
  <entry>
    <record>3002</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Web.Bottle.Polls, order: 610</description>
  </entry>
  <entry>
    <record>3003</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CloudServiceProject.CloudService_py, order: 611</description>
  </entry>
  <entry>
    <record>3004</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.MachineLearning.Classifier, order: 614</description>
  </entry>
  <entry>
    <record>3005</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.MachineLearning.Clustering, order: 615</description>
  </entry>
  <entry>
    <record>3006</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.MachineLearning.Regression, order: 616</description>
  </entry>
  <entry>
    <record>3007</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 8E265995-CADF-4DB2-934F-D56E63EA9E65, order: 700</description>
  </entry>
  <entry>
    <record>3008</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: 0BA6777B-77F0-45E0-B976-EF96CAEF8425, order: 701</description>
  </entry>
  <entry>
    <record>3009</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: e2c617a2-99e1-4dc5-8868-bd224cb4d764, order: 702</description>
  </entry>
  <entry>
    <record>3010</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.NodejsConsoleApp, order: 703</description>
  </entry>
  <entry>
    <record>3011</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.NodejsWebApp, order: 704</description>
  </entry>
  <entry>
    <record>3012</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.NodejsConsoleApp, order: 705</description>
  </entry>
  <entry>
    <record>3013</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.AzureExpressApp, order: 706</description>
  </entry>
  <entry>
    <record>3014</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.AzureExpressApp, order: 707</description>
  </entry>
  <entry>
    <record>3015</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.AzureNodejsApp, order: 708</description>
  </entry>
  <entry>
    <record>3016</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.NodejsWebApp, order: 709</description>
  </entry>
  <entry>
    <record>3017</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.ExpressApp, order: 710</description>
  </entry>
  <entry>
    <record>3018</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.ExpressApp, order: 711</description>
  </entry>
  <entry>
    <record>3019</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.NodejsAzureWebApp, order: 712</description>
  </entry>
  <entry>
    <record>3020</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CloudServiceProject.CloudService_js, order: 713</description>
  </entry>
  <entry>
    <record>3021</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.JavaScript.NodejsFromExistingCode, order: 714</description>
  </entry>
  <entry>
    <record>3022</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.TypeScript.NodejsFromExistingCode, order: 715</description>
  </entry>
  <entry>
    <record>3023</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15SharePointAddIn_VB, order: 1000</description>
  </entry>
  <entry>
    <record>3024</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16VisualWebPartProject_CS, order: 1001</description>
  </entry>
  <entry>
    <record>3025</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15VisualWebPartProject_CS, order: 1002</description>
  </entry>
  <entry>
    <record>3026</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16VisualWebPartProject_VB, order: 1003</description>
  </entry>
  <entry>
    <record>3027</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15VisualWebPartProject_VB, order: 1004</description>
  </entry>
  <entry>
    <record>3028</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16WspImportProject_CS, order: 1005</description>
  </entry>
  <entry>
    <record>3029</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16WorkflowImport_CS, order: 1006</description>
  </entry>
  <entry>
    <record>3030</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WspImportProject_CS, order: 1007</description>
  </entry>
  <entry>
    <record>3031</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WorkflowImport_CS, order: 1008</description>
  </entry>
  <entry>
    <record>3032</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16WspImportProject_VB, order: 1009</description>
  </entry>
  <entry>
    <record>3033</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint16WorkflowImport_VB, order: 1010</description>
  </entry>
  <entry>
    <record>3034</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WspImportProject_VB, order: 1011</description>
  </entry>
  <entry>
    <record>3035</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WorkflowImport_VB, order: 1012</description>
  </entry>
  <entry>
    <record>3036</record>
    <time>2025/12/04 15:39:04.657</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15ExcelWebAddIn_CS, order: 1013</description>
  </entry>
  <entry>
    <record>3037</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WordWebAddIn_CS, order: 1014</description>
  </entry>
  <entry>
    <record>3038</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15OutlookWebAddIn_CS, order: 1015</description>
  </entry>
  <entry>
    <record>3039</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15PowerPointWebAddIn_CS, order: 1016</description>
  </entry>
  <entry>
    <record>3040</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15AddIn_CS, order: 1017</description>
  </entry>
  <entry>
    <record>3041</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15Template_CS, order: 1018</description>
  </entry>
  <entry>
    <record>3042</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15Workbook_CS, order: 1019</description>
  </entry>
  <entry>
    <record>3043</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_InfoPath15AddIn_CS, order: 1020</description>
  </entry>
  <entry>
    <record>3044</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Outlook15AddIn_CS, order: 1021</description>
  </entry>
  <entry>
    <record>3045</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_PowerPoint15AddIn_CS, order: 1022</description>
  </entry>
  <entry>
    <record>3046</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Project15AddIn_CS, order: 1023</description>
  </entry>
  <entry>
    <record>3047</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Visio15AddIn_CS, order: 1024</description>
  </entry>
  <entry>
    <record>3048</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15AddIn_CS, order: 1025</description>
  </entry>
  <entry>
    <record>3049</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15Document_CS, order: 1026</description>
  </entry>
  <entry>
    <record>3050</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15Template_CS, order: 1027</description>
  </entry>
  <entry>
    <record>3051</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.ActivityDesignerLibrary, order: 1039</description>
  </entry>
  <entry>
    <record>3052</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.ActivityLibrary, order: 1040</description>
  </entry>
  <entry>
    <record>3053</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WorkflowConsoleApplication, order: 1041</description>
  </entry>
  <entry>
    <record>3054</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15ExcelWebAddIn_VB, order: 1042</description>
  </entry>
  <entry>
    <record>3055</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15WordWebAddIn_VB, order: 1043</description>
  </entry>
  <entry>
    <record>3056</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15OutlookWebAddIn_VB, order: 1044</description>
  </entry>
  <entry>
    <record>3057</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint15PowerPointWebAddIn_VB, order: 1045</description>
  </entry>
  <entry>
    <record>3058</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15AddIn_VB, order: 1046</description>
  </entry>
  <entry>
    <record>3059</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15Template_VB, order: 1047</description>
  </entry>
  <entry>
    <record>3060</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Excel15Workbook_VB, order: 1048</description>
  </entry>
  <entry>
    <record>3061</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_InfoPath15AddIn_VB, order: 1049</description>
  </entry>
  <entry>
    <record>3062</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Outlook15AddIn_VB, order: 1050</description>
  </entry>
  <entry>
    <record>3063</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_PowerPoint15AddIn_VB, order: 1051</description>
  </entry>
  <entry>
    <record>3064</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Project15AddIn_VB, order: 1052</description>
  </entry>
  <entry>
    <record>3065</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Visio15AddIn_VB, order: 1053</description>
  </entry>
  <entry>
    <record>3066</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15AddIn_VB, order: 1054</description>
  </entry>
  <entry>
    <record>3067</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15Document_VB, order: 1055</description>
  </entry>
  <entry>
    <record>3068</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: vstO_Word15Template_VB, order: 1056</description>
  </entry>
  <entry>
    <record>3069</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.WorkflowServiceApplication, order: 1068</description>
  </entry>
  <entry>
    <record>3070</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.ActivityDesignerLibrary, order: 1069</description>
  </entry>
  <entry>
    <record>3071</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.ActivityLibrary, order: 1070</description>
  </entry>
  <entry>
    <record>3072</record>
    <time>2025/12/04 15:39:04.658</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.WorkflowServiceApplication, order: 1071</description>
  </entry>
  <entry>
    <record>3073</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.VisualBasic.WorkflowConsoleApplication, order: 1072</description>
  </entry>
  <entry>
    <record>3074</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19EmptyProject_VB, order: 1073</description>
  </entry>
  <entry>
    <record>3075</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19EmptyProject_CS, order: 1074</description>
  </entry>
  <entry>
    <record>3076</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19WorkflowImport_VB, order: 1075</description>
  </entry>
  <entry>
    <record>3077</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19WorkflowImport_CS, order: 1076</description>
  </entry>
  <entry>
    <record>3078</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19WspImportProject_VB, order: 1077</description>
  </entry>
  <entry>
    <record>3079</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19WspImportProject_CS, order: 1078</description>
  </entry>
  <entry>
    <record>3080</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19VisualWebPartProject_VB, order: 1079</description>
  </entry>
  <entry>
    <record>3081</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: sharePoint19VisualWebPartProject_CS, order: 1080</description>
  </entry>
  <entry>
    <record>3082</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Android.ClassLibrary, order: 1100</description>
  </entry>
  <entry>
    <record>3083</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.iOS.ClassLibrary, order: 1101</description>
  </entry>
  <entry>
    <record>3084</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Android.Bindings, order: 1102</description>
  </entry>
  <entry>
    <record>3085</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.iOS.Bindings, order: 1103</description>
  </entry>
  <entry>
    <record>3086</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.TvOS.App, order: 1104</description>
  </entry>
  <entry>
    <record>3087</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.TvOS.Bindings, order: 1105</description>
  </entry>
  <entry>
    <record>3088</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.Action, order: 1106</description>
  </entry>
  <entry>
    <record>3089</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.AudioUnitEffect, order: 1107</description>
  </entry>
  <entry>
    <record>3090</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.AudioUnitGenerator, order: 1108</description>
  </entry>
  <entry>
    <record>3091</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.AudioUnitInstrument, order: 1109</description>
  </entry>
  <entry>
    <record>3092</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.AudioUnitMusicEffect, order: 1110</description>
  </entry>
  <entry>
    <record>3093</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.BroadcastUI, order: 1111</description>
  </entry>
  <entry>
    <record>3094</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.BroadcastUpload, order: 1112</description>
  </entry>
  <entry>
    <record>3095</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.CallDirectory, order: 1113</description>
  </entry>
  <entry>
    <record>3096</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.ContentBlocker, order: 1114</description>
  </entry>
  <entry>
    <record>3097</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.CustomKeyboard, order: 1115</description>
  </entry>
  <entry>
    <record>3098</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.DocumentPickerFileProvider, order: 1116</description>
  </entry>
  <entry>
    <record>3099</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.DocumentPicker, order: 1117</description>
  </entry>
  <entry>
    <record>3100</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.iMessage, order: 1118</description>
  </entry>
  <entry>
    <record>3101</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.Intents, order: 1119</description>
  </entry>
  <entry>
    <record>3102</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.IntentsUI, order: 1120</description>
  </entry>
  <entry>
    <record>3103</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.NotificationContent, order: 1121</description>
  </entry>
  <entry>
    <record>3104</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.NotificationService, order: 1122</description>
  </entry>
  <entry>
    <record>3105</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.PhotoEditing, order: 1123</description>
  </entry>
  <entry>
    <record>3106</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.Share, order: 1124</description>
  </entry>
  <entry>
    <record>3107</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.SharedLinks, order: 1125</description>
  </entry>
  <entry>
    <record>3108</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.SpotlightIndex, order: 1126</description>
  </entry>
  <entry>
    <record>3109</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.IOSExtension.Today, order: 1127</description>
  </entry>
  <entry>
    <record>3110</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.TvOSExtension.BroadcastUpload, order: 1128</description>
  </entry>
  <entry>
    <record>3111</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.TvOSExtension.BroadcastUI, order: 1129</description>
  </entry>
  <entry>
    <record>3112</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.TvOSExtension.Services, order: 1130</description>
  </entry>
  <entry>
    <record>3113</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Xamarin.Forms.TestApp, order: 1131</description>
  </entry>
  <entry>
    <record>3114</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.Android.App, order: 1132</description>
  </entry>
  <entry>
    <record>3115</record>
    <time>2025/12/04 15:39:04.659</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.Android.TestApp, order: 1133</description>
  </entry>
  <entry>
    <record>3116</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.Android.OpenGLApp, order: 1134</description>
  </entry>
  <entry>
    <record>3117</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.Android.ClassLibrary, order: 1135</description>
  </entry>
  <entry>
    <record>3118</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.ClassLibrary, order: 1136</description>
  </entry>
  <entry>
    <record>3119</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.iPadApp, order: 1137</description>
  </entry>
  <entry>
    <record>3120</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.iPadSingleViewApp, order: 1138</description>
  </entry>
  <entry>
    <record>3121</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.iPhoneApp, order: 1139</description>
  </entry>
  <entry>
    <record>3122</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Python.Core.FromExistingCode, order: 1139</description>
  </entry>
  <entry>
    <record>3123</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.iPhoneSingleViewApp, order: 1140</description>
  </entry>
  <entry>
    <record>3124</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.UniversalApp, order: 1141</description>
  </entry>
  <entry>
    <record>3125</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.iOS.UniversalSingleViewApp, order: 1142</description>
  </entry>
  <entry>
    <record>3126</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.FSharp.Xamarin.TvOS.SingleViewApp, order: 1143</description>
  </entry>
  <entry>
    <record>3127</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.GradleApplication, order: 1400</description>
  </entry>
  <entry>
    <record>3128</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.GradleLibrary, order: 1401</description>
  </entry>
  <entry>
    <record>3129</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.Android.MakeFile, order: 1402</description>
  </entry>
  <entry>
    <record>3130</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.OpenGLESApplication, order: 1403</description>
  </entry>
  <entry>
    <record>3131</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.SharedLibrary, order: 1404</description>
  </entry>
  <entry>
    <record>3132</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.iOS.OpenGLES2Application, order: 1405</description>
  </entry>
  <entry>
    <record>3133</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.MDD.VC.iOS.StaticLibrary, order: 1406</description>
  </entry>
  <entry>
    <record>3134</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: visualBasic.ItemTemplate, order: 1600</description>
  </entry>
  <entry>
    <record>3135</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: cSharp.VSIX.EmptyVSIXProject, order: 1601</description>
  </entry>
  <entry>
    <record>3136</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: visualBasic.VSIX.EmptyVSIXProject, order: 1602</description>
  </entry>
  <entry>
    <record>3137</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: cSharp.VSIX.ExtensionPackProjectTemplate, order: 1603</description>
  </entry>
  <entry>
    <record>3138</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: visualBasic.ExtensionPackProjectTemplate, order: 1604</description>
  </entry>
  <entry>
    <record>3139</record>
    <time>2025/12/04 15:39:04.660</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>3140</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalApplication, order: 1900</description>
  </entry>
  <entry>
    <record>3141</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalDll, order: 1901</description>
  </entry>
  <entry>
    <record>3142</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.EmptyUniversalStaticLibrary, order: 1902</description>
  </entry>
  <entry>
    <record>3143</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.WinUSBUniversalApplication, order: 1903</description>
  </entry>
  <entry>
    <record>3144</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.FilesystemFilter, order: 1904</description>
  </entry>
  <entry>
    <record>3145</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.KMDFUSB, order: 1905</description>
  </entry>
  <entry>
    <record>3146</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.NDISFilter, order: 1906</description>
  </entry>
  <entry>
    <record>3147</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.UMDFV2USB, order: 1907</description>
  </entry>
  <entry>
    <record>3148</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.DriverInstallPackage, order: 1908</description>
  </entry>
  <entry>
    <record>3149</record>
    <time>2025/12/04 15:39:04.660</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.WinUSBINFPackage, order: 1909</description>
  </entry>
  <entry>
    <record>3150</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.KMDF, order: 1910</description>
  </entry>
  <entry>
    <record>3151</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.KMDFEmpty, order: 1911</description>
  </entry>
  <entry>
    <record>3152</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.UMDFV2, order: 1912</description>
  </entry>
  <entry>
    <record>3153</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.UMDFV2Empty, order: 1913</description>
  </entry>
  <entry>
    <record>3154</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.WDMDriverEmpty, order: 1914</description>
  </entry>
  <entry>
    <record>3155</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.PrinterDriverV4, order: 1915</description>
  </entry>
  <entry>
    <record>3156</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.CSharp.Driver.PrinterDriverV4PropertyBag, order: 1916</description>
  </entry>
  <entry>
    <record>3157</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.PrinterXPSRender, order: 1917</description>
  </entry>
  <entry>
    <record>3158</record>
    <time>2025/12/04 15:39:04.661</time>
    <type>Information</type>
    <source>Project Template Metadata</source>
    <description>Overriding project template: microsoft.Cpp.Driver.PrinterDriverInstallPackage, order: 1918</description>
  </entry>
  <entry>
    <record>3159</record>
    <time>2025/12/04 15:39:04.919</time>
    <type>Information</type>
    <source>SdkWorkloadsInfoProvider</source>
    <description>installed workloads: { &quot;microsoft.net.sdk.android&quot;: &quot;35.0.78&quot;, &quot;microsoft.net.sdk.ios&quot;: &quot;26.0.9752&quot;, &quot;microsoft.net.sdk.maccatalyst&quot;: &quot;26.0.9752&quot;, &quot;microsoft.net.sdk.macos&quot;: &quot;26.0.9752&quot;, &quot;microsoft.net.sdk.maui&quot;: &quot;9.0.111&quot;, &quot;microsoft.net.sdk.tvos&quot;: &quot;26.0.9752&quot;, &quot;microsoft.net.workload.mono.toolchain.current&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.emscripten.current&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.emscripten.net6&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.emscripten.net7&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.emscripten.net8&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.mono.toolchain.net6&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.mono.toolchain.net7&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.workload.mono.toolchain.net8&quot;: &quot;9.0.11&quot;, &quot;microsoft.net.sdk.aspire&quot;: &quot;8.2.2&quot; }</description>
  </entry>
  <entry>
    <record>3160</record>
    <time>2025/12/04 15:39:06.075</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;TypeScript&apos; is rejected because it is not a relative path: &apos;\.\NullPath&apos;</description>
  </entry>
  <entry>
    <record>3161</record>
    <time>2025/12/04 15:39:06.077</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;JavaScript&apos; is rejected because it is not a relative path: &apos;\.\NullPath&apos;</description>
  </entry>
  <entry>
    <record>3162</record>
    <time>2025/12/04 15:39:06.077</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;PowerShell&apos; is rejected because it is not a relative path: &apos;\ProjectTemplates\PowerShell&apos;</description>
  </entry>
  <entry>
    <record>3163</record>
    <time>2025/12/04 15:39:06.077</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;Android APK projects (*.apk)&apos; is rejected because it is not a relative path: &apos;\.\NullPath&apos;</description>
  </entry>
  <entry>
    <record>3164</record>
    <time>2025/12/04 15:39:06.077</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Template probing path provided by &apos;Visual F#&apos; is rejected because it is not a relative path: &apos;\.\NullPath&apos;</description>
  </entry>
  <entry>
    <record>3165</record>
    <time>2025/12/04 15:39:06.100</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.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3166</record>
    <time>2025/12/04 15:39:06.100</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\ProjectTemplates\Microsoft.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3167</record>
    <time>2025/12/04 15:39:06.100</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.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3168</record>
    <time>2025/12/04 15:39:06.100</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\ProjectTemplates\Microsoft.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3169</record>
    <time>2025/12/04 15:39:06.100</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\ProjectTemplates\Microsoft.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3170</record>
    <time>2025/12/04 15:39:06.100</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.VisualStudio.Azure.Waverton.Projects.Project..vstman\CloudServiceV2.vstemplate</path>
  </entry>
  <entry>
    <record>3171</record>
    <time>2025/12/04 15:39:06.105</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.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3172</record>
    <time>2025/12/04 15:39:06.105</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.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3173</record>
    <time>2025/12/04 15:39:06.105</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3174</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3175</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3176</record>
    <time>2025/12/04 15:39:06.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3177</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3178</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3179</record>
    <time>2025/12/04 15:39:06.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3180</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3181</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3182</record>
    <time>2025/12/04 15:39:06.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3183</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3184</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3185</record>
    <time>2025/12/04 15:39:06.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3186</record>
    <time>2025/12/04 15:39:06.106</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\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3187</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3188</record>
    <time>2025/12/04 15:39:06.106</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\EmptyVSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3189</record>
    <time>2025/12/04 15:39:06.106</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\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3190</record>
    <time>2025/12/04 15:39:06.106</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.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3191</record>
    <time>2025/12/04 15:39:06.107</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ExtensionPack.vstemplate</path>
  </entry>
  <entry>
    <record>3192</record>
    <time>2025/12/04 15:39:06.107</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\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3193</record>
    <time>2025/12/04 15:39:06.107</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.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3194</record>
    <time>2025/12/04 15:39:06.107</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ItemTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3195</record>
    <time>2025/12/04 15:39:06.107</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\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3196</record>
    <time>2025/12/04 15:39:06.107</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.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3197</record>
    <time>2025/12/04 15:39:06.107</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\ProjectTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3198</record>
    <time>2025/12/04 15:39:06.107</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\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3199</record>
    <time>2025/12/04 15:39:06.107</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.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3200</record>
    <time>2025/12/04 15:39:06.107</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.SDK.Templates.Project..vstman\VSIXProject.vstemplate</path>
  </entry>
  <entry>
    <record>3201</record>
    <time>2025/12/04 15:39:06.110</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C#]: Tag appended: C#</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3202</record>
    <time>2025/12/04 15:39:06.110</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3203</record>
    <time>2025/12/04 15:39:06.110</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.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3204</record>
    <time>2025/12/04 15:39:06.110</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3205</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3206</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C#]: Tag appended: C#</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Custom.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3207</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Custom.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3208</record>
    <time>2025/12/04 15:39:06.111</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.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Custom.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3209</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Custom.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3210</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\Wpf.Custom.Control.vstemplate</path>
  </entry>
  <entry>
    <record>3211</record>
    <time>2025/12/04 15:39:06.111</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.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfApp.vstemplate</path>
  </entry>
  <entry>
    <record>3212</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfApp.vstemplate</path>
  </entry>
  <entry>
    <record>3213</record>
    <time>2025/12/04 15:39:06.111</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.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfApp.vstemplate</path>
  </entry>
  <entry>
    <record>3214</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfApp.vstemplate</path>
  </entry>
  <entry>
    <record>3215</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C#]: Tag appended: C#</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3216</record>
    <time>2025/12/04 15:39:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3217</record>
    <time>2025/12/04 15:39:06.111</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.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3218</record>
    <time>2025/12/04 15:39:06.112</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3219</record>
    <time>2025/12/04 15:39:06.112</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.Bridge.NETCSharpVB.Project..vstman\WpfLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3220</record>
    <time>2025/12/04 15:39:06.114</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.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3221</record>
    <time>2025/12/04 15:39:06.114</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.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3222</record>
    <time>2025/12/04 15:39:06.114</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3223</record>
    <time>2025/12/04 15:39:06.115</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.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3224</record>
    <time>2025/12/04 15:39:06.115</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.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3225</record>
    <time>2025/12/04 15:39:06.115</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.ManagedCore.Resources.en-US.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3226</record>
    <time>2025/12/04 15:39:06.115</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.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3227</record>
    <time>2025/12/04 15:39:06.115</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.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3228</record>
    <time>2025/12/04 15:39:06.115</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3229</record>
    <time>2025/12/04 15:39:06.115</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.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3230</record>
    <time>2025/12/04 15:39:06.116</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.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3231</record>
    <time>2025/12/04 15:39:06.116</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.ManagedCore.Resources.zh-CN.Project..vstman\csConsoleApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3232</record>
    <time>2025/12/04 15:39:06.120</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.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3233</record>
    <time>2025/12/04 15:39:06.120</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.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3234</record>
    <time>2025/12/04 15:39:06.120</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3235</record>
    <time>2025/12/04 15:39:06.120</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.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3236</record>
    <time>2025/12/04 15:39:06.120</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.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3237</record>
    <time>2025/12/04 15:39:06.120</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3238</record>
    <time>2025/12/04 15:39:06.120</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.en-US.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3239</record>
    <time>2025/12/04 15:39:06.121</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.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3240</record>
    <time>2025/12/04 15:39:06.121</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.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3241</record>
    <time>2025/12/04 15:39:06.121</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3242</record>
    <time>2025/12/04 15:39:06.121</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.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3243</record>
    <time>2025/12/04 15:39:06.121</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.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3244</record>
    <time>2025/12/04 15:39:06.121</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3245</record>
    <time>2025/12/04 15:39:06.121</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Winforms.zh-CN.Project..vstman\csWindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3246</record>
    <time>2025/12/04 15:39:06.122</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3247</record>
    <time>2025/12/04 15:39:06.122</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3248</record>
    <time>2025/12/04 15:39:06.122</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3249</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3250</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3251</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3252</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3253</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3254</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3255</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3256</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3257</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3258</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3259</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3260</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3261</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3262</record>
    <time>2025/12/04 15:39:06.123</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.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3263</record>
    <time>2025/12/04 15:39:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.en-US.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3264</record>
    <time>2025/12/04 15:39:06.125</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3265</record>
    <time>2025/12/04 15:39:06.125</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3266</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3267</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3268</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3269</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3270</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3271</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3272</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3273</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3274</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3275</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3276</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3277</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFCustomControl.vstemplate</path>
  </entry>
  <entry>
    <record>3278</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3279</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3280</record>
    <time>2025/12/04 15:39:06.126</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.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3281</record>
    <time>2025/12/04 15:39:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.CS.Wpf.Resources.zh-CN.Project..vstman\csWPFBrowserApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3282</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3283</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3284</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3285</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3286</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3287</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3288</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3289</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3290</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3291</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3292</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3293</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3294</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3295</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3296</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3297</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3298</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3299</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3300</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3301</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3302</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3303</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3304</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3305</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3306</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3307</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3308</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3309</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3310</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3311</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3312</record>
    <time>2025/12/04 15:39:06.128</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3313</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3314</record>
    <time>2025/12/04 15:39:06.128</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3315</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3316</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3317</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3318</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3319</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3320</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3321</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3322</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3323</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3324</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3325</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3326</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3327</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3328</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3329</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;xaml]: Tag appended: xaml</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3330</record>
    <time>2025/12/04 15:39:06.130</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3331</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;xbox]: Tag appended: xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3332</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;uwp]: Tag appended: uwp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3333</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3334</record>
    <time>2025/12/04 15:39:06.130</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\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3335</record>
    <time>2025/12/04 15:39:06.130</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3336</record>
    <time>2025/12/04 15:39:06.131</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.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3337</record>
    <time>2025/12/04 15:39:06.131</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3338</record>
    <time>2025/12/04 15:39:06.131</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3339</record>
    <time>2025/12/04 15:39:06.131</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3340</record>
    <time>2025/12/04 15:39:06.131</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3341</record>
    <time>2025/12/04 15:39:06.131</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3342</record>
    <time>2025/12/04 15:39:06.131</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3343</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3344</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3345</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3346</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3347</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3348</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3349</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3350</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3351</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3352</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3353</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3354</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3355</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3356</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3357</record>
    <time>2025/12/04 15:39:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\UnitTestApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3358</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3359</record>
    <time>2025/12/04 15:39:06.132</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3360</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3361</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3362</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankCoreApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3363</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3364</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3365</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3366</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3367</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3368</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3369</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3370</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3371</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3372</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3373</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3374</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3375</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3376</record>
    <time>2025/12/04 15:39:06.133</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3377</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3378</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3379</record>
    <time>2025/12/04 15:39:06.133</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3380</record>
    <time>2025/12/04 15:39:06.134</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3381</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3382</record>
    <time>2025/12/04 15:39:06.134</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3383</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3384</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3385</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlApplicationPackage.vstemplate</path>
  </entry>
  <entry>
    <record>3386</record>
    <time>2025/12/04 15:39:06.134</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3387</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;xaml]: Tag appended: xaml</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3388</record>
    <time>2025/12/04 15:39:06.134</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3389</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;xbox]: Tag appended: xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3390</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;uwp]: Tag appended: uwp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3391</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankXamlWapTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3392</record>
    <time>2025/12/04 15:39:06.134</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\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3393</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3394</record>
    <time>2025/12/04 15:39:06.134</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.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3395</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3396</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3397</record>
    <time>2025/12/04 15:39:06.134</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.UWP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3398</record>
    <time>2025/12/04 15:39:06.136</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3399</record>
    <time>2025/12/04 15:39:06.136</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.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3400</record>
    <time>2025/12/04 15:39:06.136</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3401</record>
    <time>2025/12/04 15:39:06.136</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3402</record>
    <time>2025/12/04 15:39:06.136</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.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3403</record>
    <time>2025/12/04 15:39:06.136</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.en-US.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3404</record>
    <time>2025/12/04 15:39:06.137</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3405</record>
    <time>2025/12/04 15:39:06.137</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.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3406</record>
    <time>2025/12/04 15:39:06.138</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\classlibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3407</record>
    <time>2025/12/04 15:39:06.138</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3408</record>
    <time>2025/12/04 15:39:06.138</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.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3409</record>
    <time>2025/12/04 15:39:06.138</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.ManagedCore.Resources.zh-CN.Project..vstman\consoleapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3410</record>
    <time>2025/12/04 15:39:06.143</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3411</record>
    <time>2025/12/04 15:39:06.143</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.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3412</record>
    <time>2025/12/04 15:39:06.143</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3413</record>
    <time>2025/12/04 15:39:06.143</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3414</record>
    <time>2025/12/04 15:39:06.143</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.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3415</record>
    <time>2025/12/04 15:39:06.143</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3416</record>
    <time>2025/12/04 15:39:06.143</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.en-US.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3417</record>
    <time>2025/12/04 15:39:06.145</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3418</record>
    <time>2025/12/04 15:39:06.145</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.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3419</record>
    <time>2025/12/04 15:39:06.145</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\windowsapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3420</record>
    <time>2025/12/04 15:39:06.145</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3421</record>
    <time>2025/12/04 15:39:06.145</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.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3422</record>
    <time>2025/12/04 15:39:06.145</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3423</record>
    <time>2025/12/04 15:39:06.145</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Winforms.zh-CN.Project..vstman\WindowsControlLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3424</record>
    <time>2025/12/04 15:39:06.146</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3425</record>
    <time>2025/12/04 15:39:06.146</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3426</record>
    <time>2025/12/04 15:39:06.146</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.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3427</record>
    <time>2025/12/04 15:39:06.146</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3428</record>
    <time>2025/12/04 15:39:06.146</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3429</record>
    <time>2025/12/04 15:39:06.146</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3430</record>
    <time>2025/12/04 15:39:06.146</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.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3431</record>
    <time>2025/12/04 15:39:06.146</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3432</record>
    <time>2025/12/04 15:39:06.147</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3433</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3434</record>
    <time>2025/12/04 15:39:06.147</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.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3435</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3436</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3437</record>
    <time>2025/12/04 15:39:06.147</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3438</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3439</record>
    <time>2025/12/04 15:39:06.147</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.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3440</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3441</record>
    <time>2025/12/04 15:39:06.147</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.en-US.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3442</record>
    <time>2025/12/04 15:39:06.148</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3443</record>
    <time>2025/12/04 15:39:06.148</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3444</record>
    <time>2025/12/04 15:39:06.148</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.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3445</record>
    <time>2025/12/04 15:39:06.149</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3446</record>
    <time>2025/12/04 15:39:06.150</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3447</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3448</record>
    <time>2025/12/04 15:39:06.150</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.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3449</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfbrowserapplication.vstemplate</path>
  </entry>
  <entry>
    <record>3450</record>
    <time>2025/12/04 15:39:06.150</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3451</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3452</record>
    <time>2025/12/04 15:39:06.150</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.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3453</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3454</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3455</record>
    <time>2025/12/04 15:39:06.150</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\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3456</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3457</record>
    <time>2025/12/04 15:39:06.150</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.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3458</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3459</record>
    <time>2025/12/04 15:39:06.150</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.Templates.VB.Wpf.Resources.zh-CN.Project..vstman\wpfcustomcontrollibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3460</record>
    <time>2025/12/04 15:39:06.163</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C++]: Tag appended: C++</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.CLR.Project..vstman\CLREmpty.vstemplate</path>
  </entry>
  <entry>
    <record>3461</record>
    <time>2025/12/04 15:39:06.163</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.VisualStudio.VC.Templates.CLR.Project..vstman\CLREmpty.vstemplate</path>
  </entry>
  <entry>
    <record>3462</record>
    <time>2025/12/04 15:39:06.163</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.CLR.Project..vstman\CLREmpty.vstemplate</path>
  </entry>
  <entry>
    <record>3463</record>
    <time>2025/12/04 15:39:06.163</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C++]: Tag appended: C++</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.CLR.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3464</record>
    <time>2025/12/04 15:39:06.163</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.VisualStudio.VC.Templates.CLR.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3465</record>
    <time>2025/12/04 15:39:06.164</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Library]: Tag appended: Library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.CLR.Project..vstman\ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3466</record>
    <time>2025/12/04 15:39:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3467</record>
    <time>2025/12/04 15:39:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3468</record>
    <time>2025/12/04 15:39:06.169</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.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3469</record>
    <time>2025/12/04 15:39:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3470</record>
    <time>2025/12/04 15:39:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3471</record>
    <time>2025/12/04 15:39:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3472</record>
    <time>2025/12/04 15:39:06.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3473</record>
    <time>2025/12/04 15:39:06.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3474</record>
    <time>2025/12/04 15:39:06.170</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.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3475</record>
    <time>2025/12/04 15:39:06.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3476</record>
    <time>2025/12/04 15:39:06.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3477</record>
    <time>2025/12/04 15:39:06.170</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Games]: Tag appended: Games</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.en-US.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3478</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3479</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3480</record>
    <time>2025/12/04 15:39:06.171</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.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3481</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3482</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3483</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Desktop]: Tag appended: Desktop</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\BlankApplication.vstemplate</path>
  </entry>
  <entry>
    <record>3484</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3485</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3486</record>
    <time>2025/12/04 15:39:06.171</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.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3487</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Xbox]: Tag appended: Xbox</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3488</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;UWP]: Tag appended: UWP</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3489</record>
    <time>2025/12/04 15:39:06.171</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Games]: Tag appended: Games</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.VisualStudio.VC.Templates.Windows.UAP.Resources.zh-CN.Project..vstman\DirectXXamlUAPApp.vstemplate</path>
  </entry>
  <entry>
    <record>3490</record>
    <time>2025/12/04 15:39:06.178</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3491</record>
    <time>2025/12/04 15:39:06.179</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3492</record>
    <time>2025/12/04 15:39:06.179</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3493</record>
    <time>2025/12/04 15:39:06.179</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3494</record>
    <time>2025/12/04 15:39:06.179</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3495</record>
    <time>2025/12/04 15:39:06.179</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\BlazorTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3496</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3497</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3498</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3499</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3500</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3501</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3502</record>
    <time>2025/12/04 15:39:06.179</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\GrpcTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3503</record>
    <time>2025/12/04 15:39:06.179</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\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3504</record>
    <time>2025/12/04 15:39:06.179</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\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3505</record>
    <time>2025/12/04 15:39:06.179</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\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3506</record>
    <time>2025/12/04 15:39:06.179</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\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3507</record>
    <time>2025/12/04 15:39:06.179</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;library]: Tag appended: library</description>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ProjectTemplates\Microsoft.WebTools.DotNet.ProjectTemplates.Project..vstman\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3508</record>
    <time>2025/12/04 15:39:06.179</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\RazorClassLibraryTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3509</record>
    <time>2025/12/04 15:39:06.179</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3510</record>
    <time>2025/12/04 15:39:06.179</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3511</record>
    <time>2025/12/04 15:39:06.180</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3512</record>
    <time>2025/12/04 15:39:06.180</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3513</record>
    <time>2025/12/04 15:39:06.180</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3514</record>
    <time>2025/12/04 15:39:06.180</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\WebTemplateCore.vstemplate</path>
  </entry>
  <entry>
    <record>3515</record>
    <time>2025/12/04 15:39:06.180</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>3516</record>
    <time>2025/12/04 15:39:06.180</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>3517</record>
    <time>2025/12/04 15:39:06.180</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>3518</record>
    <time>2025/12/04 15:39:06.180</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>3519</record>
    <time>2025/12/04 15:39:06.180</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>3520</record>
    <time>2025/12/04 15:39:06.180</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>3521</record>
    <time>2025/12/04 15:39:06.180</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>3522</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3523</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3524</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3525</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3526</record>
    <time>2025/12/04 15:39:06.182</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\ProjectTemplates\Microsoft.WebTools.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3527</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3528</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3529</record>
    <time>2025/12/04 15:39:06.182</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.ProjectTemplates.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3530</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3531</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3532</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3533</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3534</record>
    <time>2025/12/04 15:39:06.184</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\ProjectTemplates\Microsoft.WebTools.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3535</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3536</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3537</record>
    <time>2025/12/04 15:39:06.184</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.ProjectTemplates.Resources.zh-CN.Project..vstman\WebTemplate.vstemplate</path>
  </entry>
  <entry>
    <record>3538</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3539</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3540</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3541</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3542</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.ClassLibrary.vstemplate</path>
  </entry>
  <entry>
    <record>3543</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3544</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3545</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3546</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3547</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3548</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3549</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3550</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3551</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3552</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3553</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3554</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3555</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3556</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3557</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3558</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3559</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3560</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3561</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3562</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3563</record>
    <time>2025/12/04 15:39:06.370</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\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3564</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3565</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3566</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3567</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3568</record>
    <time>2025/12/04 15:39:06.370</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;test]: Tag appended: test</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\TKQ5TV0C.MPL\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.Cs.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3569</record>
    <time>2025/12/04 15:39:06.404</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\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityInProcessProject.vstemplate</path>
  </entry>
  <entry>
    <record>3570</record>
    <time>2025/12/04 15:39:06.404</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\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityInProcessProject.vstemplate</path>
  </entry>
  <entry>
    <record>3571</record>
    <time>2025/12/04 15:39:06.404</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityInProcessProject.vstemplate</path>
  </entry>
  <entry>
    <record>3572</record>
    <time>2025/12/04 15:39:06.404</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\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityProject.vstemplate</path>
  </entry>
  <entry>
    <record>3573</record>
    <time>2025/12/04 15:39:06.404</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\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityProject.vstemplate</path>
  </entry>
  <entry>
    <record>3574</record>
    <time>2025/12/04 15:39:06.404</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Extension]: Tag appended: Extension</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\EXTENSIBILITYPROJECT\ProjectTemplates\templateManifest1.noloc.vstman\VisualStudioExtensibilityProject.vstemplate</path>
  </entry>
  <entry>
    <record>3575</record>
    <time>2025/12/04 15:39:06.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\CloudService.vstemplate</path>
  </entry>
  <entry>
    <record>3576</record>
    <time>2025/12/04 15:39:06.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\CloudService.vstemplate</path>
  </entry>
  <entry>
    <record>3577</record>
    <time>2025/12/04 15:39:06.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\CloudService.vstemplate</path>
  </entry>
  <entry>
    <record>3578</record>
    <time>2025/12/04 15:39:06.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\CloudService.vstemplate</path>
  </entry>
  <entry>
    <record>3579</record>
    <time>2025/12/04 15:39:06.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3580</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3581</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3582</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3583</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3584</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureExpress4App.vstemplate</path>
  </entry>
  <entry>
    <record>3585</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureExpress4App.vstemplate</path>
  </entry>
  <entry>
    <record>3586</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureExpress4App.vstemplate</path>
  </entry>
  <entry>
    <record>3587</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3588</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3589</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3590</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3591</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\VuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3592</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3593</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3594</record>
    <time>2025/12/04 15:39:06.421</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3595</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3596</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3597</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3598</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3599</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\AzureNodejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3600</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3601</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3602</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3603</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3604</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3605</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Javascript]: Tag appended: Javascript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3606</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3607</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3608</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3609</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3610</record>
    <time>2025/12/04 15:39:06.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3611</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3612</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3613</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3614</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3615</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptVuejsApp.vstemplate</path>
  </entry>
  <entry>
    <record>3616</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3617</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3618</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3619</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3620</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsConsoleApp.vstemplate</path>
  </entry>
  <entry>
    <record>3621</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3622</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3623</record>
    <time>2025/12/04 15:39:06.423</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3624</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3625</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\NodejsWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3626</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3627</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3628</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptWebApp.vstemplate</path>
  </entry>
  <entry>
    <record>3629</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3630</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3631</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3632</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3633</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\ExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3634</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3635</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure]: Tag appended: Azure</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3636</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Cloud]: Tag appended: Cloud</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\TypeScriptAzureExpressApp.vstemplate</path>
  </entry>
  <entry>
    <record>3637</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;Typescript]: Tag appended: Typescript</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3638</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Windows]: Tag appended: Windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3639</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Linux]: Tag appended: Linux</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3640</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;macOS]: Tag appended: macOS</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3641</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Web]: Tag appended: Web</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3642</record>
    <time>2025/12/04 15:39:06.424</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Console]: Tag appended: Console</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\MICROSOFT\NODEJSTOOLS\NODEJSTOOLS\ProjectTemplates\templateManifest0.1033.vstman\FromExistingCode.vstemplate</path>
  </entry>
  <entry>
    <record>3643</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3644</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3645</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3646</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3647</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.PackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3648</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3649</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3650</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3651</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3652</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.BlankApp.vstemplate</path>
  </entry>
  <entry>
    <record>3653</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3654</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3655</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3656</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3657</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.WapProj.vstemplate</path>
  </entry>
  <entry>
    <record>3658</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Neutral.CppWinRT.RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3659</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Neutral.CppWinRT.RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3660</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Neutral.CppWinRT.RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3661</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Neutral.CppWinRT.RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3662</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Neutral.CppWinRT.RuntimeComponent.vstemplate</path>
  </entry>
  <entry>
    <record>3663</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3664</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3665</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3666</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3667</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.SingleProjectPackagedApp.vstemplate</path>
  </entry>
  <entry>
    <record>3668</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;cpp]: Tag appended: cpp</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3669</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;XAML]: Tag appended: XAML</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3670</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;windows]: Tag appended: windows</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3671</record>
    <time>2025/12/04 15:39:06.428</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;desktop]: Tag appended: desktop</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3672</record>
    <time>2025/12/04 15:39:06.429</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;WinUI]: Tag appended: WinUI</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3673</record>
    <time>2025/12/04 15:39:06.429</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;Test]: Tag appended: Test</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\EXTENSIONS\AWF3ALES.UOD\ProjectTemplates\templateManifest1.1033.vstman\WinUI.Desktop.CppWinRT.UnitTestApp.vstemplate</path>
  </entry>
  <entry>
    <record>3674</record>
    <time>2025/12/04 15:39:06.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3675</record>
    <time>2025/12/04 15:39:06.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3676</record>
    <time>2025/12/04 15:39:06.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3677</record>
    <time>2025/12/04 15:39:06.432</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3678</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3679</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3680</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3681</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3682</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3683</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3684</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3685</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3686</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3687</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3688</record>
    <time>2025/12/04 15:39:06.433</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3689</record>
    <time>2025/12/04 15:39:06.434</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3690</record>
    <time>2025/12/04 15:39:06.434</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3691</record>
    <time>2025/12/04 15:39:06.434</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest0.1029.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3692</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3693</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3694</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3695</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3696</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3697</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3698</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3699</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3700</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3701</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3702</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3703</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3704</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3705</record>
    <time>2025/12/04 15:39:06.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3706</record>
    <time>2025/12/04 15:39:06.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3707</record>
    <time>2025/12/04 15:39:06.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3708</record>
    <time>2025/12/04 15:39:06.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3709</record>
    <time>2025/12/04 15:39:06.437</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest1.1031.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3710</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3711</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3712</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3713</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3714</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3715</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3716</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3717</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3718</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3719</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3720</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3721</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3722</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3723</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3724</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3725</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3726</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3727</record>
    <time>2025/12/04 15:39:06.438</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest10.1049.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3728</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3729</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3730</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3731</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3732</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3733</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3734</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3735</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3736</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3737</record>
    <time>2025/12/04 15:39:06.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3738</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3739</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3740</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3741</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3742</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3743</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3744</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3745</record>
    <time>2025/12/04 15:39:06.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest11.1055.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3746</record>
    <time>2025/12/04 15:39:06.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3747</record>
    <time>2025/12/04 15:39:06.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3748</record>
    <time>2025/12/04 15:39:06.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3749</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3750</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3751</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3752</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3753</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3754</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3755</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3756</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3757</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3758</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3759</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3760</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3761</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3762</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3763</record>
    <time>2025/12/04 15:39:06.443</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest12.2052.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3764</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3765</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3766</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3767</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3768</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3769</record>
    <time>2025/12/04 15:39:06.445</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3770</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3771</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3772</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3773</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3774</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3775</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3776</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3777</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3778</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3779</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3780</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3781</record>
    <time>2025/12/04 15:39:06.446</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest13.1028.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3782</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3783</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3784</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3785</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3786</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3787</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3788</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3789</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3790</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3791</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3792</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3793</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3794</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3795</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3796</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3797</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3798</record>
    <time>2025/12/04 15:39:06.448</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3799</record>
    <time>2025/12/04 15:39:06.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest2.1033.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3800</record>
    <time>2025/12/04 15:39:06.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3801</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3802</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3803</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3804</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3805</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3806</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3807</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3808</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3809</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3810</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3811</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3812</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3813</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3814</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3815</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3816</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3817</record>
    <time>2025/12/04 15:39:06.450</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest3.3082.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3818</record>
    <time>2025/12/04 15:39:06.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3819</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3820</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3821</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3822</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3823</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3824</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3825</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3826</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3827</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3828</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3829</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3830</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3831</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3832</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3833</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3834</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3835</record>
    <time>2025/12/04 15:39:06.452</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest4.1036.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3836</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3837</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3838</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3839</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3840</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3841</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3842</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3843</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3844</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3845</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3846</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3847</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3848</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3849</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3850</record>
    <time>2025/12/04 15:39:06.454</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3851</record>
    <time>2025/12/04 15:39:06.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3852</record>
    <time>2025/12/04 15:39:06.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3853</record>
    <time>2025/12/04 15:39:06.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest5.1040.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3854</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3855</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3856</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3857</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3858</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3859</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3860</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3861</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3862</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3863</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3864</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3865</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3866</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3867</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3868</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3869</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3870</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3871</record>
    <time>2025/12/04 15:39:06.456</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest6.1041.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3872</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3873</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3874</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3875</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3876</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3877</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3878</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3879</record>
    <time>2025/12/04 15:39:06.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3880</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3881</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3882</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3883</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3884</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3885</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3886</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3887</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3888</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3889</record>
    <time>2025/12/04 15:39:06.458</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest7.1042.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3890</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3891</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3892</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3893</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3894</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3895</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3896</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3897</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3898</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3899</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3900</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3901</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3902</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3903</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3904</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3905</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3906</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3907</record>
    <time>2025/12/04 15:39:06.460</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest8.1045.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3908</record>
    <time>2025/12/04 15:39:06.461</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3909</record>
    <time>2025/12/04 15:39:06.461</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3910</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlinkDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3911</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3912</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3913</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3914</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3915</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3916</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlankDeploy.vstemplate</path>
  </entry>
  <entry>
    <record>3917</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3918</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3919</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereBlink.vstemplate</path>
  </entry>
  <entry>
    <record>3920</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3921</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3922</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereHLCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3923</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [LanguageTag;C]: Tag appended: C</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3924</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [PlatformTag;Azure Sphere]: Tag appended: Azure Sphere</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3925</record>
    <time>2025/12/04 15:39:06.462</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>TemplateTag [ProjectTypeTag;IoT]: Tag appended: IoT</description>
    <path>C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\COMMON7\IDE\COMMONEXTENSIONS\MICROSOFT\AZURE SPHERE\ProjectTemplates\templateManifest9.1046.vstman\AzureSphereRTCoreBlank.vstemplate</path>
  </entry>
  <entry>
    <record>3926</record>
    <time>2025/12/04 15:39:06.595</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>3927</record>
    <time>2025/12/04 15:39:06.689</time>
    <type>Warning</type>
    <source>VisualStudio</source>
    <description>One or more templates do not match any installed project packages.</description>
  </entry>
  <entry>
    <record>3928</record>
    <time>2025/12/04 15:39:10.602</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeedbackWindowPackage]</description>
    <guid>{04F19A10-C8B2-4A72-AB67-C8024D2048F7}</guid>
  </entry>
  <entry>
    <record>3929</record>
    <time>2025/12/04 15:39:10.605</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeedbackWindowPackage]</description>
    <guid>{04F19A10-C8B2-4A72-AB67-C8024D2048F7}</guid>
  </entry>
  <entry>
    <record>3930</record>
    <time>2025/12/04 15:39:11.688</time>
    <type>Warning</type>
    <source>Unified Settings</source>
    <description>[Unified Settings expression evaluator]: Error parsing expression for environment.visualExperience.hideCopilotBadge visibleWhen: VS.Copilot.HideCopilotBadgeSetting is not a registered feature flag. Substituting empty string.</description>
  </entry>
  <entry>
    <record>3931</record>
    <time>2025/12/04 15:39:11.771</time>
    <type>Warning</type>
    <source>Unified Settings</source>
    <description>[Unified Settings expression evaluator]: Error parsing expression for environment.security.enableCRLValidation visibleWhen: Trust.EnableCRLValidation is not a registered feature flag. Substituting empty string.</description>
  </entry>
  <entry>
    <record>3932</record>
    <time>2025/12/04 15:39:13.558</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>3933</record>
    <time>2025/12/04 15:39:13.609</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>3934</record>
    <time>2025/12/04 15:39:13.673</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>3935</record>
    <time>2025/12/04 15:39:13.678</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>3936</record>
    <time>2025/12/04 15:39:13.998</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>3937</record>
    <time>2025/12/04 15:39:14.018</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>3938</record>
    <time>2025/12/04 15:39:14.020</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3939</record>
    <time>2025/12/04 15:39:14.048</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>3940</record>
    <time>2025/12/04 15:39:14.688</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>3941</record>
    <time>2025/12/04 15:39:14.727</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>3942</record>
    <time>2025/12/04 15:39:14.728</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>3943</record>
    <time>2025/12/04 15:39:14.900</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>3944</record>
    <time>2025/12/04 15:39:14.950</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Studio Explorers and Designers Package]</description>
    <guid>{8D8529D3-625D-4496-8354-3DAD630ECC1B}</guid>
  </entry>
  <entry>
    <record>3945</record>
    <time>2025/12/04 15:39:15.048</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Windows Forms Designer Package]</description>
    <guid>{7494682B-37A0-11D2-A273-00C04F8EF4FF}</guid>
  </entry>
  <entry>
    <record>3946</record>
    <time>2025/12/04 15:39:15.077</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Windows Forms Designer Package]</description>
    <guid>{7494682B-37A0-11D2-A273-00C04F8EF4FF}</guid>
  </entry>
  <entry>
    <record>3947</record>
    <time>2025/12/04 15:39:15.129</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio Explorers and Designers Package]</description>
    <guid>{8D8529D3-625D-4496-8354-3DAD630ECC1B}</guid>
  </entry>
  <entry>
    <record>3948</record>
    <time>2025/12/04 15:39:15.407</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual Database Tools Package]</description>
    <guid>{220A4C17-7E7C-4663-BBCC-5E607C6543CD}</guid>
  </entry>
  <entry>
    <record>3949</record>
    <time>2025/12/04 15:39:15.409</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{220A4C17-7E7C-4663-BBCC-5E607C6543CD}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\Tools\VDT\*\vdt80pui.dll</path>
  </entry>
  <entry>
    <record>3950</record>
    <time>2025/12/04 15:39:15.410</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Database Tools Package]</description>
    <guid>{220A4C17-7E7C-4663-BBCC-5E607C6543CD}</guid>
  </entry>
  <entry>
    <record>3951</record>
    <time>2025/12/04 15:39:15.518</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.TeamFoundation.VersionControl.HatPackage]</description>
    <guid>{4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}</guid>
  </entry>
  <entry>
    <record>3952</record>
    <time>2025/12/04 15:39:15.612</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.TeamFoundation.TeamFoundationHost]</description>
    <guid>{B80B010D-188C-4B19-B483-6C20D52071AE}</guid>
  </entry>
  <entry>
    <record>3953</record>
    <time>2025/12/04 15:39:15.671</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.Services.Integration.ServicesPackage, Microsoft.VisualStudio.Services.Integration]</description>
    <guid>{0B93CCC5-BC52-40E9-91A3-7B8B58C4526B}</guid>
  </entry>
  <entry>
    <record>3954</record>
    <time>2025/12/04 15:39:15.691</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IdentityServicePackage]</description>
    <guid>{C35E0ABB-7F17-447F-B054-7B73D6D7581D}</guid>
  </entry>
  <entry>
    <record>3955</record>
    <time>2025/12/04 15:39:15.695</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.Services.Integration.ServicesPackage, Microsoft.VisualStudio.Services.Integration]</description>
    <guid>{0B93CCC5-BC52-40E9-91A3-7B8B58C4526B}</guid>
  </entry>
  <entry>
    <record>3956</record>
    <time>2025/12/04 15:39:15.733</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.TeamFoundation.TeamFoundationHost]</description>
    <guid>{B80B010D-188C-4B19-B483-6C20D52071AE}</guid>
  </entry>
  <entry>
    <record>3957</record>
    <time>2025/12/04 15:39:15.820</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>3958</record>
    <time>2025/12/04 15:39:15.827</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>3959</record>
    <time>2025/12/04 15:39:15.836</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.TeamFoundation.VersionControl.HatPackage]</description>
    <guid>{4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}</guid>
  </entry>
  <entry>
    <record>3960</record>
    <time>2025/12/04 15:39:15.859</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ParallelDebug]</description>
    <guid>{D277DC8A-AA1E-4303-8C03-1C58DB18E98B}</guid>
  </entry>
  <entry>
    <record>3961</record>
    <time>2025/12/04 15:39:15.940</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ParallelDebug]</description>
    <guid>{D277DC8A-AA1E-4303-8C03-1C58DB18E98B}</guid>
  </entry>
  <entry>
    <record>3962</record>
    <time>2025/12/04 15:39:16.025</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3963</record>
    <time>2025/12/04 15:39:16.034</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DockerLanguageServicePackage]</description>
    <guid>{7158A7D4-ACBB-446E-B9A9-5D59E1F1C8CC}</guid>
  </entry>
  <entry>
    <record>3964</record>
    <time>2025/12/04 15:39:16.038</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3965</record>
    <time>2025/12/04 15:39:16.124</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ErrorListPackage]</description>
    <guid>{4A9B7E50-AA16-11D0-A8C5-00A0C921A4D2}</guid>
  </entry>
  <entry>
    <record>3966</record>
    <time>2025/12/04 15:39:16.205</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ErrorListPackage]</description>
    <guid>{4A9B7E50-AA16-11D0-A8C5-00A0C921A4D2}</guid>
  </entry>
  <entry>
    <record>3967</record>
    <time>2025/12/04 15:39:17.365</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RazorPackage]</description>
    <guid>{13B72F58-279E-49E0-A56D-296BE02F0805}</guid>
  </entry>
  <entry>
    <record>3968</record>
    <time>2025/12/04 15:39:18.164</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RestPackage]</description>
    <guid>{70A33EE9-3617-487C-A918-66212BC6B2EC}</guid>
  </entry>
  <entry>
    <record>3969</record>
    <time>2025/12/04 15:39:18.212</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RestPackage]</description>
    <guid>{70A33EE9-3617-487C-A918-66212BC6B2EC}</guid>
  </entry>
  <entry>
    <record>3970</record>
    <time>2025/12/04 15:39:18.214</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>3971</record>
    <time>2025/12/04 15:39:19.171</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>3972</record>
    <time>2025/12/04 15:39:19.326</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3973</record>
    <time>2025/12/04 15:39:19.350</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3974</record>
    <time>2025/12/04 15:39:19.553</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlDesignerPackage]</description>
    <guid>{512BE089-83EC-4CC6-8483-CF16565AE209}</guid>
  </entry>
  <entry>
    <record>3975</record>
    <time>2025/12/04 15:39:19.556</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [XamlLanguagePackage]</description>
    <guid>{2EF1EC52-C8BF-4FE0-8ECE-BA9C0D5D1603}</guid>
  </entry>
  <entry>
    <record>3976</record>
    <time>2025/12/04 15:39:19.694</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3977</record>
    <time>2025/12/04 15:39:19.695</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Undo Package]</description>
    <guid>{1D76B2E0-F11B-11D2-AFC3-00105A9991EF}</guid>
  </entry>
  <entry>
    <record>3978</record>
    <time>2025/12/04 15:39:19.780</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>3979</record>
    <time>2025/12/04 15:39:19.874</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual Studio XML Editor Package]</description>
    <guid>{87569308-4813-40A0-9CD0-D7A30838CA3F}</guid>
  </entry>
  <entry>
    <record>3980</record>
    <time>2025/12/04 15:39:20.294</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SqlStudio Editor Package]</description>
    <guid>{FEF13793-C947-4FB1-B864-C9F0BE9D9CF6}</guid>
  </entry>
  <entry>
    <record>3981</record>
    <time>2025/12/04 15:39:20.439</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SqlStudio Editor Package]</description>
    <guid>{FEF13793-C947-4FB1-B864-C9F0BE9D9CF6}</guid>
  </entry>
  <entry>
    <record>3982</record>
    <time>2025/12/04 15:39:20.449</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [EmbeddedPackage]</description>
    <guid>{CCFC100E-C8FD-4F9D-ABE1-ABB3F2240048}</guid>
  </entry>
  <entry>
    <record>3983</record>
    <time>2025/12/04 15:39:20.703</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>3984</record>
    <time>2025/12/04 15:39:20.703</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>3985</record>
    <time>2025/12/04 15:39:20.786</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [EmbeddedPackage]</description>
    <guid>{CCFC100E-C8FD-4F9D-ABE1-ABB3F2240048}</guid>
  </entry>
  <entry>
    <record>3986</record>
    <time>2025/12/04 15:39:20.822</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskRunnerExplorerVsPackage]</description>
    <guid>{B483C4E7-43A6-4F7B-A9A1-79E2C5D12148}</guid>
  </entry>
  <entry>
    <record>3987</record>
    <time>2025/12/04 15:39:21.047</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskRunnerExplorerVsPackage]</description>
    <guid>{B483C4E7-43A6-4F7B-A9A1-79E2C5D12148}</guid>
  </entry>
  <entry>
    <record>3988</record>
    <time>2025/12/04 15:39:21.068</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TerminalWindowPackage]</description>
    <guid>{E632CA91-B170-401A-AC2E-6B83FFDC3C10}</guid>
  </entry>
  <entry>
    <record>3989</record>
    <time>2025/12/04 15:39:21.124</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>3990</record>
    <time>2025/12/04 15:39:21.349</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.2)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>3991</record>
    <time>2025/12/04 15:39:21.354</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.1)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>3992</record>
    <time>2025/12/04 15:39:21.442</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>3993</record>
    <time>2025/12/04 15:39:21.628</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; from Process denied because the service is only exposed RemoteExclusiveClient, LiveShareGuest.</description>
  </entry>
  <entry>
    <record>3994</record>
    <time>2025/12/04 15:39:21.628</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Shell.Internal.SettingsManager (1.0)&quot; is declined: ServiceAudienceMismatch.</description>
  </entry>
  <entry>
    <record>3995</record>
    <time>2025/12/04 15:39:21.846</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TerminalWindowPackage]</description>
    <guid>{E632CA91-B170-401A-AC2E-6B83FFDC3C10}</guid>
  </entry>
  <entry>
    <record>3996</record>
    <time>2025/12/04 15:39:21.901</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.WebClient.Diagnostics.HtmlToolHost.Package.HtmlToolHostPackage]</description>
    <guid>{B66F381B-48DE-4C10-B71B-EF9A2A808D85}</guid>
  </entry>
  <entry>
    <record>3997</record>
    <time>2025/12/04 15:39:21.965</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [WebDiagnosticsAttach Package]</description>
    <guid>{B64A8572-DE00-483C-90ED-E61EB7FEA9BF}</guid>
  </entry>
  <entry>
    <record>3998</record>
    <time>2025/12/04 15:39:21.965</time>
    <type>Error</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{B64A8572-DE00-483C-90ED-E61EB7FEA9BF}</guid>
    <hr>0x800a006f</hr>
  </entry>
  <entry>
    <record>3999</record>
    <time>2025/12/04 15:39:21.966</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [WebDiagnosticsAttach Package]</description>
    <guid>{B64A8572-DE00-483C-90ED-E61EB7FEA9BF}</guid>
  </entry>
  <entry>
    <record>4000</record>
    <time>2025/12/04 15:39:21.985</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.WebClient.Diagnostics.HtmlToolHost.Package.HtmlToolHostPackage]</description>
    <guid>{B66F381B-48DE-4C10-B71B-EF9A2A808D85}</guid>
  </entry>
  <entry>
    <record>4001</record>
    <time>2025/12/04 15:39:22.048</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>Starting Dynamic Data Refresh</description>
  </entry>
  <entry>
    <record>4002</record>
    <time>2025/12/04 15:39:22.165</time>
    <type>Error</type>
    <source>UnifiedSettings</source>
    <description>Failed to load package string with id f47a268a-bba9-442d-ac61-eef97f906458 and resource id #1002</description>
  </entry>
  <entry>
    <record>4003</record>
    <time>2025/12/04 15:39:22.166</time>
    <type>Error</type>
    <source>UnifiedSettings</source>
    <description>Failed to load package string with id 5C6B696A-FF72-4D26-B8E4-09BB7C9A8EB2 and resource id #113</description>
  </entry>
  <entry>
    <record>4004</record>
    <time>2025/12/04 15:39:23.090</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UpdateIdentityConfigurationPackage]</description>
    <guid>{30ABF612-0CD4-48FE-81A8-2CD0F75ACD45}</guid>
  </entry>
  <entry>
    <record>4005</record>
    <time>2025/12/04 15:39:23.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UpdateIdentityConfigurationPackage]</description>
    <guid>{30ABF612-0CD4-48FE-81A8-2CD0F75ACD45}</guid>
  </entry>
  <entry>
    <record>4006</record>
    <time>2025/12/04 15:39:23.235</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Destroying Main Window</description>
  </entry>
  <entry>
    <record>4007</record>
    <time>2025/12/04 15:39:23.530</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;Microsoft.VisualStudio.ContextRuleMonitorService (0.1)&quot; service failed. ---&gt; System.Runtime.InteropServices.COMException: Error HRESULT E_FAIL has been returned from a call to a COM component.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.Interop.IVsShell7.LoadPackageAsync(Guid&amp; guidPackage)&#x000D;&#x000A;   at Microsoft.VisualStudio.Services.VSGlobalBrokeredServiceContainer.PackageServiceRegistration.&lt;LoadProfferingPackageAsync&gt;d__4.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;LoadProfferingPackageAsync&gt;d__25.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;TryGetProfferingSourceAsync&gt;d__24.MoveNext()&#x000D;&#x000A;--- End of stack trace from previous location where exception was thrown ---&#x000D;&#x000A;   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()&#x000D;&#x000A;   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---</description>
  </entry>
  <entry>
    <record>4008</record>
    <time>2025/12/04 15:39:23.976</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.2)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>4009</record>
    <time>2025/12/04 15:39:23.978</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Internal.ExtensibilityDiagnosticsService (0.1)&quot; is declined: NotLocallyRegistered.</description>
  </entry>
  <entry>
    <record>4010</record>
    <time>2025/12/04 15:39:24.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>AppId stopped registry detouring</description>
  </entry>
  <entry>
    <record>4011</record>
    <time>2025/12/04 15:39:24.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Shutting down pkgdef registry</description>
  </entry>
  <entry>
    <record>4012</record>
    <time>2025/12/04 15:39:24.917</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDef registry shutdown complete</description>
  </entry>
</activity>
