<?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>2026/03/31 11:29:05.903</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Visual Studio 2026 version: 18.0.11528.56</description>
  </entry>
  <entry>
    <record>2</record>
    <time>2026/03/31 11:29:05.903</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Log ID</description>
    <guid>{54EF0441-C83B-4BBC-A994-05719E9F8963}</guid>
  </entry>
  <entry>
    <record>3</record>
    <time>2026/03/31 11:29:05.903</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in isolation mode.</description>
  </entry>
  <entry>
    <record>4</record>
    <time>2026/03/31 11:29:05.905</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Looking for master PkgDef file</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\master.pkgdef</path>
  </entry>
  <entry>
    <record>5</record>
    <time>2026/03/31 11:29:05.906</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Creating PkgDefCacheNonVolatile</description>
  </entry>
  <entry>
    <record>6</record>
    <time>2026/03/31 11:29:05.906</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache flags</description>
    <hr>0x00013801</hr>
  </entry>
  <entry>
    <record>7</record>
    <time>2026/03/31 11:29:05.915</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Double-checking master pkgdef file</description>
  </entry>
  <entry>
    <record>8</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement initialized</description>
  </entry>
  <entry>
    <record>9</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>RootFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\</path>
  </entry>
  <entry>
    <record>10</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ShellFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\</path>
  </entry>
  <entry>
    <record>11</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\CommonExtensions;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\devenv.admin.pkgdef</path>
  </entry>
  <entry>
    <record>12</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ImageManifestSearchPath</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\Extensions;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\CommonExtensions;C:\Users\devesh.patel\AppData\Local\Microsoft\VisualStudio\18.0_58424a90Exp\Extensions</path>
  </entry>
  <entry>
    <record>13</record>
    <time>2026/03/31 11:29:05.916</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ApplicationExtensionsFolder</description>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\Extensions</path>
  </entry>
  <entry>
    <record>14</record>
    <time>2026/03/31 11:29:05.916</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>2026/03/31 11:29:05.928</time>
    <type>Information</type>
    <source>Microsoft Visual Studio Appid Stub</source>
    <description>Application launch on system with DPI X/Y: 96/96</description>
  </entry>
  <entry>
    <record>16</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Could not find ConfigurationChanged timestamp.</description>
    <hr>0x80070002</hr>
  </entry>
  <entry>
    <record>17</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: timestamps are current.</description>
  </entry>
  <entry>
    <record>18</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Could not find ConfigurationChanged timestamp.</description>
    <hr>0x80070002</hr>
  </entry>
  <entry>
    <record>19</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefCache fast check: timestamps are current.</description>
  </entry>
  <entry>
    <record>20</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>CPkgDefCacheNonVolatileBase: PkgDef cache is current.</description>
  </entry>
  <entry>
    <record>21</record>
    <time>2026/03/31 11:29:05.929</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDefManagement startup complete</description>
  </entry>
  <entry>
    <record>22</record>
    <time>2026/03/31 11:29:05.930</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Configuration file to be used for CLR initialization</description>
    <path>C:\Users\devesh.patel\AppData\Local\Microsoft\VisualStudio\18.0_58424a90Exp\devenv.exe.config</path>
  </entry>
  <entry>
    <record>23</record>
    <time>2026/03/31 11:29:05.930</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>AppId starting registry detouring</description>
  </entry>
  <entry>
    <record>24</record>
    <time>2026/03/31 11:29:06.094</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskSchedulerPackage]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>25</record>
    <time>2026/03/31 11:29:06.095</time>
    <type>Information</type>
    <source>Package Framework</source>
    <description>Initialized ServiceProvider.GlobalProvider from SetSite.</description>
  </entry>
  <entry>
    <record>26</record>
    <time>2026/03/31 11:29:06.096</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskSchedulerPackage]</description>
    <guid>{00CD9DDA-7350-457C-A240-71BD667FC4DE}</guid>
  </entry>
  <entry>
    <record>27</record>
    <time>2026/03/31 11:29:06.099</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [AsyncQueryServicePackage]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>28</record>
    <time>2026/03/31 11:29:06.099</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [AsyncQueryServicePackage]</description>
    <guid>{DD7B74B5-C1F9-411A-B22E-5E711592BC6B}</guid>
  </entry>
  <entry>
    <record>29</record>
    <time>2026/03/31 11:29:06.101</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [BackgroundInitiailizationSafetyCheckerPackage]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>30</record>
    <time>2026/03/31 11:29:06.102</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [BackgroundInitiailizationSafetyCheckerPackage]</description>
    <guid>{81FCDE70-141B-4CEA-91D1-D97784D1FD46}</guid>
  </entry>
  <entry>
    <record>31</record>
    <time>2026/03/31 11:29:06.110</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DelayAttributionPackage]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>32</record>
    <time>2026/03/31 11:29:06.110</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DelayAttributionPackage]</description>
    <guid>{1B12A056-2B3E-447B-BA98-DCD9820F394E}</guid>
  </entry>
  <entry>
    <record>33</record>
    <time>2026/03/31 11:29:06.111</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>34</record>
    <time>2026/03/31 11:29:06.112</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSTelemetryPackage]</description>
    <guid>{54BEFE64-0558-4D8C-9FD5-AB0B54733B08}</guid>
  </entry>
  <entry>
    <record>35</record>
    <time>2026/03/31 11:29:06.120</time>
    <type>Information</type>
    <source>VSTelemetryService</source>
    <description>Telemetry session created with session ID: 7507de5c-b105-49f7-a5ec-6777f3014721</description>
  </entry>
  <entry>
    <record>36</record>
    <time>2026/03/31 11:29:06.122</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RemoteSettingsPackage]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>37</record>
    <time>2026/03/31 11:29:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeatureFlagsPackage]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>38</record>
    <time>2026/03/31 11:29:06.123</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>39</record>
    <time>2026/03/31 11:29:06.125</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>40</record>
    <time>2026/03/31 11:29:06.125</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>41</record>
    <time>2026/03/31 11:29:06.125</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VSExperimentationPackage]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>42</record>
    <time>2026/03/31 11:29:06.125</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ShellServicePackage]</description>
    <guid>{8E6BFBF2-3E22-4DCF-9329-480F6195C42A}</guid>
  </entry>
  <entry>
    <record>43</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SettingsPackage]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>44</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeatureFlagsPackage]</description>
    <guid>{7AC58323-1325-44DB-A4D5-2823A1426A13}</guid>
  </entry>
  <entry>
    <record>45</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CommandsClientPackage]</description>
    <guid>{10CA1B00-C23A-4B59-BCE7-512501F4E68A}</guid>
  </entry>
  <entry>
    <record>46</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ImageServicePackage]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>47</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IdentityServicePackage]</description>
    <guid>{C35E0ABB-7F17-447F-B054-7B73D6D7581D}</guid>
  </entry>
  <entry>
    <record>48</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>49</record>
    <time>2026/03/31 11:29:06.126</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UnifiedSettingsPackage]</description>
    <guid>{CB9107B5-6429-4C8A-B20B-1258255E59D0}</guid>
  </entry>
  <entry>
    <record>50</record>
    <time>2026/03/31 11:29:06.127</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [PrimeMainWindowPackage]</description>
    <guid>{83102DF7-BCFA-4A8D-ADF4-72035AEF946C}</guid>
  </entry>
  <entry>
    <record>51</record>
    <time>2026/03/31 11:29:06.127</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>52</record>
    <time>2026/03/31 11:29:06.129</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ImageServicePackage]</description>
    <guid>{1491E936-6FFE-474E-8371-30E5920D8FDD}</guid>
  </entry>
  <entry>
    <record>53</record>
    <time>2026/03/31 11:29:06.129</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VSExperimentationPackage]</description>
    <guid>{C3C7E24F-26F7-49D8-A1D6-A9C4ADCD9BC2}</guid>
  </entry>
  <entry>
    <record>54</record>
    <time>2026/03/31 11:29:06.132</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SolutionPackage]</description>
    <guid>{ABCD7800-550B-4E0B-AD0B-84418335FC9A}</guid>
  </entry>
  <entry>
    <record>55</record>
    <time>2026/03/31 11:29:06.140</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CVsShellPackage]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>56</record>
    <time>2026/03/31 11:29:06.141</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GelFactoryPackage]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>57</record>
    <time>2026/03/31 11:29:06.141</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GelFactoryPackage]</description>
    <guid>{696CF608-2182-4AA8-9136-753435711F82}</guid>
  </entry>
  <entry>
    <record>58</record>
    <time>2026/03/31 11:29:06.141</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CVsShellPackage]</description>
    <guid>{DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}</guid>
  </entry>
  <entry>
    <record>59</record>
    <time>2026/03/31 11:29:06.144</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [HostPackage]</description>
    <guid>{49D12072-378B-4FFA-A09E-40E0B5D097CC}</guid>
  </entry>
  <entry>
    <record>60</record>
    <time>2026/03/31 11:29:06.156</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ServiceBrokerPackage]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>61</record>
    <time>2026/03/31 11:29:06.156</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ServiceBrokerPackage]</description>
    <guid>{1F4FDAE3-7BD6-4D0C-B8D9-51AD3C52922E}</guid>
  </entry>
  <entry>
    <record>62</record>
    <time>2026/03/31 11:29:06.169</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RemoteSettingsPackage]</description>
    <guid>{0B9FF418-9DFC-4C6B-A4C6-7F64F3F66F27}</guid>
  </entry>
  <entry>
    <record>63</record>
    <time>2026/03/31 11:29:06.196</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UnifiedSettingsPackage]</description>
    <guid>{CB9107B5-6429-4C8A-B20B-1258255E59D0}</guid>
  </entry>
  <entry>
    <record>64</record>
    <time>2026/03/31 11:29:06.203</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.LanguageServer.ContainedLanguage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\18\professional\common7\ide\commonextensions\microsoft\typescript\Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll</path>
  </entry>
  <entry>
    <record>65</record>
    <time>2026/03/31 11:29:06.205</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.AspNetCore.Razor.ExternalAccess.LegacyEditor, Version=10.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\18\professional\common7\ide\extensions\microsoft\web tools\languages\Razor\v4.0\Microsoft.WebTools.Languages.Razor.Core.dll</path>
  </entry>
  <entry>
    <record>66</record>
    <time>2026/03/31 11:29:06.208</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Xamarin.VisualStudio.Interfaces, Version=18.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\18\professional\common7\ide\commonextensions\microsoft\xamldiagnostics\Microsoft.VisualStudio.DesignTools.Diagnostics.dll</path>
  </entry>
  <entry>
    <record>67</record>
    <time>2026/03/31 11:29:06.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [WindowManagementPackage]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>68</record>
    <time>2026/03/31 11:29:06.208</time>
    <type>Error</type>
    <source>Microsoft.VisualStudio.ComponentModelHost.VsShellComponentModelHost</source>
    <description>Still unable to load MEF component DLL: Could not load file or assembly &apos;Microsoft.VisualStudio.LanguageServer.ContainedLanguage, Version=10.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60&apos; or one of its dependencies. The system cannot find the file specified.</description>
    <path>c:\program files\microsoft visual studio\18\professional\common7\ide\extensions\microsoft\web tools\languages\Microsoft.WebTools.Languages.LanguageServer.Delegation.dll</path>
  </entry>
  <entry>
    <record>69</record>
    <time>2026/03/31 11:29:06.223</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [PrimeMainWindowPackage]</description>
    <guid>{83102DF7-BCFA-4A8D-ADF4-72035AEF946C}</guid>
  </entry>
  <entry>
    <record>70</record>
    <time>2026/03/31 11:29:06.226</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [WindowManagementPackage]</description>
    <guid>{5E56B3DB-7964-4588-8D49-D3523AB7BDB9}</guid>
  </entry>
  <entry>
    <record>71</record>
    <time>2026/03/31 11:29:06.231</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CVSLogPackage]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>72</record>
    <time>2026/03/31 11:29:06.233</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SettingsPackage]</description>
    <guid>{A2863A10-2269-4D3F-9E38-149C15926E1D}</guid>
  </entry>
  <entry>
    <record>73</record>
    <time>2026/03/31 11:29:06.234</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\18\Professional\Common7\IDE*\VsLogUI.dll</path>
  </entry>
  <entry>
    <record>74</record>
    <time>2026/03/31 11:29:06.237</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CVSLogPackage]</description>
    <guid>{2DC9DAA9-7F2D-11D2-9BFC-00C04F9901D1}</guid>
  </entry>
  <entry>
    <record>75</record>
    <time>2026/03/31 11:29:06.240</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UIContextRulesPackage]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>76</record>
    <time>2026/03/31 11:29:06.243</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>77</record>
    <time>2026/03/31 11:29:06.243</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>78</record>
    <time>2026/03/31 11:29:06.243</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Menu UIContext rule&apos; for UI context 0c4f937e-e5ec-463d-9f09-46733c63b4a8.</description>
  </entry>
  <entry>
    <record>79</record>
    <time>2026/03/31 11:29:06.243</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>80</record>
    <time>2026/03/31 11:29:06.243</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>81</record>
    <time>2026/03/31 11:29:06.243</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>82</record>
    <time>2026/03/31 11:29:06.244</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>83</record>
    <time>2026/03/31 11:29:06.244</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>84</record>
    <time>2026/03/31 11:29:06.244</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>85</record>
    <time>2026/03/31 11:29:06.245</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>86</record>
    <time>2026/03/31 11:29:06.245</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>87</record>
    <time>2026/03/31 11:29:06.245</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>88</record>
    <time>2026/03/31 11:29:06.245</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>89</record>
    <time>2026/03/31 11:29:06.245</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>90</record>
    <time>2026/03/31 11:29:06.245</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>91</record>
    <time>2026/03/31 11:29:06.246</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>92</record>
    <time>2026/03/31 11:29:06.246</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>93</record>
    <time>2026/03/31 11:29:06.246</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>94</record>
    <time>2026/03/31 11:29:06.246</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>95</record>
    <time>2026/03/31 11:29:06.246</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>96</record>
    <time>2026/03/31 11:29:06.246</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Loaded projects context&apos; for UI context 51865ae6-ec33-4181-893a-277f4d5088b6.</description>
  </entry>
  <entry>
    <record>97</record>
    <time>2026/03/31 11:29:06.246</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>98</record>
    <time>2026/03/31 11:29:06.247</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>99</record>
    <time>2026/03/31 11:29:06.247</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>100</record>
    <time>2026/03/31 11:29:06.247</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>101</record>
    <time>2026/03/31 11:29:06.247</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>102</record>
    <time>2026/03/31 11:29:06.247</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>103</record>
    <time>2026/03/31 11:29:06.247</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>104</record>
    <time>2026/03/31 11:29:06.247</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>105</record>
    <time>2026/03/31 11:29:06.247</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>106</record>
    <time>2026/03/31 11:29:06.248</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>107</record>
    <time>2026/03/31 11:29:06.268</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>108</record>
    <time>2026/03/31 11:29:06.268</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>109</record>
    <time>2026/03/31 11:29:06.268</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>110</record>
    <time>2026/03/31 11:29:06.269</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>111</record>
    <time>2026/03/31 11:29:06.269</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>112</record>
    <time>2026/03/31 11:29:06.269</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>113</record>
    <time>2026/03/31 11:29:06.270</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>114</record>
    <time>2026/03/31 11:29:06.270</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>115</record>
    <time>2026/03/31 11:29:06.270</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>116</record>
    <time>2026/03/31 11:29:06.273</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;UICONTEXT_DataSourceWindowSupported&apos; for UI context 95c314c4-660b-4627-9f82-1baf1c764bbf.</description>
  </entry>
  <entry>
    <record>117</record>
    <time>2026/03/31 11:29:06.274</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;VS Main Window Visible&apos; for UI context 9a76d4dd-497c-47d5-9c3e-5823d2da5b81.</description>
  </entry>
  <entry>
    <record>118</record>
    <time>2026/03/31 11:29:06.274</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>119</record>
    <time>2026/03/31 11:29:06.274</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitHub Copilot Upgrade Package Context&apos; for UI context 9ed1ab71-4222-4a6d-a590-76b6f4bada1d.</description>
  </entry>
  <entry>
    <record>120</record>
    <time>2026/03/31 11:29:06.274</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>121</record>
    <time>2026/03/31 11:29:06.274</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>122</record>
    <time>2026/03/31 11:29:06.274</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>123</record>
    <time>2026/03/31 11:29:06.275</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitCollaborationPackageActivation&apos; for UI context ade07bab-b689-492c-bc2c-d190b14dae2e.</description>
  </entry>
  <entry>
    <record>124</record>
    <time>2026/03/31 11:29:06.275</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>125</record>
    <time>2026/03/31 11:29:06.275</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [IdentityServicePackage]</description>
    <guid>{C35E0ABB-7F17-447F-B054-7B73D6D7581D}</guid>
  </entry>
  <entry>
    <record>126</record>
    <time>2026/03/31 11:29:06.275</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>127</record>
    <time>2026/03/31 11:29:06.275</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>128</record>
    <time>2026/03/31 11:29:06.276</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;unnamed&apos; for UI context b806a197-c2c8-47eb-beb3-4b3d00d834b5.</description>
  </entry>
  <entry>
    <record>129</record>
    <time>2026/03/31 11:29:06.276</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>130</record>
    <time>2026/03/31 11:29:06.276</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>131</record>
    <time>2026/03/31 11:29:06.277</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>132</record>
    <time>2026/03/31 11:29:06.277</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;(ActiveProject Has &apos;Package And Publish&apos; menu or is App Container or is MAUI)&apos; for UI context beee6818-689a-44d3-bbc4-32e9efe3baa2.</description>
  </entry>
  <entry>
    <record>133</record>
    <time>2026/03/31 11:29:06.277</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>134</record>
    <time>2026/03/31 11:29:06.277</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>135</record>
    <time>2026/03/31 11:29:06.277</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>136</record>
    <time>2026/03/31 11:29:06.277</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>137</record>
    <time>2026/03/31 11:29:06.278</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>138</record>
    <time>2026/03/31 11:29:06.278</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CoverageWindowLoad&apos; for UI context d0562418-e3be-443c-8122-5d2fc82e3b34.</description>
  </entry>
  <entry>
    <record>139</record>
    <time>2026/03/31 11:29:06.278</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>140</record>
    <time>2026/03/31 11:29:06.278</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;GitCollaborationPackageActivation&apos; for UI context d97e3df7-11c5-4326-820f-ff80c6cac262.</description>
  </entry>
  <entry>
    <record>141</record>
    <time>2026/03/31 11:29:06.278</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>142</record>
    <time>2026/03/31 11:29:06.278</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>143</record>
    <time>2026/03/31 11:29:06.278</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>144</record>
    <time>2026/03/31 11:29:06.279</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>145</record>
    <time>2026/03/31 11:29:06.279</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>146</record>
    <time>2026/03/31 11:29:06.279</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;CollaborationPackageActivation&apos; for UI context e406cf35-8143-43e8-b02c-34e2649cf66f.</description>
  </entry>
  <entry>
    <record>147</record>
    <time>2026/03/31 11:29:06.279</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>148</record>
    <time>2026/03/31 11:29:06.279</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>149</record>
    <time>2026/03/31 11:29:06.279</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>150</record>
    <time>2026/03/31 11:29:06.279</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>151</record>
    <time>2026/03/31 11:29:06.280</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>152</record>
    <time>2026/03/31 11:29:06.280</time>
    <type>Warning</type>
    <source>UI context rules</source>
    <description>The parameter &apos;ConnectionState:Remote&apos; for the term &apos;ConnectionRemote&apos; in UI context fb2beacd-64bb-4cc3-aa25-9be20c9b15df is not one of the recognized forms. This term will be ignored.</description>
  </entry>
  <entry>
    <record>153</record>
    <time>2026/03/31 11:29:06.280</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>154</record>
    <time>2026/03/31 11:29:06.280</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>155</record>
    <time>2026/03/31 11:29:06.280</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UIContextRulesPackage]</description>
    <guid>{EFAEF2D3-8BDB-4D78-B3EB-B55E44203E80}</guid>
  </entry>
  <entry>
    <record>156</record>
    <time>2026/03/31 11:29:06.280</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>157</record>
    <time>2026/03/31 11:29:06.296</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [EnvironmentOptionsPackage]</description>
    <guid>{D16083E9-47D6-4842-96CD-4CB314838942}</guid>
  </entry>
  <entry>
    <record>158</record>
    <time>2026/03/31 11:29:06.296</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [EnvironmentOptionsPackage]</description>
    <guid>{D16083E9-47D6-4842-96CD-4CB314838942}</guid>
  </entry>
  <entry>
    <record>159</record>
    <time>2026/03/31 11:29:06.297</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionUpdater.Update] Start: Context=Composition</description>
  </entry>
  <entry>
    <record>160</record>
    <time>2026/03/31 11:29:06.300</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionBuilder.InitializeSettings] Start: SettingsCount=1583</description>
  </entry>
  <entry>
    <record>161</record>
    <time>2026/03/31 11:29:06.303</time>
    <type>Information</type>
    <source>Unified Settings</source>
    <description>[DefinitionCollectionBuilder.InitializeCategories] Start: CategoriesCount=318</description>
  </entry>
  <entry>
    <record>162</record>
    <time>2026/03/31 11:29:06.310</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>163</record>
    <time>2026/03/31 11:29:06.315</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ProjectAndSolutionOptionsPackage]</description>
    <guid>{4A129BDA-3F28-4511-9F20-1F1FE73D38F7}</guid>
  </entry>
  <entry>
    <record>164</record>
    <time>2026/03/31 11:29:06.315</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ProjectAndSolutionOptionsPackage]</description>
    <guid>{4A129BDA-3F28-4511-9F20-1F1FE73D38F7}</guid>
  </entry>
  <entry>
    <record>165</record>
    <time>2026/03/31 11:29:06.349</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CommonUIPackage]</description>
    <guid>{F384B236-B4A9-401B-BC58-3106E3ACA3EC}</guid>
  </entry>
  <entry>
    <record>166</record>
    <time>2026/03/31 11:29:06.350</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CommonUIPackage]</description>
    <guid>{F384B236-B4A9-401B-BC58-3106E3ACA3EC}</guid>
  </entry>
  <entry>
    <record>167</record>
    <time>2026/03/31 11:29:06.499</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>168</record>
    <time>2026/03/31 11:29:06.651</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>169</record>
    <time>2026/03/31 11:29:06.652</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>170</record>
    <time>2026/03/31 11:29:06.653</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DiagnosticsPackage]</description>
    <guid>{7D1A598C-4F97-4A83-A178-6B1BFCC7061E}</guid>
  </entry>
  <entry>
    <record>171</record>
    <time>2026/03/31 11:29:06.655</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DiagnosticsPackage]</description>
    <guid>{7D1A598C-4F97-4A83-A178-6B1BFCC7061E}</guid>
  </entry>
  <entry>
    <record>172</record>
    <time>2026/03/31 11:29:06.657</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CResponseTimeTracerPackage]</description>
    <guid>{B466091B-94AD-416F-BB8A-42534D423A67}</guid>
  </entry>
  <entry>
    <record>173</record>
    <time>2026/03/31 11:29:06.661</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CResponseTimeTracerPackage]</description>
    <guid>{B466091B-94AD-416F-BB8A-42534D423A67}</guid>
  </entry>
  <entry>
    <record>174</record>
    <time>2026/03/31 11:29:06.664</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CVsScciPackage]</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>175</record>
    <time>2026/03/31 11:29:06.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CVsScciPackage]</description>
    <guid>{53544C4D-E3F8-4AA0-8195-8A8D16019423}</guid>
  </entry>
  <entry>
    <record>176</record>
    <time>2026/03/31 11:29:06.666</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeatureRegistryPackage]</description>
    <guid>{D4C6B5F0-210D-4BFB-8C08-086F78C0B907}</guid>
  </entry>
  <entry>
    <record>177</record>
    <time>2026/03/31 11:29:06.667</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dynamically generated rule for conditional feature {27a2baad-4bb1-4ae5-b72c-bbff54ae9e28}&apos; for UI context 27a2baad-4bb1-4ae5-b72c-bbff54ae9e28.</description>
  </entry>
  <entry>
    <record>178</record>
    <time>2026/03/31 11:29:06.667</time>
    <type>Information</type>
    <source>UI context rules</source>
    <description>Created rule &apos;Dynamically generated rule for conditional feature {e3dce4e2-7057-4206-a700-214e05c33743}&apos; for UI context e3dce4e2-7057-4206-a700-214e05c33743.</description>
  </entry>
  <entry>
    <record>179</record>
    <time>2026/03/31 11:29:06.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeatureRegistryPackage]</description>
    <guid>{D4C6B5F0-210D-4BFB-8C08-086F78C0B907}</guid>
  </entry>
  <entry>
    <record>180</record>
    <time>2026/03/31 11:29:06.678</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ConversationsUIPackage]</description>
    <guid>{B1B98B90-307B-42EC-8931-03D92F5E13CD}</guid>
  </entry>
  <entry>
    <record>181</record>
    <time>2026/03/31 11:29:06.699</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ConversationsUIPackage]</description>
    <guid>{B1B98B90-307B-42EC-8931-03D92F5E13CD}</guid>
  </entry>
  <entry>
    <record>182</record>
    <time>2026/03/31 11:29:06.853</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>183</record>
    <time>2026/03/31 11:29:06.853</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [RunningDocumentTablePackage]</description>
    <guid>{496217DB-9B0E-48F2-8035-AA2F9A314600}</guid>
  </entry>
  <entry>
    <record>184</record>
    <time>2026/03/31 11:29:06.859</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CDevEnvPackage]</description>
    <guid>{715F10EB-9E99-11D2-BFC2-00C04F990235}</guid>
  </entry>
  <entry>
    <record>185</record>
    <time>2026/03/31 11:29:06.859</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CDevEnvPackage]</description>
    <guid>{715F10EB-9E99-11D2-BFC2-00C04F990235}</guid>
  </entry>
  <entry>
    <record>186</record>
    <time>2026/03/31 11:29:06.869</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>ProductID: (Unavailable)</description>
  </entry>
  <entry>
    <record>187</record>
    <time>2026/03/31 11:29:06.869</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Microsoft Data Access Version: 6.3.9600.16384</description>
  </entry>
  <entry>
    <record>188</record>
    <time>2026/03/31 11:29:06.869</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Application Name: Microsoft Visual Studio</description>
  </entry>
  <entry>
    <record>189</record>
    <time>2026/03/31 11:29:06.869</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>SKU Edition: Professional</description>
  </entry>
  <entry>
    <record>190</record>
    <time>2026/03/31 11:29:06.881</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ContextRuleMonitorPackage]</description>
    <guid>{8AA75F1E-7410-4EFE-82AA-0FEA79A0A042}</guid>
  </entry>
  <entry>
    <record>191</record>
    <time>2026/03/31 11:29:06.883</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ContextRuleMonitorPackage]</description>
    <guid>{8AA75F1E-7410-4EFE-82AA-0FEA79A0A042}</guid>
  </entry>
  <entry>
    <record>192</record>
    <time>2026/03/31 11:29:06.884</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileChangePackage]</description>
    <guid>{4825B9A3-93E2-4327-9044-41F72EE7E5C9}</guid>
  </entry>
  <entry>
    <record>193</record>
    <time>2026/03/31 11:29:06.896</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>194</record>
    <time>2026/03/31 11:29:06.899</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PERF: Shell start. 1087 ms</description>
  </entry>
  <entry>
    <record>195</record>
    <time>2026/03/31 11:29:06.906</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ExtensionManagementPackage]</description>
    <guid>{5DD582D8-4665-49E4-B74D-D376FB4CE60B}</guid>
  </entry>
  <entry>
    <record>196</record>
    <time>2026/03/31 11:29:06.922</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ExtensionManagementPackage]</description>
    <guid>{5DD582D8-4665-49E4-B74D-D376FB4CE60B}</guid>
  </entry>
  <entry>
    <record>197</record>
    <time>2026/03/31 11:29:06.940</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CrlServicePackage]</description>
    <guid>{CABF0D02-8895-4894-AF75-17C3C2149D07}</guid>
  </entry>
  <entry>
    <record>198</record>
    <time>2026/03/31 11:29:06.946</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CrlServicePackage]</description>
    <guid>{CABF0D02-8895-4894-AF75-17C3C2149D07}</guid>
  </entry>
  <entry>
    <record>199</record>
    <time>2026/03/31 11:29:06.947</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MefServiceBrokerPackage]</description>
    <guid>{95FAA709-2640-4F04-A6B5-657B26D9D494}</guid>
  </entry>
  <entry>
    <record>200</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerBroadcastService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>201</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerBroadcastService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>202</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Editor.TextEditorSynchronizationService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>203</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Editor.RecentEditsContextProvider (0.3)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>204</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>205</record>
    <time>2026/03/31 11:29:06.957</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticManagerService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>206</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Copilot.Chat.Client.Service (0.3)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>207</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticViewerService (1.0)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>208</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Shell.DiagnosticViewerService (1.1)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>209</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Copilot.Interactions (0.3)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>210</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Copilot.TokenManager.Service (0.3)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>211</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Service &apos;Microsoft.VisualStudio.Copilot.CopilotExclusionService (0.3)&apos; has already been registered. Skipping duplicate registration.</description>
  </entry>
  <entry>
    <record>212</record>
    <time>2026/03/31 11:29:06.958</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MefServiceBrokerPackage]</description>
    <guid>{95FAA709-2640-4F04-A6B5-657B26D9D494}</guid>
  </entry>
  <entry>
    <record>213</record>
    <time>2026/03/31 11:29:07.000</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>214</record>
    <time>2026/03/31 11:29:07.000</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>215</record>
    <time>2026/03/31 11:29:07.006</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CTextPackage]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>216</record>
    <time>2026/03/31 11:29:07.013</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CTextPackage]</description>
    <guid>{F5E7E720-1401-11D1-883B-0000F87579D2}</guid>
  </entry>
  <entry>
    <record>217</record>
    <time>2026/03/31 11:29:07.018</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UtilityServiceProfferPackage]</description>
    <guid>{39D5D0CA-A1AC-48AE-8209-B8C48D5A2B6C}</guid>
  </entry>
  <entry>
    <record>218</record>
    <time>2026/03/31 11:29:07.019</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and VSPackage component</description>
  </entry>
  <entry>
    <record>219</record>
    <time>2026/03/31 11:29:07.019</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and VSPackage component</description>
  </entry>
  <entry>
    <record>220</record>
    <time>2026/03/31 11:29:07.019</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>221</record>
    <time>2026/03/31 11:29:07.019</time>
    <type>Information</type>
    <source>Manage Visual Studio Performance</source>
    <description>End execution cost summary for Startup scenario and ToolWindow component</description>
  </entry>
  <entry>
    <record>222</record>
    <time>2026/03/31 11:29:07.019</time>
    <type>Information</type>
    <source>UIDelayNotifications</source>
    <description>UI-delay processor started successfully.</description>
  </entry>
  <entry>
    <record>223</record>
    <time>2026/03/31 11:29:07.025</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>224</record>
    <time>2026/03/31 11:29:07.025</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>225</record>
    <time>2026/03/31 11:29:07.027</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>226</record>
    <time>2026/03/31 11:29:07.027</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>227</record>
    <time>2026/03/31 11:29:07.045</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CopilotHostEnvironmentPackage]</description>
    <guid>{D5510D44-9CD9-44E9-9E3E-77B04C004219}</guid>
  </entry>
  <entry>
    <record>228</record>
    <time>2026/03/31 11:29:07.046</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>229</record>
    <time>2026/03/31 11:29:07.046</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>230</record>
    <time>2026/03/31 11:29:07.048</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>231</record>
    <time>2026/03/31 11:29:07.049</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>232</record>
    <time>2026/03/31 11:29:07.144</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CopilotHostEnvironmentPackage]</description>
    <guid>{D5510D44-9CD9-44E9-9E3E-77B04C004219}</guid>
  </entry>
  <entry>
    <record>233</record>
    <time>2026/03/31 11:29:07.182</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CSettingsObserverPackage]</description>
    <guid>{CDF3513F-B741-452D-8B94-C3F74578C41D}</guid>
  </entry>
  <entry>
    <record>234</record>
    <time>2026/03/31 11:29:07.182</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CSettingsObserverPackage]</description>
    <guid>{CDF3513F-B741-452D-8B94-C3F74578C41D}</guid>
  </entry>
  <entry>
    <record>235</record>
    <time>2026/03/31 11:29:07.195</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;5ec8bc180d014007926374c7005a9220&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>236</record>
    <time>2026/03/31 11:29:07.196</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>237</record>
    <time>2026/03/31 11:29:07.196</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>238</record>
    <time>2026/03/31 11:29:07.197</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 5ec8bc180d014007926374c7005a9220 does not exist.</description>
  </entry>
  <entry>
    <record>239</record>
    <time>2026/03/31 11:29:07.197</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;5ec8bc180d014007926374c7005a9220&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>240</record>
    <time>2026/03/31 11:29:07.198</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;0a0da8c008ac474e9b6c3ceb207d1631&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>241</record>
    <time>2026/03/31 11:29:07.198</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 0a0da8c008ac474e9b6c3ceb207d1631 does not exist.</description>
  </entry>
  <entry>
    <record>242</record>
    <time>2026/03/31 11:29:07.198</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;0a0da8c008ac474e9b6c3ceb207d1631&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>243</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;e3651b862cb84e5aba4de0c1634d71d8&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>244</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: e3651b862cb84e5aba4de0c1634d71d8 does not exist.</description>
  </entry>
  <entry>
    <record>245</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;e3651b862cb84e5aba4de0c1634d71d8&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>246</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;21cdc6af30df4de79adc7c91688a7131&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>247</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 21cdc6af30df4de79adc7c91688a7131 does not exist.</description>
  </entry>
  <entry>
    <record>248</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;21cdc6af30df4de79adc7c91688a7131&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>249</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;de31be463a254113b358ed41bd682014&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>250</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: de31be463a254113b358ed41bd682014 does not exist.</description>
  </entry>
  <entry>
    <record>251</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;de31be463a254113b358ed41bd682014&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>252</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;705cd3b6535848a6a14ccfe64fe7334e&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>253</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 705cd3b6535848a6a14ccfe64fe7334e does not exist.</description>
  </entry>
  <entry>
    <record>254</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;705cd3b6535848a6a14ccfe64fe7334e&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>255</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;7698df983a4a4dd49034ec5e6fe11a5d&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>256</record>
    <time>2026/03/31 11:29:07.199</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 7698df983a4a4dd49034ec5e6fe11a5d does not exist.</description>
  </entry>
  <entry>
    <record>257</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;7698df983a4a4dd49034ec5e6fe11a5d&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>258</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;6cea54318cb14e08bc1a078be17a7f84&apos;, expression=&apos;c0 &amp; c1&apos;, terms=&apos;ActiveProjectCapability:CSharp, ActiveProjectBuildProperty:TargetFrameworkMoniker=[.]NETFramework.*&apos;]</description>
  </entry>
  <entry>
    <record>259</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 6cea54318cb14e08bc1a078be17a7f84 does not exist.</description>
  </entry>
  <entry>
    <record>260</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;6cea54318cb14e08bc1a078be17a7f84&apos;, expression=&apos;c0 &amp; c1&apos;, terms=&apos;ActiveProjectCapability:CSharp, ActiveProjectBuildProperty:TargetFrameworkMoniker=[.]NETFramework.*&apos;]</description>
  </entry>
  <entry>
    <record>261</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;590ed4ff5b304faba15c92d5d88a6cd3&apos;, expression=&apos;c0&apos;, terms=&apos;FeatureFlag:Roslyn.SemanticSearchEnabled&apos;]</description>
  </entry>
  <entry>
    <record>262</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 590ed4ff5b304faba15c92d5d88a6cd3 does not exist.</description>
  </entry>
  <entry>
    <record>263</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;590ed4ff5b304faba15c92d5d88a6cd3&apos;, expression=&apos;c0&apos;, terms=&apos;FeatureFlag:Roslyn.SemanticSearchEnabled&apos;]</description>
  </entry>
  <entry>
    <record>264</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;61f9325d485f49d69399ba06b4cba2cb&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>265</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 61f9325d485f49d69399ba06b4cba2cb does not exist.</description>
  </entry>
  <entry>
    <record>266</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;61f9325d485f49d69399ba06b4cba2cb&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>267</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;cfc9e6ad26bf4080893c11d55bb73084&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>268</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: cfc9e6ad26bf4080893c11d55bb73084 does not exist.</description>
  </entry>
  <entry>
    <record>269</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;cfc9e6ad26bf4080893c11d55bb73084&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>270</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;f2a863171f0a4485be09c2c86ca9f5e4&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>271</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: f2a863171f0a4485be09c2c86ca9f5e4 does not exist.</description>
  </entry>
  <entry>
    <record>272</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;f2a863171f0a4485be09c2c86ca9f5e4&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>273</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;e540429b50974548b347d5c8615c93fa&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>274</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: e540429b50974548b347d5c8615c93fa does not exist.</description>
  </entry>
  <entry>
    <record>275</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;e540429b50974548b347d5c8615c93fa&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>276</record>
    <time>2026/03/31 11:29:07.200</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;0af112f6d8f645bdb96ebc6a3ec77238&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>277</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 0af112f6d8f645bdb96ebc6a3ec77238 does not exist.</description>
  </entry>
  <entry>
    <record>278</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;0af112f6d8f645bdb96ebc6a3ec77238&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>279</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;57c39baac66642c9be86008f387fb901&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>280</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 57c39baac66642c9be86008f387fb901 does not exist.</description>
  </entry>
  <entry>
    <record>281</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;57c39baac66642c9be86008f387fb901&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>282</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;24573118c92745eeb12d5ccdd72a89e8&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>283</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 24573118c92745eeb12d5ccdd72a89e8 does not exist.</description>
  </entry>
  <entry>
    <record>284</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;24573118c92745eeb12d5ccdd72a89e8&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>285</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;9af9a61adc524a1abcc138a6651cb636&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>286</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 9af9a61adc524a1abcc138a6651cb636 does not exist.</description>
  </entry>
  <entry>
    <record>287</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;9af9a61adc524a1abcc138a6651cb636&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>288</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;4690afd1b4f84c0cb606d536450d67ee&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>289</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 4690afd1b4f84c0cb606d536450d67ee does not exist.</description>
  </entry>
  <entry>
    <record>290</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;4690afd1b4f84c0cb606d536450d67ee&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>291</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;8bc7bee135e64100a7b515ccbe1a97d2&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>292</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 8bc7bee135e64100a7b515ccbe1a97d2 does not exist.</description>
  </entry>
  <entry>
    <record>293</record>
    <time>2026/03/31 11:29:07.201</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;8bc7bee135e64100a7b515ccbe1a97d2&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>294</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;c6c41504df84484190c6a838c90168ea&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>295</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: c6c41504df84484190c6a838c90168ea does not exist.</description>
  </entry>
  <entry>
    <record>296</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;c6c41504df84484190c6a838c90168ea&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>297</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;7cea7c99717a40229f2064bc196f65b3&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>298</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 7cea7c99717a40229f2064bc196f65b3 does not exist.</description>
  </entry>
  <entry>
    <record>299</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;7cea7c99717a40229f2064bc196f65b3&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>300</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;6cfd819693f74c42b4e61a6d08692597&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>301</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 6cfd819693f74c42b4e61a6d08692597 does not exist.</description>
  </entry>
  <entry>
    <record>302</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;6cfd819693f74c42b4e61a6d08692597&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>303</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;c581b820517549089e9672ed4774cfeb&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>304</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: c581b820517549089e9672ed4774cfeb does not exist.</description>
  </entry>
  <entry>
    <record>305</record>
    <time>2026/03/31 11:29:07.202</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;c581b820517549089e9672ed4774cfeb&apos;, expression=&apos;c0&apos;, terms=&apos;SolutionState:FullyLoaded&apos;]</description>
  </entry>
  <entry>
    <record>306</record>
    <time>2026/03/31 11:29:07.203</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TWVSBuildToolsPackage]</description>
    <guid>{49B6914F-7DDC-4145-B190-83906AA20B31}</guid>
  </entry>
  <entry>
    <record>307</record>
    <time>2026/03/31 11:29:07.203</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CopilotBrokeredServicePackage]</description>
    <guid>{C1B98BA0-107B-92EC-7931-03D93F5E13CD}</guid>
  </entry>
  <entry>
    <record>308</record>
    <time>2026/03/31 11:29:07.268</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TWVSBuildPackage]</description>
    <guid>{88000EBD-2CB2-42B3-B1AD-E044664E2633}</guid>
  </entry>
  <entry>
    <record>309</record>
    <time>2026/03/31 11:29:07.281</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CopilotBrokeredServicePackage]</description>
    <guid>{C1B98BA0-107B-92EC-7931-03D93F5E13CD}</guid>
  </entry>
  <entry>
    <record>310</record>
    <time>2026/03/31 11:29:07.296</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TWVSBuildPackage]</description>
    <guid>{88000EBD-2CB2-42B3-B1AD-E044664E2633}</guid>
  </entry>
  <entry>
    <record>311</record>
    <time>2026/03/31 11:29:07.296</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Copilot (0.3)&quot; is declined: ServiceFactoryNotProffered.</description>
  </entry>
  <entry>
    <record>312</record>
    <time>2026/03/31 11:29:07.301</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TWVSBuildToolsPackage]</description>
    <guid>{49B6914F-7DDC-4145-B190-83906AA20B31}</guid>
  </entry>
  <entry>
    <record>313</record>
    <time>2026/03/31 11:29:07.364</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TWVSEditorPackage]</description>
    <guid>{39769FAB-FAA7-461E-A321-BD299DD7169C}</guid>
  </entry>
  <entry>
    <record>314</record>
    <time>2026/03/31 11:29:07.387</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TWVSEditorPackage]</description>
    <guid>{39769FAB-FAA7-461E-A321-BD299DD7169C}</guid>
  </entry>
  <entry>
    <record>315</record>
    <time>2026/03/31 11:29:07.387</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TWVSSCMPackage]</description>
    <guid>{55D531BF-08BF-449E-A46A-96916825372E}</guid>
  </entry>
  <entry>
    <record>316</record>
    <time>2026/03/31 11:29:07.409</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TWVSSCMPackage]</description>
    <guid>{55D531BF-08BF-449E-A46A-96916825372E}</guid>
  </entry>
  <entry>
    <record>317</record>
    <time>2026/03/31 11:29:07.410</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccProviderStubPackage]</description>
    <guid>{7FE5C29F-58EC-45F0-AF68-EC00D9ECD138}</guid>
  </entry>
  <entry>
    <record>318</record>
    <time>2026/03/31 11:29:07.429</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SccProviderStubPackage]</description>
    <guid>{7FE5C29F-58EC-45F0-AF68-EC00D9ECD138}</guid>
  </entry>
  <entry>
    <record>319</record>
    <time>2026/03/31 11:29:07.429</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MigrationPackage]</description>
    <guid>{5E9351CC-13DE-4D49-9D1F-A8CD087E505C}</guid>
  </entry>
  <entry>
    <record>320</record>
    <time>2026/03/31 11:29:07.431</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VsLicensingStatePackage]</description>
    <guid>{6B238C39-B163-467E-83DB-A2DEC10459ED}</guid>
  </entry>
  <entry>
    <record>321</record>
    <time>2026/03/31 11:29:07.431</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VsLicensingStatePackage]</description>
    <guid>{6B238C39-B163-467E-83DB-A2DEC10459ED}</guid>
  </entry>
  <entry>
    <record>322</record>
    <time>2026/03/31 11:29:07.435</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [OnlineLicensingManagerPackage]</description>
    <guid>{A5C25D8F-4D74-4924-BD8C-F3C2B860F4EC}</guid>
  </entry>
  <entry>
    <record>323</record>
    <time>2026/03/31 11:29:07.436</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [OnlineLicensingManagerPackage]</description>
    <guid>{A5C25D8F-4D74-4924-BD8C-F3C2B860F4EC}</guid>
  </entry>
  <entry>
    <record>324</record>
    <time>2026/03/31 11:29:07.440</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ConnectedUserPackage]</description>
    <guid>{7F679D93-2EB6-47C9-85EB-F6AD16902662}</guid>
  </entry>
  <entry>
    <record>325</record>
    <time>2026/03/31 11:29:07.441</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ConnectedUserPackage]</description>
    <guid>{7F679D93-2EB6-47C9-85EB-F6AD16902662}</guid>
  </entry>
  <entry>
    <record>326</record>
    <time>2026/03/31 11:29:07.449</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>Manager ServerUri &apos;https://go.microsoft.com/fwlink/?LinkID=661503&apos;</description>
  </entry>
  <entry>
    <record>327</record>
    <time>2026/03/31 11:29:07.451</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CommonIDEPackage]</description>
    <guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid>
  </entry>
  <entry>
    <record>328</record>
    <time>2026/03/31 11:29:07.471</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MigrationPackage]</description>
    <guid>{5E9351CC-13DE-4D49-9D1F-A8CD087E505C}</guid>
  </entry>
  <entry>
    <record>329</record>
    <time>2026/03/31 11:29:07.472</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ImageRegistrationPackage]</description>
    <guid>{F019A060-2752-4884-AA33-EBB9EF87164D}</guid>
  </entry>
  <entry>
    <record>330</record>
    <time>2026/03/31 11:29:07.473</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>331</record>
    <time>2026/03/31 11:29:07.473</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CommonIDEPackage]</description>
    <guid>{6E87CFAD-6C05-4ADF-9CD7-3B7943875B7C}</guid>
  </entry>
  <entry>
    <record>332</record>
    <time>2026/03/31 11:29:07.479</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ImageRegistrationPackage]</description>
    <guid>{F019A060-2752-4884-AA33-EBB9EF87164D}</guid>
  </entry>
  <entry>
    <record>333</record>
    <time>2026/03/31 11:29:07.480</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MaintenanceTaskProcessorPackage]</description>
    <guid>{D614C115-7269-44A9-ABE2-16763CB95155}</guid>
  </entry>
  <entry>
    <record>334</record>
    <time>2026/03/31 11:29:07.482</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MaintenanceTaskProcessorPackage]</description>
    <guid>{D614C115-7269-44A9-ABE2-16763CB95155}</guid>
  </entry>
  <entry>
    <record>335</record>
    <time>2026/03/31 11:29:07.483</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [PromotionsPackage]</description>
    <guid>{B596A79C-0044-4FC4-AAF6-A700B6FDC9ED}</guid>
  </entry>
  <entry>
    <record>336</record>
    <time>2026/03/31 11:29:07.485</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SetupCompositionPackage]</description>
    <guid>{F92174FD-F10D-418B-819A-7433DEA53833}</guid>
  </entry>
  <entry>
    <record>337</record>
    <time>2026/03/31 11:29:07.495</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [PromotionsPackage]</description>
    <guid>{B596A79C-0044-4FC4-AAF6-A700B6FDC9ED}</guid>
  </entry>
  <entry>
    <record>338</record>
    <time>2026/03/31 11:29:07.496</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccDisplayInformationPackage]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>339</record>
    <time>2026/03/31 11:29:07.524</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SccDisplayInformationPackage]</description>
    <guid>{D7BB9305-5804-4F92-9CFE-119F4CB0563B}</guid>
  </entry>
  <entry>
    <record>340</record>
    <time>2026/03/31 11:29:07.526</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [GlobalHubClientPackage]</description>
    <guid>{11AD60FC-6D87-4674-8F88-9ABE79176CBE}</guid>
  </entry>
  <entry>
    <record>341</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: 7BED179A-3BE7-414D-8C40-914B591EF553</description>
  </entry>
  <entry>
    <record>342</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: 7BED179A-3BE7-414D-8C40-914B591EF553</description>
  </entry>
  <entry>
    <record>343</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: 93EA625A-53B4-4003-B56F-AB936759983B</description>
  </entry>
  <entry>
    <record>344</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: 93EA625A-53B4-4003-B56F-AB936759983B</description>
  </entry>
  <entry>
    <record>345</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Received promotion with RuleId: DED7D4AD-2C83-4B10-BC64-5C8DF0C052A5</description>
  </entry>
  <entry>
    <record>346</record>
    <time>2026/03/31 11:29:07.558</time>
    <type>Information</type>
    <source>PromotionsFramework</source>
    <description>Subscribed to trigger event for promotion with RuleId: DED7D4AD-2C83-4B10-BC64-5C8DF0C052A5</description>
  </entry>
  <entry>
    <record>347</record>
    <time>2026/03/31 11:29:07.584</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>Unresolved FW Link &apos;https://go.microsoft.com/fwlink/?LinkID=661503&apos; was resolved to &apos;https://app.vssps.visualstudio.com/&apos;</description>
  </entry>
  <entry>
    <record>348</record>
    <time>2026/03/31 11:29:07.595</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ToastNotificationsPackage]</description>
    <guid>{C931D979-CA1A-41E8-8A23-E86B85E3141B}</guid>
  </entry>
  <entry>
    <record>349</record>
    <time>2026/03/31 11:29:07.596</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ToastNotificationsPackage]</description>
    <guid>{C931D979-CA1A-41E8-8A23-E86B85E3141B}</guid>
  </entry>
  <entry>
    <record>350</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.IntelliCode.ModelExtractor64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>351</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.IntelliCode.ModelExtractor64S&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>352</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.IntelliCode.ModelExtractorCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>353</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.IntelliCode.ModelExtractorCore64S&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>354</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.AssetSynchronizationCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>355</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.AsynchronousOperationListenerCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>356</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.CodeLensReferencesCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>357</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.CompilationAvailableCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>358</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ConvertTupleToStructCodeRefactoringCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>359</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.CopilotChangeAnalysisCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>360</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.CopilotProposalAdjusterCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>361</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.DependentTypeFinderCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>362</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.DesignerAttributeDiscoveryCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>363</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.DiagnosticAnalyzerCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>364</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.DocumentHighlightsCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>365</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.EditAndContinueCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>366</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.EncapsulateFieldCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>367</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ExtensionMemberImportCompletionCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>368</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ExtensionMessageHandlerCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>369</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.FindUsagesCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>370</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.FullyQualifyCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>371</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.GlobalNotificationDeliveryCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>372</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.InheritanceMarginCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>373</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.InitializationCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>374</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.KeepAliveCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>375</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.LegacySolutionEventsAggregationCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>376</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.MissingImportDiscoveryCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>377</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.NavigateToSearchCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>378</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.NavigationBarItemCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>379</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ProcessTelemetryCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>380</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ProjectTelemetryCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>381</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.RelatedDocumentsCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>382</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.RenamerCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>383</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.SemanticClassificationCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>384</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.SemanticSearchCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>385</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.SourceGenerationCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>386</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.StackTraceExplorerCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>387</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.SymbolFinderCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>388</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.SymbolSearchUpdateCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>389</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.TaskListCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>390</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.UnitTestingSearchCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>391</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.UnusedReferenceAnalysisCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>392</record>
    <time>2026/03/31 11:29:07.597</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.LanguageServices.ValueTrackingCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>393</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.SBD.AnalysisCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>394</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.SBD.AnalysisCore64S&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>395</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.SBD.SourceLocationLookupCore64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>396</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;Microsoft.VisualStudio.SBD.SourceLocationLookupCore64S&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>397</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;vs-intellicode-models-arm64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>398</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;vs-intellicode-models32&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>399</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;vs-intellicode-models64&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>400</record>
    <time>2026/03/31 11:29:07.598</time>
    <type>Warning</type>
    <source>VsHubClient</source>
    <description>Service &apos;vs-intellicode-refactorings-net8&apos; has duplicate registrations in pkgdef and extension.vsixmanifest. Ignoring the extension.vsixmanifest registration.</description>
  </entry>
  <entry>
    <record>401</record>
    <time>2026/03/31 11:29:07.636</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>402</record>
    <time>2026/03/31 11:29:07.636</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>403</record>
    <time>2026/03/31 11:29:07.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>404</record>
    <time>2026/03/31 11:29:07.646</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UserNotificationsPackage]</description>
    <guid>{B89CD7D2-19DB-4B60-A958-E882AE71A66E}</guid>
  </entry>
  <entry>
    <record>405</record>
    <time>2026/03/31 11:29:07.652</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [GlobalHubClientPackage]</description>
    <guid>{11AD60FC-6D87-4674-8F88-9ABE79176CBE}</guid>
  </entry>
  <entry>
    <record>406</record>
    <time>2026/03/31 11:29:07.653</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [WhatsNewPackage]</description>
    <guid>{ADCCE324-D32C-4758-98CF-687CE2CD668E}</guid>
  </entry>
  <entry>
    <record>407</record>
    <time>2026/03/31 11:29:07.656</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [WhatsNewPackage]</description>
    <guid>{ADCCE324-D32C-4758-98CF-687CE2CD668E}</guid>
  </entry>
  <entry>
    <record>408</record>
    <time>2026/03/31 11:29:07.657</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ConversationsPackage]</description>
    <guid>{305164B7-1387-450E-AD4A-C7DEF479FD7D}</guid>
  </entry>
  <entry>
    <record>409</record>
    <time>2026/03/31 11:29:07.662</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ConversationsPackage]</description>
    <guid>{305164B7-1387-450E-AD4A-C7DEF479FD7D}</guid>
  </entry>
  <entry>
    <record>410</record>
    <time>2026/03/31 11:29:07.663</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [WalkthroughPackage]</description>
    <guid>{C1BE79CC-09EE-4015-BE6B-4AC1BE57B04A}</guid>
  </entry>
  <entry>
    <record>411</record>
    <time>2026/03/31 11:29:07.664</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [WalkthroughPackage]</description>
    <guid>{C1BE79CC-09EE-4015-BE6B-4AC1BE57B04A}</guid>
  </entry>
  <entry>
    <record>412</record>
    <time>2026/03/31 11:29:07.665</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ChannelConsumerPackage]</description>
    <guid>{00F06260-BF5B-4F88-98CA-94F4ACF3D16D}</guid>
  </entry>
  <entry>
    <record>413</record>
    <time>2026/03/31 11:29:07.667</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ChannelConsumerPackage]</description>
    <guid>{00F06260-BF5B-4F88-98CA-94F4ACF3D16D}</guid>
  </entry>
  <entry>
    <record>414</record>
    <time>2026/03/31 11:29:07.668</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Roaming Manager Package]</description>
    <guid>{54888390-2C04-4B04-B451-3166730C75BA}</guid>
  </entry>
  <entry>
    <record>415</record>
    <time>2026/03/31 11:29:07.669</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [OutputChannelPackage]</description>
    <guid>{E81208FB-9663-4335-B42A-218AE1064AD1}</guid>
  </entry>
  <entry>
    <record>416</record>
    <time>2026/03/31 11:29:07.670</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Roaming Manager Package]</description>
    <guid>{54888390-2C04-4B04-B451-3166730C75BA}</guid>
  </entry>
  <entry>
    <record>417</record>
    <time>2026/03/31 11:29:07.670</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [OutputChannelPackage]</description>
    <guid>{E81208FB-9663-4335-B42A-218AE1064AD1}</guid>
  </entry>
  <entry>
    <record>418</record>
    <time>2026/03/31 11:29:07.673</time>
    <type>Information</type>
    <source>RoamingManagerPackage</source>
    <description>User logged in : 0cc5afa4-e67b-600e-a18c-efc8fc19c2a2.14_PreferredProfile</description>
  </entry>
  <entry>
    <record>419</record>
    <time>2026/03/31 11:29:07.748</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ErrorListPackage]</description>
    <guid>{4A9B7E50-AA16-11D0-A8C5-00A0C921A4D2}</guid>
  </entry>
  <entry>
    <record>420</record>
    <time>2026/03/31 11:29:07.772</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>421</record>
    <time>2026/03/31 11:29:07.775</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\18\Professional\Common7\Packages\Debugger\*\VSDebugUI.dll</path>
  </entry>
  <entry>
    <record>422</record>
    <time>2026/03/31 11:29:07.792</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>423</record>
    <time>2026/03/31 11:29:07.831</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ErrorListPackage]</description>
    <guid>{4A9B7E50-AA16-11D0-A8C5-00A0C921A4D2}</guid>
  </entry>
  <entry>
    <record>424</record>
    <time>2026/03/31 11:29:07.868</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Roaming Profiles Package]</description>
    <guid>{C194969A-A5B1-4AF2-A9DF-ECF7CE982A05}</guid>
  </entry>
  <entry>
    <record>425</record>
    <time>2026/03/31 11:29:07.872</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Roaming Profiles Package]</description>
    <guid>{C194969A-A5B1-4AF2-A9DF-ECF7CE982A05}</guid>
  </entry>
  <entry>
    <record>426</record>
    <time>2026/03/31 11:29:07.880</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [OperationProgressPackage]</description>
    <guid>{C7821A4F-6708-4F8D-A0AA-D43D06E8D196}</guid>
  </entry>
  <entry>
    <record>427</record>
    <time>2026/03/31 11:29:07.881</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>428</record>
    <time>2026/03/31 11:29:07.883</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TaskStatusCenterPackage]</description>
    <guid>{EDFBCDC9-574E-40E1-8167-B8AAB25AC6CB}</guid>
  </entry>
  <entry>
    <record>429</record>
    <time>2026/03/31 11:29:07.940</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [OperationProgressPackage]</description>
    <guid>{C7821A4F-6708-4F8D-A0AA-D43D06E8D196}</guid>
  </entry>
  <entry>
    <record>430</record>
    <time>2026/03/31 11:29:08.007</time>
    <type>Information</type>
    <source>ClientRights</source>
    <description>Client rights determined: {&quot;CurrentClientRights&quot;:{&quot;ActivityId&quot;:&quot;e8343f07-da41-472b-a917-e8edbb9c1b37&quot;,&quot;AuthorizedVsEdition&quot;:2,&quot;AuthorizedVsEdition2&quot;:300,&quot;CrtokenDaysToExpire&quot;:30,&quot;DaysSinceCreation&quot;:0,&quot;DaysToExpire&quot;:30,&quot;IsLicenseGood&quot;:true,&quot;IsSubscriptionBased&quot;:true,&quot;IsTrialLicense&quot;:false,&quot;LicenseDescription&quot;:&quot;Visual Studio Professional with GitHub Enterprise Subscription&quot;,&quot;LicensedUserId&quot;:&quot;0cc5afa4-e67b-600e-a18c-efc8fc19c2a2&quot;,&quot;LicensedUserName&quot;:&quot;devesh.patel@tallysolutions.com&quot;,&quot;LicenseSource&quot;:1,&quot;LicenseSource2&quot;:1,&quot;LicenseStatus&quot;:4,&quot;LicenseType&quot;:10,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;LicensingAccount&quot;:&quot;&quot;,&quot;MayUplevel&quot;:false,&quot;ReleaseType&quot;:1,&quot;RightsDaysToExpire&quot;:2147483647,&quot;RightsStatus&quot;:10,&quot;SubscriptionChannel&quot;:&quot;VL&quot;,&quot;ClientRightsMetadata&quot;:{&quot;SubscriptionChannel&quot;:&quot;VL&quot;,&quot;NonLocalizedLicenseDescription&quot;:&quot;VSProfessionalGitHub&quot;,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;ExpirationDate&quot;:&quot;2026-04-30T07:00:24+00:00&quot;,&quot;ClientRightsVersion&quot;:{&quot;Major&quot;:18,&quot;Minor&quot;:4,&quot;Build&quot;:11605,&quot;Revision&quot;:240,&quot;MajorRevision&quot;:0,&quot;MinorRevision&quot;:240}}},&quot;CurrentLicenseSource&quot;:1,&quot;CurrentLicenseSource2&quot;:1,&quot;IDEUserClientRights&quot;:{&quot;ActivityId&quot;:&quot;e8343f07-da41-472b-a917-e8edbb9c1b37&quot;,&quot;AuthorizedVsEdition&quot;:2,&quot;AuthorizedVsEdition2&quot;:300,&quot;CrtokenDaysToExpire&quot;:30,&quot;DaysSinceCreation&quot;:0,&quot;DaysToExpire&quot;:30,&quot;IsLicenseGood&quot;:true,&quot;IsSubscriptionBased&quot;:true,&quot;IsTrialLicense&quot;:false,&quot;LicenseDescription&quot;:&quot;Visual Studio Professional with GitHub Enterprise Subscription&quot;,&quot;LicensedUserId&quot;:&quot;0cc5afa4-e67b-600e-a18c-efc8fc19c2a2&quot;,&quot;LicensedUserName&quot;:&quot;devesh.patel@tallysolutions.com&quot;,&quot;LicenseSource&quot;:1,&quot;LicenseSource2&quot;:1,&quot;LicenseStatus&quot;:4,&quot;LicenseType&quot;:10,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;LicensingAccount&quot;:&quot;&quot;,&quot;MayUplevel&quot;:false,&quot;ReleaseType&quot;:1,&quot;RightsDaysToExpire&quot;:2147483647,&quot;RightsStatus&quot;:10,&quot;SubscriptionChannel&quot;:&quot;VL&quot;,&quot;ClientRightsMetadata&quot;:{&quot;SubscriptionChannel&quot;:&quot;VL&quot;,&quot;NonLocalizedLicenseDescription&quot;:&quot;VSProfessionalGitHub&quot;,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;ExpirationDate&quot;:&quot;2026-04-30T07:00:24+00:00&quot;,&quot;ClientRightsVersion&quot;:{&quot;Major&quot;:18,&quot;Minor&quot;:4,&quot;Build&quot;:11605,&quot;Revision&quot;:240,&quot;MajorRevision&quot;:0,&quot;MinorRevision&quot;:240}}},&quot;PIDClientRights&quot;:{&quot;LicenseSource&quot;:0,&quot;LicenseSource2&quot;:0,&quot;IsSubscriptionBased&quot;:false,&quot;DaysSinceCreation&quot;:-1,&quot;LicenseType&quot;:2,&quot;AuthorizedVsEdition&quot;:2,&quot;AuthorizedVsEdition2&quot;:300,&quot;DaysToExpire&quot;:-1,&quot;IsLicenseGood&quot;:false,&quot;LicenseDescription&quot;:&quot;30 day trial (evaluation period)&quot;,&quot;LicenseStatus&quot;:-1,&quot;LicenseUrl&quot;:&quot;&quot;,&quot;MayUplevel&quot;:false,&quot;LicensedUserId&quot;:&quot;00000000-0000-0000-0000-000000000000&quot;,&quot;LicensedUserName&quot;:&quot;&quot;,&quot;LicensingAccount&quot;:&quot;&quot;,&quot;ReleaseType&quot;:1}}; Account identity provider: AAD</description>
  </entry>
  <entry>
    <record>431</record>
    <time>2026/03/31 11:29:08.406</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>432</record>
    <time>2026/03/31 11:29:08.406</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>433</record>
    <time>2026/03/31 11:29:08.420</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Microsoft.VisualStudio.ProjectSystem.Query.VS.ProjectSystemQueryServicePackage]</description>
    <guid>{84977506-D75D-4895-A0B3-C709C7141C8E}</guid>
  </entry>
  <entry>
    <record>434</record>
    <time>2026/03/31 11:29:08.434</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Microsoft.VisualStudio.ProjectSystem.Query.VS.ProjectSystemQueryServicePackage]</description>
    <guid>{84977506-D75D-4895-A0B3-C709C7141C8E}</guid>
  </entry>
  <entry>
    <record>435</record>
    <time>2026/03/31 11:29:08.437</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>user authentication successful for IDE user</description>
  </entry>
  <entry>
    <record>436</record>
    <time>2026/03/31 11:29:08.547</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileSystemPackage]</description>
    <guid>{AC2BF811-80A4-4FA9-A405-21EC39316782}</guid>
  </entry>
  <entry>
    <record>437</record>
    <time>2026/03/31 11:29:08.560</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileSystemPackage]</description>
    <guid>{AC2BF811-80A4-4FA9-A405-21EC39316782}</guid>
  </entry>
  <entry>
    <record>438</record>
    <time>2026/03/31 11:29:08.590</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LocalFileSystemProviderPackage]</description>
    <guid>{BCB28B82-7692-4875-8943-5D68025049AE}</guid>
  </entry>
  <entry>
    <record>439</record>
    <time>2026/03/31 11:29:08.591</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LocalFileSystemProviderPackage]</description>
    <guid>{BCB28B82-7692-4875-8943-5D68025049AE}</guid>
  </entry>
  <entry>
    <record>440</record>
    <time>2026/03/31 11:29:08.790</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>441</record>
    <time>2026/03/31 11:29:08.790</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>442</record>
    <time>2026/03/31 11:29:08.802</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Begin registering rule: ContextRuleMetadata: [identifier=&apos;7395bfe3c8b44fba93737283c1f25f7a&apos;, expression=&apos;c0&apos;, terms=&apos;ClientUIContext:b806a197-c2c8-47eb-beb3-4b3d00d834b5&apos;]</description>
  </entry>
  <entry>
    <record>443</record>
    <time>2026/03/31 11:29:08.803</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Context Rule with identifier: 7395bfe3c8b44fba93737283c1f25f7a does not exist.</description>
  </entry>
  <entry>
    <record>444</record>
    <time>2026/03/31 11:29:08.803</time>
    <type>Information</type>
    <source>ContextRuleMonitorService</source>
    <description>Creating new context rule: ContextRuleMetadata: [identifier=&apos;7395bfe3c8b44fba93737283c1f25f7a&apos;, expression=&apos;c0&apos;, terms=&apos;ClientUIContext:b806a197-c2c8-47eb-beb3-4b3d00d834b5&apos;]</description>
  </entry>
  <entry>
    <record>445</record>
    <time>2026/03/31 11:29:09.812</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>devesh.patel@tallysolutions.com signed in for IDE user</description>
  </entry>
  <entry>
    <record>446</record>
    <time>2026/03/31 11:29:09.812</time>
    <type>Information</type>
    <source>UserConnection</source>
    <description>VS user ID = 0cc5afa4-e67b-600e-a18c-efc8fc19c2a2</description>
  </entry>
  <entry>
    <record>447</record>
    <time>2026/03/31 11:29:21.251</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>448</record>
    <time>2026/03/31 11:29:21.252</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LogHubPackage]</description>
    <guid>{6392BA47-7B2E-4D68-BD91-9C854D4DC4C4}</guid>
  </entry>
  <entry>
    <record>449</record>
    <time>2026/03/31 11:29:26.942</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Running in User Groups: Users</description>
  </entry>
  <entry>
    <record>450</record>
    <time>2026/03/31 11:29:26.942</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Available Drive Space: C:\ drive has 289391689728 bytes; D:\ drive has 434672594944 bytes</description>
  </entry>
  <entry>
    <record>451</record>
    <time>2026/03/31 11:29:26.944</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Internet Explorer Version: 11.0.26100.7705</description>
  </entry>
  <entry>
    <record>452</record>
    <time>2026/03/31 11:29:26.944</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>.NET Framework Version: 10.0.26100.3624</description>
  </entry>
  <entry>
    <record>453</record>
    <time>2026/03/31 11:29:26.945</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>MSXML Version: 6.30.26100.7309</description>
  </entry>
  <entry>
    <record>454</record>
    <time>2026/03/31 11:29:40.172</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FeedbackPackage]</description>
    <guid>{B22490B8-AA51-43B1-97EE-509A33B681F3}</guid>
  </entry>
  <entry>
    <record>455</record>
    <time>2026/03/31 11:29:40.173</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FeedbackPackage]</description>
    <guid>{B22490B8-AA51-43B1-97EE-509A33B681F3}</guid>
  </entry>
  <entry>
    <record>456</record>
    <time>2026/03/31 11:29:40.181</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SearchUIPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>457</record>
    <time>2026/03/31 11:29:40.181</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SearchUIPackage]</description>
    <guid>{E3DD8DCD-EB2A-4ECE-A282-661E1EFA6335}</guid>
  </entry>
  <entry>
    <record>458</record>
    <time>2026/03/31 11:29:40.186</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [UserInformationPackage]</description>
    <guid>{5E80A5A1-B722-4727-9015-148AAB6310B0}</guid>
  </entry>
  <entry>
    <record>459</record>
    <time>2026/03/31 11:29:40.187</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [UserInformationPackage]</description>
    <guid>{5E80A5A1-B722-4727-9015-148AAB6310B0}</guid>
  </entry>
  <entry>
    <record>460</record>
    <time>2026/03/31 11:29:40.202</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SubscriptionsPackage]</description>
    <guid>{C81BD43F-26D0-4D3D-B07B-F5DEE15C4D1B}</guid>
  </entry>
  <entry>
    <record>461</record>
    <time>2026/03/31 11:29:40.203</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SubscriptionsPackage]</description>
    <guid>{C81BD43F-26D0-4D3D-B07B-F5DEE15C4D1B}</guid>
  </entry>
  <entry>
    <record>462</record>
    <time>2026/03/31 11:29:40.354</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>463</record>
    <time>2026/03/31 11:29:40.355</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TippingServicePackage]</description>
    <guid>{46C434EF-05D2-4C98-AAA2-37F9D07B5D82}</guid>
  </entry>
  <entry>
    <record>464</record>
    <time>2026/03/31 11:29:40.378</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [AccountManagerPackage]</description>
    <guid>{9C987E78-F0BF-45CA-9BA5-96D3E4B2BAC6}</guid>
  </entry>
  <entry>
    <record>465</record>
    <time>2026/03/31 11:29:40.379</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [AccountManagerPackage]</description>
    <guid>{9C987E78-F0BF-45CA-9BA5-96D3E4B2BAC6}</guid>
  </entry>
  <entry>
    <record>466</record>
    <time>2026/03/31 11:29:40.386</time>
    <type>Information</type>
    <source>DetectRunAs</source>
    <description>COMPATLAYER __COMPAT_LAYER is </description>
  </entry>
  <entry>
    <record>467</record>
    <time>2026/03/31 11:29:40.387</time>
    <type>Information</type>
    <source>DetectRunAs</source>
    <description>RunAs results: check enabled: True detected:False currentSid:S-1-5-21-2751035232-2170633137-1728568220-37627 shellSid:S-1-5-21-2751035232-2170633137-1728568220-37627</description>
  </entry>
  <entry>
    <record>468</record>
    <time>2026/03/31 11:29:40.405</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SourceExplorerPackage]</description>
    <guid>{44692DA9-C6F8-415B-9AAE-924DD592DC7F}</guid>
  </entry>
  <entry>
    <record>469</record>
    <time>2026/03/31 11:29:40.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ThreadedWaitDialogPackage]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>470</record>
    <time>2026/03/31 11:29:40.422</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ThreadedWaitDialogPackage]</description>
    <guid>{D6AFE069-EC5B-49CA-A0BA-24E3A591C908}</guid>
  </entry>
  <entry>
    <record>471</record>
    <time>2026/03/31 11:29:40.447</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SourceExplorerPackage]</description>
    <guid>{44692DA9-C6F8-415B-9AAE-924DD592DC7F}</guid>
  </entry>
  <entry>
    <record>472</record>
    <time>2026/03/31 11:29:40.519</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [MruPackage]</description>
    <guid>{8FF5C2A8-5EBA-4717-8EE1-46B6427D8FF3}</guid>
  </entry>
  <entry>
    <record>473</record>
    <time>2026/03/31 11:29:40.521</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [MruPackage]</description>
    <guid>{8FF5C2A8-5EBA-4717-8EE1-46B6427D8FF3}</guid>
  </entry>
  <entry>
    <record>474</record>
    <time>2026/03/31 11:29:40.609</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [DeploymentPackage]</description>
    <guid>{65D2E08F-C7DD-4512-9486-156881C91F6E}</guid>
  </entry>
  <entry>
    <record>475</record>
    <time>2026/03/31 11:29:40.621</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [DeploymentPackage]</description>
    <guid>{65D2E08F-C7DD-4512-9486-156881C91F6E}</guid>
  </entry>
  <entry>
    <record>476</record>
    <time>2026/03/31 11:29:40.648</time>
    <type>Information</type>
    <source>Custom Layouts</source>
    <description>Rebuilding CachedInfo.</description>
  </entry>
  <entry>
    <record>477</record>
    <time>2026/03/31 11:29:40.659</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [PathTrustVerifierPackage]</description>
    <guid>{2F6B5046-3BB0-4825-B344-3F4238921119}</guid>
  </entry>
  <entry>
    <record>478</record>
    <time>2026/03/31 11:29:40.660</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [PathTrustVerifierPackage]</description>
    <guid>{2F6B5046-3BB0-4825-B344-3F4238921119}</guid>
  </entry>
  <entry>
    <record>479</record>
    <time>2026/03/31 11:29:40.863</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SolutionNavigatorPackage]</description>
    <guid>{CF6A5C16-83B0-4D04-B702-195C35C6E887}</guid>
  </entry>
  <entry>
    <record>480</record>
    <time>2026/03/31 11:29:40.863</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>481</record>
    <time>2026/03/31 11:29:40.863</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>482</record>
    <time>2026/03/31 11:29:40.863</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>483</record>
    <time>2026/03/31 11:29:40.863</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>484</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>485</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>486</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>487</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>488</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>489</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>490</record>
    <time>2026/03/31 11:29:40.864</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SolutionNavigatorPackage]</description>
    <guid>{CF6A5C16-83B0-4D04-B702-195C35C6E887}</guid>
  </entry>
  <entry>
    <record>491</record>
    <time>2026/03/31 11:29:41.378</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Entering function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>492</record>
    <time>2026/03/31 11:29:41.378</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Leaving function LoadDTETypeLib</description>
  </entry>
  <entry>
    <record>493</record>
    <time>2026/03/31 11:29:41.383</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TelemetryHasherPackage]</description>
    <guid>{177EB584-9375-4B7C-ABBB-32A91F740A40}</guid>
  </entry>
  <entry>
    <record>494</record>
    <time>2026/03/31 11:29:41.383</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TelemetryHasherPackage]</description>
    <guid>{177EB584-9375-4B7C-ABBB-32A91F740A40}</guid>
  </entry>
  <entry>
    <record>495</record>
    <time>2026/03/31 11:29:41.388</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileColorPackage]</description>
    <guid>{949BB610-6840-4ADE-8C75-55CDB16BF0E8}</guid>
  </entry>
  <entry>
    <record>496</record>
    <time>2026/03/31 11:29:41.390</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>497</record>
    <time>2026/03/31 11:29:41.390</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>498</record>
    <time>2026/03/31 11:29:41.395</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileColorPackage]</description>
    <guid>{949BB610-6840-4ADE-8C75-55CDB16BF0E8}</guid>
  </entry>
  <entry>
    <record>499</record>
    <time>2026/03/31 11:29:41.562</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>500</record>
    <time>2026/03/31 11:29:41.562</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>501</record>
    <time>2026/03/31 11:29:42.213</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>502</record>
    <time>2026/03/31 11:29:42.213</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>503</record>
    <time>2026/03/31 11:29:42.213</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>504</record>
    <time>2026/03/31 11:29:42.213</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>505</record>
    <time>2026/03/31 11:29:42.214</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>506</record>
    <time>2026/03/31 11:29:42.214</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>507</record>
    <time>2026/03/31 11:29:42.311</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CompletionsPackage]</description>
    <guid>{C32293E2-628F-4083-9B40-F229FFF2A09E}</guid>
  </entry>
  <entry>
    <record>508</record>
    <time>2026/03/31 11:29:42.319</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CompletionsPackage]</description>
    <guid>{C32293E2-628F-4083-9B40-F229FFF2A09E}</guid>
  </entry>
  <entry>
    <record>509</record>
    <time>2026/03/31 11:29:42.463</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [VCManagedPackage]</description>
    <guid>{74612282-E4C8-46B4-A774-C4AA32D54446}</guid>
  </entry>
  <entry>
    <record>510</record>
    <time>2026/03/31 11:29:42.489</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>511</record>
    <time>2026/03/31 11:29:42.507</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>512</record>
    <time>2026/03/31 11:29:42.510</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>513</record>
    <time>2026/03/31 11:29:42.528</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>514</record>
    <time>2026/03/31 11:29:42.529</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [SccProviderPackage]</description>
    <guid>{7FE30A77-37F9-4CF2-83DD-96B207028E1B}</guid>
  </entry>
  <entry>
    <record>515</record>
    <time>2026/03/31 11:29:42.618</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [SccProviderPackage]</description>
    <guid>{7FE30A77-37F9-4CF2-83DD-96B207028E1B}</guid>
  </entry>
  <entry>
    <record>516</record>
    <time>2026/03/31 11:29:42.740</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;Microsoft.VisualStudio.Copilot.CopilotChatAgentProvider (0.3)&quot; service failed. ---&gt; System.InvalidCastException: Unable to cast object of type &apos;Microsoft.VisualStudio.Copilot.Core.Agents.DefaultChatAgentProvider&apos; to type &apos;Microsoft.VisualStudio.Copilot.ICopilotFunctionProvider&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceBroker.ServiceBrokerOfExportedServices.&lt;Microsoft-ServiceHub-Framework-IServiceBroker-GetProxyAsync&gt;d__13`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceBroker.ServiceBrokerOfExportedServices.&lt;Microsoft-ServiceHub-Framework-IServiceBroker-GetProxyAsync&gt;d__13`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()</description>
  </entry>
  <entry>
    <record>517</record>
    <time>2026/03/31 11:29:43.233</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CMakeNativePackage]</description>
    <guid>{F50A0AB8-B1FA-4901-BA52-1AF791ABA4B1}</guid>
  </entry>
  <entry>
    <record>518</record>
    <time>2026/03/31 11:29:43.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CMakeNativePackage]</description>
    <guid>{F50A0AB8-B1FA-4901-BA52-1AF791ABA4B1}</guid>
  </entry>
  <entry>
    <record>519</record>
    <time>2026/03/31 11:29:43.471</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LinuxNativePackage]</description>
    <guid>{CED01BD3-F24C-4019-9DC6-82A8A4C6313F}</guid>
  </entry>
  <entry>
    <record>520</record>
    <time>2026/03/31 11:29:43.509</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [LinuxConnectionManagerPackage]</description>
    <guid>{5669A1E2-09B4-405D-AE52-18437C23D7EA}</guid>
  </entry>
  <entry>
    <record>521</record>
    <time>2026/03/31 11:29:43.533</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [TerminalWindowPackage]</description>
    <guid>{E632CA91-B170-401A-AC2E-6B83FFDC3C10}</guid>
  </entry>
  <entry>
    <record>522</record>
    <time>2026/03/31 11:29:43.583</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [TerminalWindowPackage]</description>
    <guid>{E632CA91-B170-401A-AC2E-6B83FFDC3C10}</guid>
  </entry>
  <entry>
    <record>523</record>
    <time>2026/03/31 11:29:43.628</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LinuxConnectionManagerPackage]</description>
    <guid>{5669A1E2-09B4-405D-AE52-18437C23D7EA}</guid>
  </entry>
  <entry>
    <record>524</record>
    <time>2026/03/31 11:29:43.633</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual C++ Package]</description>
    <guid>{1B027A40-8F43-11D0-8D11-00A0C91BC942}</guid>
  </entry>
  <entry>
    <record>525</record>
    <time>2026/03/31 11:29:43.659</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual C++ Language Manager Package]</description>
    <guid>{8C2EA640-ABC1-11D0-9D62-00C04FD9DFD9}</guid>
  </entry>
  <entry>
    <record>526</record>
    <time>2026/03/31 11:29:43.660</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual C++ Language Manager Package]</description>
    <guid>{8C2EA640-ABC1-11D0-9D62-00C04FD9DFD9}</guid>
  </entry>
  <entry>
    <record>527</record>
    <time>2026/03/31 11:29:43.705</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual C++ Package]</description>
    <guid>{1B027A40-8F43-11D0-8D11-00A0C91BC942}</guid>
  </entry>
  <entry>
    <record>528</record>
    <time>2026/03/31 11:29:43.714</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [LinuxNativePackage]</description>
    <guid>{CED01BD3-F24C-4019-9DC6-82A8A4C6313F}</guid>
  </entry>
  <entry>
    <record>529</record>
    <time>2026/03/31 11:29:44.058</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.2)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>530</record>
    <time>2026/03/31 11:29:44.058</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Shell.BuildService (0.2)&quot; is declined: ServiceAudienceMismatch.</description>
  </entry>
  <entry>
    <record>531</record>
    <time>2026/03/31 11:29:44.058</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.1)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>532</record>
    <time>2026/03/31 11:29:44.058</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Shell.BuildService (0.1)&quot; is declined: ServiceAudienceMismatch.</description>
  </entry>
  <entry>
    <record>533</record>
    <time>2026/03/31 11:29:44.137</time>
    <type>Error</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Microsoft.ServiceHub.Framework.ServiceActivationFailedException: Activating the &quot;Microsoft.VisualStudio.Copilot.CopilotChatAgentProvider (0.3)&quot; service failed. ---&gt; System.InvalidCastException: Unable to cast object of type &apos;Microsoft.VisualStudio.Copilot.Core.Agents.DefaultChatAgentProvider&apos; to type &apos;Microsoft.VisualStudio.Copilot.ICopilotFunctionProvider&apos;.&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceBroker.ServiceBrokerOfExportedServices.&lt;Microsoft-ServiceHub-Framework-IServiceBroker-GetProxyAsync&gt;d__13`1.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at Microsoft.VisualStudio.Shell.ServiceBroker.ServiceBrokerOfExportedServices.&lt;Microsoft-ServiceHub-Framework-IServiceBroker-GetProxyAsync&gt;d__13`1.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 System.Threading.Tasks.ValueTask`1.get_Result()&#x000D;&#x000A;   at Microsoft.VisualStudio.Utilities.ServiceBroker.GlobalBrokeredServiceContainer.View.&lt;GetProxyAsync&gt;d__19`1.MoveNext()</description>
  </entry>
  <entry>
    <record>534</record>
    <time>2026/03/31 11:30:06.702</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CMakeLinuxNativePackage]</description>
    <guid>{F3491365-10CB-44A7-8AAC-F54D566EC06C}</guid>
  </entry>
  <entry>
    <record>535</record>
    <time>2026/03/31 11:30:06.707</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [ExternalBuildFrameworkPackage]</description>
    <guid>{CB89DFD2-62A4-49A2-A17E-204B973608DA}</guid>
  </entry>
  <entry>
    <record>536</record>
    <time>2026/03/31 11:30:06.718</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [ExternalBuildFrameworkPackage]</description>
    <guid>{CB89DFD2-62A4-49A2-A17E-204B973608DA}</guid>
  </entry>
  <entry>
    <record>537</record>
    <time>2026/03/31 11:30:06.744</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CMakeLinuxNativePackage]</description>
    <guid>{F3491365-10CB-44A7-8AAC-F54D566EC06C}</guid>
  </entry>
  <entry>
    <record>538</record>
    <time>2026/03/31 11:30:10.455</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [VCManagedPackage]</description>
    <guid>{74612282-E4C8-46B4-A774-C4AA32D54446}</guid>
  </entry>
  <entry>
    <record>539</record>
    <time>2026/03/31 11:30:10.457</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [FileEnumerationServicePackage]</description>
    <guid>{ED8075A9-3E0C-45B3-83EE-C14B43BC3787}</guid>
  </entry>
  <entry>
    <record>540</record>
    <time>2026/03/31 11:30:10.459</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [FileEnumerationServicePackage]</description>
    <guid>{ED8075A9-3E0C-45B3-83EE-C14B43BC3787}</guid>
  </entry>
  <entry>
    <record>541</record>
    <time>2026/03/31 11:30:10.461</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [IntelliCodeCppPackage]</description>
    <guid>{20E71487-2515-4B18-8A25-F6365DC0353F}</guid>
  </entry>
  <entry>
    <record>542</record>
    <time>2026/03/31 11:30:10.837</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [IntelliCodeCppPackage]</description>
    <guid>{20E71487-2515-4B18-8A25-F6365DC0353F}</guid>
  </entry>
  <entry>
    <record>543</record>
    <time>2026/03/31 11:30:10.839</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CMakeClientPackage]</description>
    <guid>{8A6AA874-7B98-43FE-8584-7D802D51BE74}</guid>
  </entry>
  <entry>
    <record>544</record>
    <time>2026/03/31 11:30:10.846</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CMakeClientPackage]</description>
    <guid>{8A6AA874-7B98-43FE-8584-7D802D51BE74}</guid>
  </entry>
  <entry>
    <record>545</record>
    <time>2026/03/31 11:30:37.201</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [Visual C++ Project System Package]</description>
    <guid>{F1C25864-3097-11D2-A5C5-00C04F7968B4}</guid>
  </entry>
  <entry>
    <record>546</record>
    <time>2026/03/31 11:30:37.867</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [BuildManagerPackage]</description>
    <guid>{B718A162-0361-4B0E-920B-D88D70BE609B}</guid>
  </entry>
  <entry>
    <record>547</record>
    <time>2026/03/31 11:30:37.900</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [BuildManagerPackage]</description>
    <guid>{B718A162-0361-4B0E-920B-D88D70BE609B}</guid>
  </entry>
  <entry>
    <record>548</record>
    <time>2026/03/31 11:30:37.915</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [Visual C++ Project System Package]</description>
    <guid>{F1C25864-3097-11D2-A5C5-00C04F7968B4}</guid>
  </entry>
  <entry>
    <record>549</record>
    <time>2026/03/31 11:30:38.378</time>
    <type>Error</type>
    <source>VS/IDE/TaskStatusCenter/RunningRegisteredTaskFailed</source>
    <description>libcmake.CMakeDaemonException: &apos;C:\WINDOWS\system32\cmd.exe&apos; &apos;/c &quot;%SYSTEMROOT%\System32\chcp.com 65001 &gt;NUL &amp;&amp; &quot;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe&quot;  -G &quot;Ninja Multi-Config&quot;  -C C:\Users\devesh.patel\AppData\Local\Temp\tmp5E38.tmp  &quot;D:\TW\Workspace&quot; 2&gt;&amp;1&quot;&apos; execution failed with error: &apos;&apos;C:\WINDOWS\system32\cmd.exe&apos; &apos;/c &quot;%SYSTEMROOT%\System32\chcp.com 65001 &gt;NUL &amp;&amp; &quot;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe&quot;  -G &quot;Ninja Multi-Config&quot;  -C C:\Users\devesh.patel\AppData\Local\Temp\tmp5E38.tmp  &quot;D:\TW\Workspace&quot; 2&gt;&amp;1&quot;&apos; returned with exit code: 1&apos;. ---&gt; libcmake.CMakeDaemonException: &apos;C:\WINDOWS\system32\cmd.exe&apos; &apos;/c &quot;%SYSTEMROOT%\System32\chcp.com 65001 &gt;NUL &amp;&amp; &quot;C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin\cmake.exe&quot;  -G &quot;Ninja Multi-Config&quot;  -C C:\Users\devesh.patel\AppData\Local\Temp\tmp5E38.tmp  &quot;D:\TW\Workspace&quot; 2&gt;&amp;1&quot;&apos; returned with exit code: 1&#x000D;&#x000A;   at libcmake.CMakeDaemonDriver.&lt;GenerateCacheAsync&gt;d__18.MoveNext()&#x000D;&#x000A;   --- End of inner exception stack trace ---&#x000D;&#x000A;   at libcmake.CMakeDaemonDriver.&lt;GenerateCacheAsync&gt;d__18.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 libcmake.CMakeDaemonDriver.&lt;GenerateCacheAsync&gt;d__17.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 libcmake.FileApiDaemon.&lt;GenerateCacheAsync&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 libcmake.CMakeListsParser.&lt;ParseImplAsync&gt;d__40.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 libcmake.CMakeListsParser.&lt;ParseAsync&gt;d__36.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.CMake.Project.ExternalBuildProject.ProjectProvider.&lt;ParseProjectAsync&gt;d__46.MoveNext()</description>
  </entry>
  <entry>
    <record>550</record>
    <time>2026/03/31 11:30:43.062</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Begin package load [CWBPackage]</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
  </entry>
  <entry>
    <record>551</record>
    <time>2026/03/31 11:30:43.063</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Loading UI library</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
    <path>C:\Program Files\Microsoft Visual Studio\18\Professional\Common7\IDE*\msenvui.dll</path>
  </entry>
  <entry>
    <record>552</record>
    <time>2026/03/31 11:30:43.066</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>End package load [CWBPackage]</description>
    <guid>{E8B06F41-6D01-11D2-AA7D-00C04F990343}</guid>
  </entry>
  <entry>
    <record>553</record>
    <time>2026/03/31 11:30:54.708</time>
    <type>Information</type>
    <source>window manager</source>
    <description>Stored pinned views in SUO: </description>
  </entry>
  <entry>
    <record>554</record>
    <time>2026/03/31 11:30:56.088</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.1)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>555</record>
    <time>2026/03/31 11:30:56.088</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.1)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>556</record>
    <time>2026/03/31 11:30:56.089</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.2)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>557</record>
    <time>2026/03/31 11:30:56.089</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for &quot;Microsoft.VisualStudio.Shell.BuildService (0.2)&quot; from Process denied because the service is only exposed LiveShareGuest.</description>
  </entry>
  <entry>
    <record>558</record>
    <time>2026/03/31 11:30:56.612</time>
    <type>Warning</type>
    <source>GlobalBrokeredServiceContainer</source>
    <description>Request for proxy to &quot;Microsoft.VisualStudio.Copilot (0.3)&quot; is declined: ServiceFactoryNotProffered.</description>
  </entry>
  <entry>
    <record>559</record>
    <time>2026/03/31 11:30:56.706</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Debugger&apos; ({EEDBF29A-5C8B-4E01-827C-263382C18CFE}) from package &apos;Visual Studio Debugger&apos; ({C9DD4A57-47FB-11D2-83E7-00C04F9902C1}). 135229509592 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>560</record>
    <time>2026/03/31 11:30:56.707</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Debugger&apos; ({EEDBF29A-5C8B-4E01-827C-263382C18CFE}) from package &apos;Visual Studio Debugger&apos; ({C9DD4A57-47FB-11D2-83E7-00C04F9902C1}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>561</record>
    <time>2026/03/31 11:30:56.707</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_CallBrowser&apos; ({50B05A5D-9174-48eb-851A-B1C616A0B43D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>562</record>
    <time>2026/03/31 11:30:56.707</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_CallBrowser&apos; ({50B05A5D-9174-48eb-851A-B1C616A0B43D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>563</record>
    <time>2026/03/31 11:30:56.707</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_ClassView&apos; ({40AF29AB-4C5B-412A-9CE8-465C4FCFE41D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>564</record>
    <time>2026/03/31 11:30:56.707</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_ClassView&apos; ({40AF29AB-4C5B-412A-9CE8-465C4FCFE41D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>565</record>
    <time>2026/03/31 11:30:56.708</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_DefaultEditors&apos; ({68161AEE-BCA8-4214-B2E4-7875263E49C5}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>566</record>
    <time>2026/03/31 11:30:56.708</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_DefaultEditors&apos; ({68161AEE-BCA8-4214-B2E4-7875263E49C5}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>567</record>
    <time>2026/03/31 11:30:56.708</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_Expansions&apos; ({0B9A10B2-C0D0-4a6a-8353-115E9CACF34A}) from package &apos;CTextPackage&apos; ({F5E7E720-1401-11D1-883B-0000F87579D2}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>568</record>
    <time>2026/03/31 11:30:56.709</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_Expansions&apos; ({0B9A10B2-C0D0-4a6a-8353-115E9CACF34A}) from package &apos;CTextPackage&apos; ({F5E7E720-1401-11D1-883B-0000F87579D2}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>569</record>
    <time>2026/03/31 11:30:56.710</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_ExternalTools&apos; ({E8FAE9E8-FBA2-4474-B134-AB0FFCFB291D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>570</record>
    <time>2026/03/31 11:30:56.711</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_ExternalTools&apos; ({E8FAE9E8-FBA2-4474-B134-AB0FFCFB291D}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>571</record>
    <time>2026/03/31 11:30:56.711</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_FindSymbol&apos; ({C93260BC-0C07-484a-8188-6F4763BD7FD4}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>572</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_FindSymbol&apos; ({C93260BC-0C07-484a-8188-6F4763BD7FD4}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>573</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_General&apos; ({435668FE-00FF-429B-A970-87426874A21B}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>574</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_General&apos; ({435668FE-00FF-429B-A970-87426874A21B}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>575</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_NewProjectDialogPreferredLanguage&apos; ({77E22C0C-9F4A-4bfb-AD3A-3F3F4711E9ED}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>576</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_NewProjectDialogPreferredLanguage&apos; ({77E22C0C-9F4A-4bfb-AD3A-3F3F4711E9ED}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>577</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_ObjectBrowser&apos; ({D98D784D-88BF-4EBF-B039-C146EC14F472}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>578</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_ObjectBrowser&apos; ({D98D784D-88BF-4EBF-B039-C146EC14F472}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>579</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_OutputWindow&apos; ({07C6CD04-100B-4f3e-BA93-DD1363E8D8E3}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>580</record>
    <time>2026/03/31 11:30:56.712</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_OutputWindow&apos; ({07C6CD04-100B-4f3e-BA93-DD1363E8D8E3}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>581</record>
    <time>2026/03/31 11:30:56.713</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_SimplifiedToolsOptions&apos; ({13BEDEE6-9051-4809-B9E3-2EEC749EB15A}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>582</record>
    <time>2026/03/31 11:30:56.713</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_SimplifiedToolsOptions&apos; ({13BEDEE6-9051-4809-B9E3-2EEC749EB15A}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>583</record>
    <time>2026/03/31 11:30:56.714</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_SolutionExplorer&apos; ({6fa9062f-82b2-4725-ba6d-58cf7cba7dea}) from package &apos;SolutionNavigatorPackage&apos; ({CF6A5C16-83B0-4D04-B702-195C35C6E887}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>584</record>
    <time>2026/03/31 11:30:56.714</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_SolutionExplorer&apos; ({6fa9062f-82b2-4725-ba6d-58cf7cba7dea}) from package &apos;SolutionNavigatorPackage&apos; ({CF6A5C16-83B0-4D04-B702-195C35C6E887}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>585</record>
    <time>2026/03/31 11:30:56.714</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_TabsAndWindows&apos; ({CCF27946-63D9-4806-91BA-EEBF5F3DFA4A}) from package &apos;WindowManagementPackage&apos; ({5E56B3DB-7964-4588-8D49-D3523AB7BDB9}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>586</record>
    <time>2026/03/31 11:30:56.716</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_TabsAndWindows&apos; ({CCF27946-63D9-4806-91BA-EEBF5F3DFA4A}) from package &apos;WindowManagementPackage&apos; ({5E56B3DB-7964-4588-8D49-D3523AB7BDB9}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>587</record>
    <time>2026/03/31 11:30:56.716</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Environment_WindowLayout&apos; ({eb4ba109-a9db-4445-bd09-e7604bcdce84}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229509528 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>588</record>
    <time>2026/03/31 11:30:56.734</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Environment_WindowLayout&apos; ({eb4ba109-a9db-4445-bd09-e7604bcdce84}) from package &apos;CVsShellPackage&apos; ({DA9FB551-C724-11D0-AE1F-00A0C90FFFC3}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>589</record>
    <time>2026/03/31 11:30:56.735</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Git Version Control_GitSccProvider&apos; ({33a4cda9-b7a6-3f4f-9e1f-e4d71f0a9cfa}) from package &apos;SccProviderPackage&apos; ({7FE30A77-37F9-4CF2-83DD-96B207028E1B}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>590</record>
    <time>2026/03/31 11:30:56.750</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Git Version Control_GitSccProvider&apos; ({33a4cda9-b7a6-3f4f-9e1f-e4d71f0a9cfa}) from package &apos;SccProviderPackage&apos; ({7FE30A77-37F9-4CF2-83DD-96B207028E1B}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>591</record>
    <time>2026/03/31 11:30:56.751</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Text Editor_General&apos; ({c178af61-531a-46f0-bd57-102d9e42c711}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>592</record>
    <time>2026/03/31 11:30:56.763</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Text Editor_General&apos; ({c178af61-531a-46f0-bd57-102d9e42c711}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>593</record>
    <time>2026/03/31 11:30:56.763</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;CodeLens&apos; ({04DA95C1-B198-491D-BB93-DAD8610F3019}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>594</record>
    <time>2026/03/31 11:30:56.764</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;CodeLens&apos; ({04DA95C1-B198-491D-BB93-DAD8610F3019}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>595</record>
    <time>2026/03/31 11:30:56.764</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Text Editor_Advanced&apos; ({efd55f3d-23c1-4a1d-a58b-77295611c7d4}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>596</record>
    <time>2026/03/31 11:30:56.764</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Text Editor_Advanced&apos; ({efd55f3d-23c1-4a1d-a58b-77295611c7d4}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>597</record>
    <time>2026/03/31 11:30:56.764</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>Begin export of category &apos;Text Editor_Code Cleanup&apos; ({D15E80D1-F395-4D76-9C1B-5C0923248E4F}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>598</record>
    <time>2026/03/31 11:30:56.765</time>
    <type>Information</type>
    <source>Profile manager</source>
    <description>End export of category &apos;Text Editor_Code Cleanup&apos; ({D15E80D1-F395-4D76-9C1B-5C0923248E4F}) from package &apos;Microsoft.VisualStudio.Editor.Implementation.EditorPackage&apos; ({E269B994-EF71-4CE0-8BCD-581C217372E8}). 135229505432 KB of virtual memory currently available.</description>
  </entry>
  <entry>
    <record>599</record>
    <time>2026/03/31 11:30:56.884</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Destroying Main Window</description>
  </entry>
  <entry>
    <record>600</record>
    <time>2026/03/31 11:30:58.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>AppId stopped registry detouring</description>
  </entry>
  <entry>
    <record>601</record>
    <time>2026/03/31 11:30:58.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>Shutting down pkgdef registry</description>
  </entry>
  <entry>
    <record>602</record>
    <time>2026/03/31 11:30:58.208</time>
    <type>Information</type>
    <source>VisualStudio</source>
    <description>PkgDef registry shutdown complete</description>
  </entry>
</activity>
