Commit Graph

391 Commits

Author SHA1 Message Date
Ryan Brandenburg 36c2448bd3 Serialize project state from VS to project.razor.json (dotnet/aspnetcore-tooling#1711)
Serialize project state to project.razor.json\n\nCommit migrated from fef50ba623
2020-03-31 11:07:08 -07:00
N. Taylor Mullen 926bbfa14b Update Roslyn tooling versions.
- Moved from 3.4.0 Roslyn to 3.6.0-3.20168.4 for tooling builds.
- As part of this change I found that our package versions were starting to get really confusing for which Roslyn packages were runtime vs. which ones were tooling. Therefore, I rebranded each of the versions to be `Tooling_` or `Runtime_` accordingly. Moved all `VSIX_` => `Tooling_`.
- Roslyn's bits depended on a newer `StreamJsonRpc`, `Microsoft.VisualStudio.Threading` and `Microsoft.VisualStudio.LanguageServer.Client` packages so updated those dependencies to not have version conflicts.
- This new update brought in loads of new analyzers. Went through the warnings and either applied the fix or suppressed.
- This is in preparation for consuming new pieces from latest Roslyn packages.
\n\nCommit migrated from df5261e418
2020-03-24 12:08:32 -07:00
Tanay Parikh 26c5807c98 <text> Tag IntelliSense Support (dotnet/aspnetcore-tooling#1675)
* <text> Tag IntelliSense Implementation

* Text node language context support

* Added Tests\n\nCommit migrated from a0f99cd14f
2020-03-12 22:45:50 -07:00
N. Taylor Mullen d69938f36d Initialize LSP documents earlier.
- Prior to this we would start tracking LSP documents when an `ITextView` was associated with our `ITextBuffer`. The issue with this is when the `ILanguageClient` infrastructure initializes itself before we do and starts our `LanguageServer` it's we start retrieving requests that require access to our `LSPDocumentManager`. That's an issue because our `LSPDocumentManager` may not have been initialized yet resulting in failure to fulfill requests.
- Changed how we initialize `ITextBuffer`s. Before we were setting up all of the logic to change the content type of a text buffer and populate its properties at the `EditorFactory` layer; however, how we were doing it (waiting for the ITextBuffer to load) resulted in `ITextDocumentListener` events firing prior to our content type changes would occur. This is a problem becasue the `ILanguageaClient` infrastructure will start making its decision to turn on LSP features for your `ITextBuffer` at the point and time. Now we change the `ITextBuffer`s content type (and set properties) during the `ITextDocumentListener` created pipeline.

This resulted in almost all of our logic in our editor factory to be split out into two classes.
  1. `LSPEditorFeatureDetector`, we needed to be able to detect the "enabledness" of features in two locations. Once at the `EditorFactory` layer to ensure we know when to disallow other editor factories participation in the `ITextBuffer` creation and a second at the `ITextDocumentListener` layer when we inspect an `ITextDocument` and need to determine if we want to "initialize" it (change its content type etc.).
  2. `RazorLSPTextDocumentCreatedListener`, this is our `ITextDocumentListener` i've been referring to. It now houses the logic on how to change the content type and populate the `ITextBuffer`'s properties.

- Changed our `LSPDocumentManager` to no longer depend on `ITextView`s for ref counting documents. Instead we just take an `ITextBuffer` and keep an internal count of how many times we've been asked to track a document. In practice this number never goes past 1 however it doesn't hurt to be defensive.
- Added IVT from CodeAnalysis.Razor to our LanguageServerClient project in order to enable the retrieval of our `FilePathComparison` type.
- Given the new refactoring of our feature detector and the `ITextDocumentListener` pieces I was able to add extensive testing to ensure all things work as expected.

Fixes dotnet/aspnetcoredotnet/aspnetcore-tooling#19160
\n\nCommit migrated from d0a7dfce09
2020-03-02 20:09:03 -08:00
N. Taylor Mullen b89d98da19 Split Razor Language Server into library and executable.
- This is a pre-requisite work item to run our language server in-process in Visual Studio. VS is a .NET framework application so we can't have a language server which targets netcoreapp be loaded. Therefore, in order to account for this I needed to re-target our language server library to netstandard2.0 so it can be referenced via a netcoreapp (rzls.exe) and a .NET framework app.
- Added a new `rzls` project to be the maintainer of our OOP language server
- Had to make adjustments to the existing language server project to be compatible with netstandard2.0.
- Created a new `RazorLanguageServer` type to initiate our Language Server but not start and initialize it. To enable a consumer to initialize the new language server I had to use private reflection to `Initialize` O#'s internal type. This is a temporary measure which I intend to expand the O# lib to make their Initialize method public.

dotnet/aspnetcoredotnet/aspnetcore-tooling#19185
\n\nCommit migrated from 79841b9371
2020-02-28 22:32:47 -08:00
John Luo b8cd714033 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from f0bc410c4b 2020-02-28 13:35:44 -08:00
Ajay Bhargav B d41276b0fa Publish generated HTML in the client (dotnet/aspnetcore-tooling#1633)
* Publish generated HTML in the client

* feedback

* fix
\n\nCommit migrated from a666c6f5e3
2020-02-27 14:49:52 -08:00
Ajay Bhargav B b84fc9b3b6 Generate pure HTML document as part of Razor code generation (dotnet/aspnetcore-tooling#1624)
* Generate pure HTML document as part of Razor code generation

* feedback
\n\nCommit migrated from 478e2ceda8
2020-02-25 13:40:08 -08:00
Doug Bunting 5565519125 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from 3252bbb2dc 2020-02-20 14:24:03 -08:00
Ajay Bhargav B f1ccf855eb LSP Razor formatting for Razor code block directives (dotnet/aspnetcore-tooling#1573)
LSP Razor formatting for Razor code block directives
- Support for @code/@functions block formatting
    - Except when it contains Markup or other Razor constructs
- Added a RazorFormattingService which is invoked by the RazorFormattingEndpoint.
- Added a custom razor/rangeFormatting command that the server can use to ask the client to format a range of the projected C# or HTML document
- Added a CSharpFormatter and HTMLFormatter that invoke the above mentioned command
- Added FormattingSpan and its corresponding visitor to represent Razor understanding of indentation
- Moved the document mapping code to a separate RazorDocumentMappingService service for ease of use
- Added necessary extension methods for convenience. Some of them were copied from Roslyn
- Some cleanup
- Added a C# test formatter to enable unit testing. Right now it calls Roslyn APIs directly. As far as I've seen its behavior is the same as OmniSharp formatting except it doesn't remove trailing whitespace and empty lines. I am following up with people to understand why that is the case.
Added/updated tests
\n\nCommit migrated from 62051b9ad7
2020-02-13 16:37:15 -08:00
Ajay Bhargav Baaskaran 3bf16941eb Merge branch 'release/3.1'
\n\nCommit migrated from abc26b91c6
2020-02-12 13:11:09 -08:00
Ajay Bhargav Baaskaran ca63634583 unskip test
\n\nCommit migrated from e5c0e3fbb3
2020-02-11 13:00:00 -08:00
Ajay Bhargav Baaskaran e4fb1d44ce Revert "Remove 1.x tests (dotnet/aspnetcore-tooling#1169)"
This reverts commit dotnet/aspnetcore-tooling@bd71bcf87b.
\n\nCommit migrated from 61b1896d00
2020-02-11 13:00:00 -08:00
Ajay Bhargav B 2be31713ce Upgrade roslyn deps to 3.4.0 (dotnet/aspnetcore-tooling#1564)
\n\nCommit migrated from 6cd4f21348
2020-02-10 12:56:51 -08:00
Ryan Brandenburg 718a130b3f Fix # in FilePath (dotnet/aspnetcore-tooling#1553)
Fix # in FilePath
\n\nCommit migrated from d29c3b2f12
2020-02-06 16:44:48 -08:00
Ajay Bhargav B a32887aec4 Sync client settings with LSP server (dotnet/aspnetcore-tooling#1549)
* Sync client settings with LSP server

* feedback

* Skip flaky test https://github.com/dotnet/aspnetcore/issues/18707

* Cleanup

* Make it abstract for consistency
\n\nCommit migrated from 9a05bd16c6
2020-01-30 18:24:32 -08:00
Ryan Brandenburg 07fcf46959 Supply the `PropertyName` for Context TagHelper results. (dotnet/aspnetcore-tooling#1545)
Supply the PropertyName for Context TagHelper results
\n\nCommit migrated from d5b77f46f9
2020-01-28 17:17:47 -08:00
N. Taylor Mullen 3dd1427ad8 Skip Publish_NoBuild_CopiesStaticWebAssetsToDestinationFolder.
- This test has around a pretty high failure rate. Always find myself having to retry builds to work around this. Skipping for now until flakyness can be resolved.

dotnet/aspnetcoredotnet/aspnetcore-tooling#18561
\n\nCommit migrated from 09514f5b4d
2020-01-24 11:45:40 -08:00
N. Taylor Mullen ef4151425a Skip Publish_CopiesStaticWebAssetsToDestinationFolder_PublishSingleFile. (dotnet/aspnetcore-tooling#1532)
This test has around a 50% pass rate. Always find myself having to retry builds to work around this. Skipping for now until flakyness can be resolved.

dotnet/AspNetCoredotnet/aspnetcore-tooling#18543\n\nCommit migrated from 4187049b4f
2020-01-23 13:50:59 -08:00
Kevin Pilch a30ed5c841 Update links for repo moves (dotnet/aspnetcore-tooling#1531)
\n\nCommit migrated from 6b8cdab2f3
2020-01-23 12:20:49 -08:00
John Luo 9cf7425328 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from c01b984fe9 2020-01-22 17:44:26 -08:00
Pranav K 61cd85b436 Merge pull request dotnet/aspnetcore-tooling#1490 from dotnet-maestro-bot/merge/release/3.1-to-master
[automated] Merge branch 'release/3.1' => 'master'\n\nCommit migrated from 2b4debb7e6
2020-01-17 14:58:49 -08:00
Pranav K 3ce497f20d Avoid restoring RID specific packs that don't exist.
\n\nCommit migrated from 1826963086
2020-01-17 10:35:11 -08:00
dotnet-maestro[bot] 4520c6498a [release/3.1] Update dependencies from dotnet/extensions (dotnet/aspnetcore-tooling#1496)
* Update dependencies from https://github.com/dotnet/extensions build 20200115.6

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20065.6
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20065.6
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20065.6
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20065.6
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20065.6
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20064.4 (parent: Microsoft.Extensions.Logging)

* Update dependencies from https://github.com/dotnet/extensions build 20200115.7

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20065.7
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20065.7
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20065.7
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20065.7
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20065.7
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20064.4 (parent: Microsoft.Extensions.Logging)

* Update dependencies from https://github.com/dotnet/extensions build 20200115.8

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20065.8
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20065.8
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20065.8
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20065.8
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20065.8
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20065.7 (parent: Microsoft.Extensions.Logging)

* Update dependencies from https://github.com/dotnet/extensions build 20200115.9

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20065.9
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20065.9
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20065.9
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20065.9
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20065.9
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20065.9 (parent: Microsoft.Extensions.Logging)

* Update dependencies from https://github.com/dotnet/extensions build 20200116.2

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20066.2
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20066.2
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20066.2
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20066.2
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20066.2
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20066.1 (parent: Microsoft.Extensions.Logging)

* Add System.Text.Json to nuget.config

* Update dependencies from https://github.com/dotnet/extensions build 20200116.3

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20066.3
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20066.3
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20066.3
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20066.3
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20066.3
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20066.1 (parent: Microsoft.Extensions.Logging)

* fix nuget.config

* Update dependencies from https://github.com/dotnet/extensions build 20200116.5

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.2-servicing.20066.5
- Microsoft.AspNetCore.Testing - 3.1.2-servicing.20066.5
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.2-servicing.20066.5
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.2-servicing.20066.5
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.2-servicing.20066.5
- Microsoft.Extensions.Logging - 3.1.2

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.2 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.1.2-servicing.20066.6 (parent: Microsoft.Extensions.Logging)

* fixup nuget.config

* Rely on regular restores for RID-specific package restores (dotnet/aspnetcore-tooling#1502)

* Rely on regular restores for RID-specific package restores

* Pin the runtime to a previously shippped version in SDK tests

* Update src/Razor/test/testapps/Directory.Build.targets

Co-authored-by: William Godbe <wigodbe@microsoft.com>
Co-authored-by: Pranav K <prkrishn@hotmail.com>
\n\nCommit migrated from 5fd301284e
2020-01-16 17:55:52 -08:00
Pranav K 427ec8a4c7 Rely on regular restores for RID-specific package restores (dotnet/aspnetcore-tooling#1502)
* Rely on regular restores for RID-specific package restores

* Pin the runtime to a previously shippped version in SDK tests

* Update src/Razor/test/testapps/Directory.Build.targets
\n\nCommit migrated from b0a60a0231
2020-01-16 17:49:21 -08:00
Ryan Nowak ae7d4ac66d Merge branch 'merge/release/3.1-to-master' of https://github.com/dotnet-maestro-bot/AspNetCore-Tooling into merge/release/3.1-to-master
\n\nCommit migrated from 351d1bbe89
2020-01-16 16:48:00 -08:00
Justin Kotalik 18830cb2fe Update BuildIntrospectionTest.cs\n\nCommit migrated from 6712efc3af 2020-01-15 10:31:41 -08:00
Justin Kotalik 97c847b5f0 Merge branch 'release/3.1'
\n\nCommit migrated from 0ef68536ee
2020-01-15 10:01:46 -08:00
Artak c0bf414494 Merge pull request dotnet/aspnetcore-tooling#1383 from dotnet/javiercn/update-manifest-generation
[StaticWebAssets] Updates manifest generation to allow multiple content roots under the same base path for a single project\n\nCommit migrated from 5e957b4c3b
2020-01-15 09:02:47 -08:00
Artak c2cfbc87ab Merge pull request dotnet/aspnetcore-tooling#1442 from dotnet/javiercn/swa-publish-no-build
[StaticWebAssets][Fixes #AspNetCore/17426] Publish no build doesn't copy static web assets from referenced projects\n\nCommit migrated from 45a6c10276
2020-01-14 18:46:50 -08:00
Artak 631578fd74 Merge pull request dotnet/aspnetcore-tooling#1394 from dotnet/prkrishn/17308
Load the netcoreapp3.1 compiled task when running in Core MSBuild\n\nCommit migrated from a661e043e3
2020-01-14 18:46:22 -08:00
N. Taylor Mullen 8ea0f36d39 Remove Test variant Newtonsoft.Json.
- Our Newtonsoft.Json versions are now aligned.
\n\nCommit migrated from e7a506b1f4
2020-01-14 14:35:13 -08:00
Kevin Pilch 52b9fd85a2 Update links for repo moves/renames (dotnet/aspnetcore-tooling#1474)
\n\nCommit migrated from fae9a5fdbc
2020-01-08 16:51:55 -08:00
Ryan Brandenburg 91efa9310f TagHelper QuickInfo (dotnet/aspnetcore-tooling#1443)
Add Hover support for TagHelpers and Components\n\nCommit migrated from c7815ea4f2
2019-12-13 16:58:27 -08:00
Javier Calvarro Nelson 541323631f [StaticWebAssets] Updates manifest generation to allow multiple content
roots under the same base path for a given project.
\n\nCommit migrated from 5e68cb88e4
2019-12-13 05:30:38 -08:00
Javier Calvarro Nelson 3ff767b3d3 [StaticWebAssets][Fixes #AspNetCore/17426] Publish no build doesn't copy static web assets from referenced projects
\n\nCommit migrated from 6685cd6105
2019-12-10 12:22:09 -08:00
Javier Calvarro Nelson 0c907a8225 [Static web assets][Fixes #AspNetCore/17079] PublishSingleFile results in 404 errors for Nuget components
\n\nCommit migrated from 53dd89a41d
2019-12-05 07:52:49 -08:00
Pranav K 6ec0c445ce Load the netcoreapp3.1 compiled task when running in Core MSBuild
Fixes https://github.com/aspnet/AspNetCore/issues/17308
\n\nCommit migrated from 51e2a0ee64
2019-12-02 10:51:32 -08:00
William Godbe c5fce0fce2 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from a0b7461a65 2019-11-22 12:53:28 -08:00
William Godbe 9328e4723e Merge branch 'release/3.1' into merge/release/3.0-to-release/3.1\n\nCommit migrated from 7e480a52e3 2019-11-22 11:12:31 -08:00
William Godbe 6942c1c7e3 Switch to Arcade model for PackageIcon (dotnet/aspnetcore-tooling#1325)
* Update dependencies from Arcade
* Switch to dotnet-eng\n\nCommit migrated from e37c190d7d
2019-11-20 19:27:17 -08:00
Ajay Bhargav Baaskaran fefb8a56ae Rename support in VS Code and other fixes (dotnet/aspnetcore-tooling#1336)
* Rename support in VS Code and other fixes

* feedback

* more feedback
\n\nCommit migrated from 5e2a8c7924
2019-11-20 11:05:30 -08:00
dotnet-maestro[bot] da085ad36d [release/3.1] Update dependencies from aspnet/Extensions (dotnet/aspnetcore-tooling#1347)
* Update dependencies from https://github.com/aspnet/Extensions build 20191118.3

- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.0-rtm.19568.3
- Microsoft.AspNetCore.Testing - 3.1.0-rtm.19568.3
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.0-rtm.19568.3
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.0-rtm.19568.3
- Microsoft.Extensions.NonCapturingTimer.Sources - 3.1.0-rtm.19568.3
- Microsoft.Extensions.Logging - 3.1.0

Dependency coherency updates

- Microsoft.NETCore.App.Runtime.win-x64 - 3.1.0 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.DependencyModel - 3.1.0 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Ref - 3.1.0 (parent: Microsoft.Extensions.Logging)

* Update flaky test

* another test
\n\nCommit migrated from b6f8920b2e
2019-11-19 21:28:03 +00:00
Ryan Brandenburg d5bf4f3f93 PR feedback
\n\nCommit migrated from 2c43ce1688
2019-11-15 10:31:46 -08:00
Ryan Brandenburg 075c91176e Razor GoToImplementation
\n\nCommit migrated from 12d1eae488
2019-11-14 14:55:48 -08:00
Ryan Brandenburg db9b8526d9 Go to definition (dotnet/aspnetcore-tooling#1313)
Go to definition
\n\nCommit migrated from 6ad962ea1a
2019-11-13 15:36:20 -08:00
Brennan 6d0088d446 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from 348db011b7 2019-11-01 09:15:24 -07:00
Pranav K 7f36d6e5f0 Associate inputs and outputs for .Views dll with a set in FastUpToDate check (dotnet/aspnetcore-tooling#1277)
Follow up to https://github.com/dotnet/project-system/issues/5596

FastUpToDateCheck now has a way to associate inputs and outputs using the Set attribute.
This change prevents FastUpToDateCheck from rebuilding a project when a *.cshtml file is
newer than the project's dll output.

Fixes https://github.com/aspnet/AspNetCore/issues/13204\n\nCommit migrated from 2bf9c12490
2019-10-31 12:31:50 -07:00
Brennan 668e7b3051 Merge branch 'master' into merge/release/3.1-to-master\n\nCommit migrated from 94fd1eaa85 2019-10-31 11:58:31 -07:00
N. Taylor Mullen e2dc96c7b9 Fix runtime preventDefault / stopPropagation break.
- The Blazor runtime doesn't support adding attributes prior to any sort of content frames being applied. This change ensures that `ComponentAttributes` (how preventDefault / stopPropagation are represented) are handled like other HTML attributes (applied first).
- Updated existing tests and their baselines.

aspnet/AspNetCoredotnet/aspnetcore-tooling#16611
\n\nCommit migrated from 1513cd2a5b
2019-10-28 12:41:44 -07:00