Andrew Stanton-Nurse
eb113093cd
Clarify docs on HttpRequest.PathBase ( #17639 )
2019-12-11 13:50:03 -08:00
Piotr Błażejewicz (Peter Blazejewicz)
a2f38254d4
Change z-index value for reconnect modal. Fixes #12867 ( #17512 )
...
This changes the z-index of the Blazor reconnect modal to be aligned
with the z-index used by Bootstrap for modals overlays. If users rely on
Bootstrap for overlays within application this would prevent obstruction
of the Blazor's reconnect information with other overlays in the
application.
Addresses #12867
2019-12-11 13:15:04 -08:00
Eddy Nakamura
5ff9ed68d1
updating inline <code> to <c> ( #17611 )
...
* updating inline "code" tag to "c" tag
* Apply suggestions from code review
Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>
* reverting tag
* reverting tag
* reverting entire file
2019-12-11 11:47:38 -08:00
Chris Ross
11ecc62ea9
Handle IIS OnCompleted callbacks later #17268 ( #17756 )
2019-12-11 11:26:06 -08:00
Doug Bunting
cf6b5028c3
Improve generation and use of ref/ projects ( #17311 )
...
* Remove useless src/PackageArchive files
- not used outside 2.x branches
* Improve use of ref/ assemblies
- compile against ref/ assemblies but do not change package metadata
- update the metadata of implementation projects to include the ref/ assembly path
- update `@(ReferenceAssembly)` metadata for Extensions packages, not `@(PackageReference)`
- can be disabled using `$(CompileUsingReferenceAssemblies)` e.g. when generating ref/ projects
- include ref/ projects in source build by default
- remove `$(ExcludeFromSourceBuild)` overrides from ref/ project files
- use latest package references and use project references even when _not_ building the targeting packs
- restore previous `@(Reference)` -> `@(PackageReference)` logic
- add build-only Microsoft.Internal.Extensions.Refs package reference in most cases
- remove IndirectReferences.props and `@(_ExtensionInternalRefAssemblies)`; no longer needed
* Improve ref/ project generation
- use ../src/**/AssemblyInfo.cs files instead of including attributes in *.Manual.cs files
- for same reason, copy `@(InternalsVisibleto)` items from src/ to ref/ projects
- use eng/targets/CSharp.ReferenceAssembly.props instead of ref/Directory.Build.props files
- use TFM-specific *.Manual.cs files in ref/ project files instead of ref/Directory.Build.props files
optimizations and usability improvements:
- add `$(BuildMainlyReferenceProviders)` property to focus on reference providers when generating ref/ projects
- disable `$(UseReferenceAssemblyInImplementation)` to avoid using ref/ projects while generating them
nits:
- clean up whitespace and remove blank lines in ref/ project files
* Perform smaller cleanup
- remove `$(IsTargetingPackPatching)`; use only `$(IsTargetingPackBuilding)`
- remove `$(DisableServicingFeatures)`; enable the servicing features we need
- suppress baseline references even in servicing builds
- restore `$(AdditionalGenApiCmdOptions)`; useful when updating *.Manual.cs files
nits:
- simplify conditions using `$(HasReferenceAssembly)`
- correct spelling in comments
- shorten long lines
* Use a response file for GenAPI commands
- work around dotnet/arcade#4021 and help with additional ref assemblies
- mimic 111462e0c2 and integrate w/ other changes here
* Undo some manual ref/ project changes
- now done automatically or centrally
- remove manual `[TypeForwardedTo]` and `[InternalsVisibleTo]` attributes
- fully qualify a type now that `using` is gone
- remove dupe `@(Compile)` items for *.Manual.cs files; included in the ref/ project files
- remove redundant `$(AllowUnsafeBlocks)` and `$(NoWarn)` settings
nits:
- rename a *.Manual.cs file that's not TFM-specific
- remove `private` members
* Correct use of `@(ProjectReference)` items for reference providers
- use `@(Reference)` instead
* Remove recently-added `@(Compile)` and `@(Reference)` items
- were added due to missing `[InternalsVisibleTo]` attributes in ref/ assemblies or as early workarounds
- plus, now transitive references **Just Work™️ **
- expose `ClosedGenericMatcher` in the usual (*.Manual.cs) way
- also undo Microsoft.Extensions.ApiDescription.Server workaround
* Remove `private` members from ref/ *.Manual.cs files
- not useful and bloat the ref/ assemblies
* Cleanup warnings
- avoid "CSC warning CS2008: No source files specified." building site extensions
- correct warnings (as errors) about `RenderToStringResult` being obsolete
- add Microsoft.AspNetCore.SpaServices.Tests to Middleware solution
* Remove `@(RuntimeHostConfigurationOption)` workarounds
- deps files are unaffected by new ref/ assembly handling and test projects aren't special-cased
- also execute a test previously skipped due to deps file problems
* Regenerate ref/ projects
- pick up the latest generation changes
(unclear why Mvc.RazorPages/ref/Microsoft.AspNetCore.Mvc.RazorPages.netcoreapp3.0.cs changed but works)
* Fill in missing `internal` types 1 of n
- rename Microsoft.AspNetCore.Components.netstandard2.0.Manual.cs; need `RenderTreeFrame` type everywhere
- add types needed in unit and perf tests to *.Manual.cs files
* Clean up recent commits
- remove recently-added `private` members
- restore `_dummyPrimitive` fields in Microsoft.AspNetCore.Server.HttpSys.Manual.cs
* Add *.Manual.cs files for more projects
* !fixup! fields in *.Manual.cs `struct`s
- GenAPI sometimes generates `_dummy` and `_dummyPrimitive` fields _instead of_ visible members
- what GenAPI generates sometimes have the right length but actual fields don't hurt
- that is, using the real fields corrects both the visible API and `struct`s' sizes
nits:
- consolidate `namespace`s in Microsoft.AspNetCore.Mvc.Core.Manual.cs
* Remove special case for generating ref/ projects on non-Windows
- referenced issue was closed with no action but workaround still not required
- no tabs in generated content
* Only create ref/ projects for assemblies in the shared framework
- restrict when `$(HasReferenceAssembly)` is `true` by default
- add warnings when `$(IsAspNetCoreApp)` or `$(HasReferenceAssembly)` have unexpected values
* Remove "extra" ref/ projects
- associated implementation projects no longer have `$(HasReferenceAssembly)` set to `true`
* Add a few GenAPI exclusions
- see dotnet/arcade#4488
- generation for these members leads to NREs
* Add more `internal` types and members
- Identity/Core
- Identity/Extensions.Core
- Mvc/Mvc.ViewFeatures
* Add direct dependencies to work around CS1705 errors
- add direct references to some test and sample projects to make intent clear i.e. address CS1705 root cause
- these projects must use implementation assemblies for those direct references
- requirement also applies to anything depending on them e.g. functional tests
- for simplicity, use `$(CompileUsingReferenceAssemblies)` instead of targeted `@(Reference)` metadata
- leads to ~40 projects that do not themselves add ref/ metadata
- this is _not_ transitive i.e. it applies only to projects that override `$(CompileUsingReferenceAssemblies)`
* nits: Remove a few more `private` members in *.Manual.cs files
* !fixup! correct namespaces of a few types in *.Manual.cs files
* Try another way to fix Microsoft.AspNetCore.Blazor.Build.Tests
* Try another way to fix missing targets in Web.JS.npmproj
2019-12-11 07:36:59 -08:00
Brennan
efd765e970
Update wording ( #17757 )
2019-12-10 21:18:41 -08:00
Pranav K
3fba107522
Fix typo in error message ( #17741 )
2019-12-10 11:30:13 -08:00
Chris Ross
b719a799ae
Update h2 sync scripts ( #17720 )
2019-12-10 11:17:16 -08:00
Pranav K
0792e9a4f5
Merge pull request #17620 from aspnet/prkrishn/merge-remaining-blazor-wasm
...
Merge blazor-wasm branch
2019-12-10 10:27:41 -08:00
Artak
efc9d1228b
Account for UTC time to run the Dev-builds CI at midnight PT ( #17718 )
2019-12-10 08:11:26 -08:00
Artak
240d095614
Updated npm dependencies ( #17680 )
...
* Updated npm dependencies
2019-12-10 08:09:50 -08:00
dotnet-bot
d0cca8c2b5
Merge in 'release/3.1' changes
2019-12-10 15:35:56 +00:00
John Luo
9a4ab80f7e
Merge pull request #17672 from dotnet-maestro-bot/merge/release/2.1-to-release/3.0
...
[automated] Merge branch 'release/2.1' => 'release/3.0'
2019-12-09 19:01:47 -08:00
John Luo
3cfac251c7
Merge branch 'release/2.1' into release/3.0
2019-12-09 14:38:04 -08:00
Pranav K
41eb14d8a8
Skip blazor-standlone template
2019-12-09 13:00:56 -08:00
Matt Mitchell
6cdd41aecd
Update to 3.1.100 rtm sdk ( #17626 )
2019-12-09 12:23:40 -08:00
dotnet-maestro[bot]
24806e548a
Update dependencies from https://github.com/dotnet/arcade build 20191207.3 ( #17704 )
...
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19607.3
- Microsoft.DotNet.GenAPI - 1.0.0-beta.19607.3
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19607.3
2019-12-09 18:33:37 +00:00
Pranav K
37ec02b4d3
Remove published: false
2019-12-09 09:06:14 -08:00
Chris Ross
aca5f04922
Expose Http.Sys's Http/2 Reset error code API #17276 #16988 ( #17645 )
2019-12-09 06:17:38 -08:00
John Luo
c0e98ecdfd
Merge pull request #17637 from dotnet-maestro-bot/merge/release/3.1-to-blazor-wasm
...
[automated] Merge branch 'release/3.1' => 'blazor-wasm'
2019-12-08 21:58:59 -08:00
John Luo
bb4f3a513d
Merge branch 'blazor-wasm' into merge/release/3.1-to-blazor-wasm
2019-12-08 13:31:02 -08:00
Pranav K
d4164a1a14
Try undoing /nr:false
2019-12-08 07:28:54 -08:00
Pranav K
d9f129b95d
Skip tests
2019-12-07 14:33:31 -08:00
William Godbe
cafb50c68b
[release/3.0] Use Microsoft.NETCore.App.Internal for runtime version ( #17628 )
2019-12-06 14:56:44 -08:00
dotnet-bot
1a577b9842
Merge in 'release/3.1' changes
2019-12-06 22:03:07 +00:00
William Godbe
bc75981efe
[release/3.1] Use Microsoft.NETCore.App.Internal for runtime version ( #17627 )
2019-12-06 14:01:09 -08:00
dotnet-bot
0fbb7802e7
Merge in 'release/3.1' changes
2019-12-06 01:09:11 +00:00
dotnet-maestro[bot]
c3fa87ed04
Update dependencies from https://github.com/aspnet/Blazor build 20191205.1 ( #17642 )
...
- Microsoft.AspNetCore.Blazor.Mono - 3.1.0-preview4.19605.1
2019-12-06 01:06:40 +00:00
dotnet-bot
79c2268571
Merge in 'release/3.1' changes
2019-12-05 23:26:37 +00:00
dotnet-maestro[bot]
f4b63b9629
Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20191205.1 ( #17636 )
...
- Microsoft.EntityFrameworkCore.Tools - 3.1.1-servicing.19605.1
- Microsoft.EntityFrameworkCore.SqlServer - 3.1.1-servicing.19605.1
- dotnet-ef - 3.1.1-servicing.19605.1
- Microsoft.EntityFrameworkCore - 3.1.1-servicing.19605.1
- Microsoft.EntityFrameworkCore.InMemory - 3.1.1-servicing.19605.1
- Microsoft.EntityFrameworkCore.Relational - 3.1.1-servicing.19605.1
- Microsoft.EntityFrameworkCore.Sqlite - 3.1.1-servicing.19605.1
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.1.1-preview4.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.1.1-servicing.19604.6 (parent: Microsoft.EntityFrameworkCore)
2019-12-05 23:20:00 +00:00
dotnet-maestro[bot]
0fd9f27d60
Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20191205.8 ( #17635 )
...
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 5.0.0-alpha.1.19605.8
- Microsoft.AspNetCore.Razor.Language - 5.0.0-alpha.1.19605.8
- Microsoft.CodeAnalysis.Razor - 5.0.0-alpha.1.19605.8
- Microsoft.NET.Sdk.Razor - 5.0.0-alpha.1.19605.8
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.ActivatorUtilities.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Caching.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Caching.Memory - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Caching.SqlServer - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Caching.StackExchangeRedis - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.CommandLineUtils.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.AzureKeyVault - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.Binder - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.CommandLine - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.FileExtensions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.Ini - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.Json - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.KeyPerFile - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.UserSecrets - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration.Xml - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Configuration - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.DependencyInjection.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.DependencyInjection - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.DiagnosticAdapter - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Diagnostics.HealthChecks - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.FileProviders.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.FileProviders.Composite - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.FileProviders.Embedded - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.FileProviders.Physical - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.FileSystemGlobbing - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.HashCodeCombiner.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Hosting.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Hosting - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.HostFactoryResolver.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Http - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Localization.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Localization - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.Abstractions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.AzureAppServices - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.Configuration - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.Console - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.Debug - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.EventSource - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.EventLog - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.TraceSource - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging.Testing - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.ObjectPool - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Options.ConfigurationExtensions - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Options.DataAnnotations - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Options - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Primitives - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.TypeNameHelper.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.ValueStopwatch.Sources - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.WebEncoders - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Internal.Extensions.Refs - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.JSInterop - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Mono.WebAssembly.Interop - 5.0.0-preview3.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.Extensions.Logging - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Internal.AspNetCore.Analyzers - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
- Microsoft.AspNetCore.Testing - 5.0.0-alpha1.19605.6 (parent: Microsoft.AspNetCore.Razor.Language)
2019-12-05 22:56:03 +00:00
Pranav K
d26a7d6224
Change the minimum VS version requirement ( #17633 )
2019-12-05 14:29:27 -08:00
dotnet-bot
598e43ae39
Merge in 'release/3.1' changes
2019-12-05 21:38:18 +00:00
dotnet-maestro[bot]
0a6e4d10e8
Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20191205.6 ( #17624 )
...
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.1.1-servicing.19605.6
- Microsoft.AspNetCore.Razor.Language - 3.1.1-servicing.19605.6
- Microsoft.CodeAnalysis.Razor - 3.1.1-servicing.19605.6
- Microsoft.NET.Sdk.Razor - 3.1.1-servicing.19605.6
2019-12-05 13:32:22 -08:00
Pranav K
334961ef25
Ignore template sln during CodeCheck
2019-12-05 13:27:56 -08:00
Pranav K
8da5bbc8a9
Merge pull request #17600 from dotnet-maestro-bot/merge/release/3.1-to-blazor-wasm
...
[automated] Merge branch 'release/3.1' => 'blazor-wasm'
2019-12-05 12:59:18 -08:00
dotnet-bot
f6f3f6f122
Merge in 'release/3.1' changes
2019-12-05 20:44:46 +00:00
William Godbe
1f114dff50
Download runtime from suffixed location in dotnetcli blob storage ( #17592 )
2019-12-05 12:33:38 -08:00
Pranav K
f5492be35b
Use a real package name ( #17621 )
2019-12-05 12:15:56 -08:00
Pranav K
ca16c7fd59
Merge remote-tracking branch 'origin/blazor-wasm' into prkrishn/merge-remaining-blazor-wasm
2019-12-05 11:04:26 -08:00
Pranav K
51f0e07b63
Merge branch 'blazor-wasm' into merge/release/3.1-to-blazor-wasm
2019-12-05 10:59:13 -08:00
Pranav K
03e56a4903
Merge commit '76ae0a2e217a290677418838db90c9173d555d61' into prkrishn/merge-remaining-blazor-wasm
2019-12-05 09:55:42 -08:00
Pranav K
e72223eaf5
Merge pull request #17562 from aspnet/prkrishn/merge-blazor-wasm
...
Merge blazor-wasm -> master
2019-12-05 09:54:10 -08:00
Andrew Stanton-Nurse
06a85e5db2
Dairai/add http class descriptions ( #17349 )
2019-12-05 09:28:29 -08:00
dotnet-maestro[bot]
30be2bdf76
[release/3.0] Update dependencies from 2 repositories ( #17601 )
...
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20191204.2
- Microsoft.EntityFrameworkCore.Tools - 3.0.2-servicing.19604.2
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.2-servicing.19604.2
- dotnet-ef - 3.0.2-servicing.19604.2
- Microsoft.EntityFrameworkCore - 3.0.2-servicing.19604.2
- Microsoft.EntityFrameworkCore.InMemory - 3.0.2-servicing.19604.2
- Microsoft.EntityFrameworkCore.Relational - 3.0.2-servicing.19604.2
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.2-servicing.19604.2
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.2-servicing-19576-08 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- System.Drawing.Common - 4.6.2-servicing.19576.7 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Extensions.DependencyModel - 3.0.2-servicing-19576-08 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Internal - 3.0.2-servicing-19576-08 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.Platforms - 3.0.1-servicing.19576.7 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Internal.AspNetCore.Analyzers - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.2-servicing.19604.3 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20191204.5
- Microsoft.NET.Sdk.Razor - 3.0.2-servicing.19604.5
- Microsoft.CodeAnalysis.Razor - 3.0.2-servicing.19604.5
- Microsoft.AspNetCore.Razor.Language - 3.0.2-servicing.19604.5
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.2-servicing.19604.5
2019-12-05 07:47:36 -08:00
Chris Ross
5033efb3fe
Clean up test skip conditions ( #17529 )
2019-12-05 04:42:39 -08:00
Dairai Nyabando
d4f380f67a
Removing unnecessary param tags and words
...
#17349
2019-12-04 23:04:39 -05:00
Dairai Nyabando
a71aa8a5bc
Correcting closing XML remark tag
...
#17349
2019-12-04 22:54:00 -05:00
Will Godbe
90aa91ab8c
Merged PR 4684: Merge 'release/3.1' into internal branch
...
Fixed a merge conflict in the code mirror from github into 'internal/release/3.1'
2019-12-05 02:27:14 +00:00
Pranav K
ff6f669d94
Skip Blazor.Build tests from Helix
2019-12-04 17:29:07 -08:00