* Update dependencies from https://github.com/dotnet/arcade build 20240821.4
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.23171.2 -> To Version 8.0.0-beta.24421.4
* Update dependencies from https://github.com/dotnet/arcade build 20240826.2
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24421.4 -> To Version 8.0.0-beta.24426.2
* Update dependencies from https://github.com/dotnet/arcade build 20240909.4
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24426.2 -> To Version 8.0.0-beta.24459.4
* Update dependencies from https://github.com/dotnet/arcade build 20240910.4
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24459.4 -> To Version 8.0.0-beta.24460.4
* Update dependencies from https://github.com/dotnet/arcade build 20240911.1
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24460.4 -> To Version 8.0.0-beta.24461.1
* Update dependencies from https://github.com/dotnet/arcade build 20240911.2
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24461.1 -> To Version 8.0.0-beta.24461.2
* Update dependencies from https://github.com/dotnet/arcade build 20240913.3
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24461.2 -> To Version 8.0.0-beta.24463.3
* Update dependencies from https://github.com/dotnet/arcade build 20240920.2
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24463.3 -> To Version 8.0.0-beta.24470.2
* Update dependencies from https://github.com/dotnet/arcade build 20240925.3
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24470.2 -> To Version 8.0.0-beta.24475.3
* Update dependencies from https://github.com/dotnet/arcade build 20241004.2
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24475.3 -> To Version 8.0.0-beta.24504.2
* Update dependencies from https://github.com/dotnet/arcade build 20241008.1
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24504.2 -> To Version 8.0.0-beta.24508.1
* Update dependencies from https://github.com/dotnet/arcade build 20241016.1
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.24508.1 -> To Version 8.0.0-beta.24516.1
* Update dependencies from https://github.com/dotnet/arcade build 20241025.2
Microsoft.DotNet.Arcade.Sdk
From Version 8.0.0-beta.23171.2 -> To Version 8.0.0-beta.24525.2
* Remove unnecessary PackageReferences
* Update EOL versions
* Unpin compiler toolset
* Add missing xunit reference
* Suppress a nullability warning
* Suppress NETSDK1201
* Disable integration tests
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Jan Jones <janjones@microsoft.com>
Co-authored-by: Rich Lander <rlander@microsoft.com>
* Don't re-run declaration code if nothing has changed
* Split tag helper discovery into component and compilation discovery
* Create a wrapper source generator engine that can selectively run phases
* Ensure we don't re-use a rewritten syntax tree
* Break output into multiple steps that can be largely skipped as needed
- Update event log names
- Update tests to match
* Use ASP.NET Core SDK in SourceGenerator tests
* Render and verify Razor Page HTML
* Remove ASP.NET Core analyzers
* Include only DLLs from ASP.NET Core, not SDK
* Use `AssemblyLoadContext`
* Verify HTML output of view component
* Reference version 7.0.4 of ASP.NET Core DLLs
* Use empty strings as default parameter values
Co-authored-by: Fred Silberberg <fred@silberberg.xyz>
---------
Co-authored-by: Fred Silberberg <fred@silberberg.xyz>
By allowing our existing code in the formatting pass to run when there are no remappable edits, we can remove the entire add using code action resolver, as we support adding usings from any code action regardless.
I wanted to do this ages ago, but it never worked, and doing this fix I found out why. So here we are.
When there is a case mismatch and Roslyn wants to fix it, the code action text is "FixedTypeName - using Namespace;", but our regex was only looking for the text to start with "using".
client capabilities was not being initialized anymore
therefore the intellisense was showing up as default plain
rather than being markdown showing full type name and colored
Fixes#8488