Brennan
833ddbe899
Fix broken build ( #10541 )
2019-05-25 14:47:22 -07:00
Ben Adams
44b2768307
Use Pipelines in PlaintextApp sample ( #7227 )
2019-05-25 12:18:14 -07:00
Stephen Halter
49c01eefec
Log clearer handshake failures in SignalR .NET client ( #10433 )
2019-05-24 10:32:41 -07:00
Steve Sanderson
54fff2b168
Server-side Blazor template with authentication ( #10444 )
2019-05-24 18:10:52 +01:00
Justin Kotalik
3be11f6544
Increase stack size for IIS Inprocess ( #10511 )
2019-05-24 08:16:54 -07:00
Steve Sanderson
d18a033b1e
Integrate AuthorizeView with actual authorization ( #10487 )
2019-05-24 15:28:37 +01:00
John Luo
2c70498c13
Fix TLS protocols used in tests ( #10483 )
2019-05-23 20:07:39 -07:00
Arthur Vickers
eef19949de
Move Identity tests from SQL Server to SQLite for better reliability ( #10300 )
2019-05-23 16:32:48 -07:00
dotnet-maestro[bot]
72433039c0
Update dependencies and pin System.Data.SqlClient ( #10434 )
2019-05-23 15:40:53 -07:00
BrennanConroy
c05244cda9
More docker resiliency for tests ( #10425 )
2019-05-23 14:46:32 -07:00
Ryan Nowak
2948c81aea
Fix RendererSyncContext.Post() ( #10451 )
...
* Fix RendererSyncContext.Post()
Fixes : #9683 - SignalR connection breaks on large DOM
The root cause here is a misbehaving sync context. It's not legal for a
Post() implementation to run a callback synchronously. We want that
behavior for most of the functionality Blazor calls directly, but Post()
should always go async or else various threading primitives are broken.
* Fix incorrect tests
These tests have the assumption that setting the result of a TCS will
execution continuations synchronously. This was a bug in our
SyncContext, and these tests needed updating to be more resiliant.
* Remove a delegate allocation
2019-05-23 10:39:53 -07:00
Artak
a6dce7b33c
Updating minimum required VS version to 16.2 ( #10458 )
...
* Updating minimum required VS version to 16.2
2019-05-23 10:26:07 -07:00
Jacques Eloff
eebd61642f
Merge pull request #10296 from aspnet/joeloff/LocLink
...
Fix .wxl reference
2019-05-23 09:05:04 -07:00
Chris Ross
156c4feb65
Put request trailers in a separate collection ( #10410 )
2019-05-23 09:00:39 -07:00
Stafford Williams
c2e2d7d135
SignalR: Fix Crankier build ( #9976 )
...
* fix benchmarkapps build
* move Directory.* to BenchmarkServer
2019-05-23 08:20:34 -07:00
Steve Sanderson
6c5e1690ad
Update Mono WebAssembly for Blazor ( https://github.com/aspnet/Blazor/pull/1807 )
2019-05-23 13:10:53 +01:00
Dániel Lőczi
dbe9ab7dd5
Respect CancellationToken in HubConnection.StartAsync() ( #10140 )
2019-05-22 14:37:08 -07:00
BrennanConroy
f26b87aa42
Check for Java in local SignalR build ( #10455 )
2019-05-22 11:02:37 -07:00
Pranav K
72e2d13217
Make JsonPatch netstandard2.0
...
Fixes https://github.com/aspnet/AspNetCore/issues/9812
2019-05-22 10:22:42 -07:00
Chris Ross
ede9249223
React to Authorization refactor ( #10453 )
2019-05-22 09:36:52 -07:00
Chris Ross
f5879cc0d5
Add new Negotiate Auth handler ( #9831 )
2019-05-22 06:14:50 -07:00
Nate McMaster
01a8798936
Update links and disable warnings related to tests that don't work in Helix ( #10427 )
2019-05-21 16:39:06 -07:00
Pranav K
26b53236b1
Fix more null refs in Api Analyzers ( #10375 )
...
* Fix more null refs in Api Analyzers
* Make attributes used by analyzer public
* Compile analyzer tests against ref assemblies
* Turn on Nullable reference types and harden some null-checks
Fixes https://github.com/aspnet/AspNetCore/issues/8686
2019-05-21 16:17:15 -07:00
Pranav K
5df6e452b6
Support a few more complex types with DefaultTempDataSerializer ( #10314 )
...
* Support a few more complex types with DefaultTempDataSerializer
Fixes https://github.com/aspnet/AspNetCore/issues/9540
2019-05-21 13:51:48 -07:00
Ryan Brandenburg
66fd4be4d7
Accessibility ( #10247 )
...
Template Accessibility
2019-05-21 11:22:21 -07:00
Justin Kotalik
47d39501a5
Upload native symbols for ANCM shim. ( #10297 )
2019-05-21 08:34:28 -07:00
BrennanConroy
663c83c140
Fix build failures with new VS ( #10411 )
2019-05-20 17:51:06 -07:00
Dylan Dmitri Gray
55555bedd5
Merge pull request #10275 from aspnet/dylan/requestQ
...
start of request queue
2019-05-20 17:02:47 -07:00
Hao Kung
16a47948f8
Move AuthZ policy types back into Policy and rejigger AddAuthorization ( #10021 )
2019-05-20 16:20:19 -07:00
Dylan Dmitri Gray
54e5b15c24
it's gone for good
2019-05-20 11:58:30 -07:00
Pranav K
200c9e21bd
Use attributes for application part discovery ( #10271 )
...
* Use attributes for application part discovery
Fixes https://github.com/aspnet/AspNetCore/issues/4332
2019-05-20 09:10:12 -07:00
Steve Sanderson
147880f796
Components auth step 2 ( #10293 )
...
* CR feedback left over from #10227
* Begin adding E2E test case
* Add cookie auth and test login page
* Make E2E auth component work client-side too
* Restructure auth E2E tests around a router so there can easily be multiple such test components
* Add E2E test case for AuthorizeView
* Prepare for E2E test implementations
* Fix ToBaseRelativePath handling of hashes
... otherwise E2E test will fail, because we're using the hash to control server-or-client execution
* Decouple E2E execution mode from hosting mode
* Actual E2E tests for cascading authentication state
* Actual E2E tests for AuthorizeView (in "no authentication rule" mode)
* Fix inconsistent namespace
* CR: Manual ref assembly definitions for AuthorizeView/CascadingAuthenticationState
2019-05-20 15:41:02 +01:00
Doug Bunting
5502c2080e
Fix sign check
...
- most likely cause of failing official builds
- small typo in #10340 : need to find .cab files _below_ `$(TargetDir)`
2019-05-18 19:00:04 -07:00
Dylan Dmitri Gray
7ff5293177
added HttpsPolicy back
2019-05-18 18:31:31 -07:00
BrennanConroy
e953537307
Fix silly npm warnings ( #10339 )
2019-05-17 23:20:32 -07:00
Stephen Halter
8d83e5352d
Disable request body data rate limits per HTTP/2 stream ( #10355 )
2019-05-17 18:25:41 -07:00
Dylan Dmitri Gray
68606a2d80
removed redundant HttpsPolicy dependency
2019-05-17 16:56:17 -07:00
Justin Kotalik
2e89aa4aa6
Log stdout to event log on failure to start process for ANCM out of process ( #10123 )
2019-05-17 16:30:59 -07:00
Pranav K
b9546df5d4
Defer link interception until Router is initialized ( #10062 )
...
* Defer link interception until Router is initialized
Fixes https://github.com/aspnet/AspNetCore/issues/9834
2019-05-17 15:33:35 -07:00
Pranav K
fdc056cebe
Fixup
2019-05-17 15:12:24 -07:00
Jacques Eloff
64152c9180
Merge pull request #10340 from aspnet/joeloff/copycabs
...
Copy CABs to artifacts
2019-05-17 14:47:23 -07:00
Dylan Dmitri Gray
206c1e8a8a
Removed error line
2019-05-17 14:37:16 -07:00
Dylan Dmitri Gray
5e85b3773b
ready for final review
2019-05-17 14:27:06 -07:00
Alessio Franceschelli
320fadb756
HeaderPropagation Middleware: configuration per client ( #10096 )
...
* HeaderPropagation Middleware: configuration per client
* Renamed fields
* Renamed fields
* Fix sample
* Addressed feedback, cleaned up and added tests
* Addressed feedback on HeaderPropagationHttpClientBuilderExtensions
* Updated reference assemblies
2019-05-17 14:16:44 -07:00
Pranav K
c43d713fd4
Re-enable FlushPointTest
...
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/2300
2019-05-17 14:02:26 -07:00
Chris Ross
b670246e3d
Add ForwardedHeaders to CreateDefaultBuilder #4135 ( #10273 )
2019-05-17 13:07:11 -07:00
Chris Ross
8b99354419
Expose the SslServerAuthenticationOptions via a callback #9349 ( #10310 )
2019-05-17 13:05:45 -07:00
Jacques Eloff
fa2cad3452
CopyCabs
2019-05-17 12:15:20 -07:00
Dylan Dmitri Gray
3e6f70d5e8
Justin fixed refs
2019-05-17 10:54:56 -07:00
Dylan Dmitri Gray
9363eff2a8
OrTimeout Extension
2019-05-17 10:40:19 -07:00
John Luo
818dc3b74a
Update log directory ( #10301 )
...
* Update log directory
This will now include functional test logs
* There were a few more places logs was used instead of log
2019-05-17 09:02:34 -07:00
John Luo
a05d555f11
Revert Work around potential race in PipeWriter ( #10315 )
...
* Remove Flaky attributes
* Revert "Work around potential race in PipeWriter (#10165 )"
This reverts commit bff1d0e6c4 .
2019-05-17 01:20:52 -07:00
Pranav K
6c5274a09f
Support a few more complex types with DefaultTempDataSerializer
...
Fixes https://github.com/aspnet/AspNetCore/issues/9540
2019-05-16 17:59:39 -07:00
Dylan Dmitri Gray
04ce6ef4c8
IDisposable fix
2019-05-16 16:59:40 -07:00
Dylan Dmitri Gray
ac305849e3
cleanup from PR feedback
2019-05-16 16:55:46 -07:00
Dylan Dmitri Gray
61f028ad32
Renamed project, cleaned sln file
2019-05-16 16:35:01 -07:00
Dylan Dmitri Gray
5956609846
start of request queue
2019-05-16 16:35:00 -07:00
Nate McMaster
117dd8cff4
Use Arcade version suffixes for local (3.0.0-dev) and PR builds (3.0.0-ci) ( #10279 )
...
* Update versioning for local and PR builds to match Arcade versioning
* Mark CanCancelIAsyncEnumerableClientToServerUpload as flaky - cref aspnet/AspNetCore-Internal#2465
* Disable rollforward in project template tests (3.0.0-dev is older than 3.0.0-preview*). This prevents tests from rolling forward onto technically older bits
2019-05-16 12:59:40 -07:00
Chris Ross
7db16f174d
Disable SameSite for AzureAd and B2C cookies #9115 ( #10280 )
2019-05-16 12:02:40 -07:00
Jacques Eloff
d83bb8efa2
Merge pull request #10241 from aspnet/joeloff/SetupAssets
...
Publish the shared framework MSI to artifacts
2019-05-16 10:56:38 -07:00
Jacques Eloff
75dcbf3f98
Fix .wxl reference
2019-05-16 10:32:37 -07:00
Hao Kung
394eb3ca13
Allow password validation failures to propogate ( #6034 )
2019-05-16 09:38:30 -07:00
Mickaël Derriey
3da1b107ef
Ensure AzureADOptions.Instance is set ( #9967 ) Fixes #6022
2019-05-16 08:24:12 -07:00
Nate McMaster
3e1086d587
Make dotnet-sql-cache an OOB package ( #10272 )
2019-05-16 07:49:10 -07:00
Steve Sanderson
1dbc203e19
Components auth: basic services and components ( #10227 )
2019-05-16 09:59:12 +01:00
Mickaël Derriey
9f4aa98ee2
Handle `null`s in the `JsonDocumentAuthExtensions.GetString` extension method ( #10252 )
2019-05-15 13:48:15 -07:00
Nate McMaster
dc90e11c7a
Move obj and bin directories into repo root ( #10063 )
...
The Arcade SDK requires that the obj/ and bin/ folders be placed in the top-level artifacts/ folder of the repo. Although this PR does not complete our Arcade convergence, this is a step towards updating our repo to build with the Arcade SDK.
Changes:
* Set output path for build to artifacts/bin/$(ProjectName)/
* Set intermediate output path for build to artifacts/obj/$(ProjectName)/
* Cleanup .gitignore files (remove duplication between repo-root and tested gitignore files)
* Add code check which looks for project files that share the same name (could cause issues)
* Rename project files to have unique names (avoid race condition of build output)
* Update all locations which were hard-coded to expect bin/ and obj/ in the project directory
* Add overrides for tests which still assert test binaries exist in a given location relative to the source code
2019-05-15 13:44:55 -07:00
Nate McMaster
77e08c26d5
Replace all usages of RepositoryRoot with RepoRoot ( #10267 )
...
Preparing to adopt the Arcade SDK, which uses the shorter variable name instead
2019-05-15 12:00:19 -07:00
Stephen Halter
bff1d0e6c4
Work around potential race in PipeWriter ( #10165 )
...
- Make sure we always await the last flush task before calling FlushAsync
again instead of preemptively calling FlushAsync and checking to see
if the ValueTask is incomplete before bothering to acquire the _flushLock
- This now acquires the _flushLock fore every call to Response.Body.Write
whereas this only happened for truly async writes before.
- I don't think this is a big concern since this should normally be uncontested,
and DefaultPipeWriter.FlushAsync/GetResult already acquire a lock.
2019-05-15 11:30:48 -07:00
Doug Bunting
6274705501
Merge branch 'release/2.2' => 'master' ( #10243 )
2019-05-15 11:13:26 -07:00
Ryan Brandenburg
e9fbf306f9
RunTemplateTests ( #9829 )
2019-05-15 09:52:52 -07:00
huysentruitw
18ce50f543
ContentDispositionHeaderValue must encode/sanitize new-line char ( #9971 )
2019-05-15 09:34:50 -07:00
Doug Bunting
35a5718960
Merge branch 'release/2.2' -> 'master'
2019-05-15 09:07:11 -07:00
Mickaël Derriey
4a2bd2adbf
Source server variables from IIS when running ANCM in-proc ( #10022 )
2019-05-15 08:26:29 -07:00
Steve Sanderson
2c58d82d44
Add components solution filter file
2019-05-15 13:19:51 +01:00
John Luo
20fcbf1f9a
Add a protobuf item template ( #10125 )
2019-05-14 20:55:26 -07:00
Justin Kotalik
47575a08a5
Handle a few other potentially null properties ( #10053 )
2019-05-14 18:08:05 -07:00
Justin Kotalik
93af64823e
Move iisexpress test to other IIS machines ( #10234 )
2019-05-14 18:07:27 -07:00
James Newton-King
a2c69b3d0c
HTTP2: Include END_STREAM with HEADERS frame to avoid empty DATA frame ( #10219 )
2019-05-15 10:56:06 +12:00
John Luo
4946c72dab
Add build for linux-musl-arm64 ( #10155 )
...
* Add build for linux-musl-arm64
* Remove redundant apk installs
2019-05-14 15:44:52 -07:00
Ryan Nowak
d794c52c75
Make RouteAttribute non-inherited ( #10236 )
...
* Make RouteAttribute non-inherited
Fixes : #5529
Inheriting and looking for inherited route attributes will cause nothing
but trouble. We had a bug tracking what to do about this and we decided
to make it really clear that routes are not inherited.
Previously the attribute was marked as inherited, but we woulnd't look
for inherited routes.
* add test
2019-05-14 15:37:17 -07:00
Daniel Roth
07a02dcbc7
Add missing app namespace to server-side Blazor template ( #10240 )
2019-05-14 14:44:50 -07:00
Hao Kung
0425808b70
RequiredPolicy reborn and less demanding as FallbackPolicy ( #9759 )
2019-05-14 12:42:34 -07:00
David Fowler
dd2721f5ca
Use UnsafeRegister for the handshake ( #10204 )
2019-05-14 11:13:45 -07:00
Nate McMaster
d558350d50
Move updateMigrations.cmd back into its correct subfolder
2019-05-14 10:49:47 -07:00
Jacques Eloff
3282e6fe2d
Publish the shared framework MSI to artifacts
2019-05-14 10:22:36 -07:00
Jacques Eloff
bde1b16498
Merge pull request #10179 from aspnet/joeloff/LocHB
...
Add localzied WXL files to bundles
2019-05-14 10:18:16 -07:00
Bruno
124064ef47
Add option to limit domains on AddRedirectToWww ( #9676 )
2019-05-14 08:33:03 -07:00
Ryan Nowak
2ed7be91e0
Fix #10185 remove .NET framework requirement from VSIX
2019-05-14 07:39:33 -07:00
Jacques Eloff
fb495ad7ed
Responding to feedback
2019-05-13 16:36:53 -07:00
Ryan Brandenburg
a266cecc0c
Fix template accessibility ( #10208 )
2019-05-13 15:54:04 -07:00
Pranav K
3d79b9aa58
Add some caching to CORS ( #9972 )
...
* Add some caching to CORS
2019-05-13 11:52:16 -07:00
Ryan Brandenburg
b76d9e2c36
Merge pull request #10192 from guardrex/guardrex/templates-line-ending
...
Add line endings to last lines of template files
2019-05-13 10:07:05 -07:00
James Newton-King
d5207af367
Improve TestServer support for Response.StartAsync ( #10189 )
2019-05-13 22:38:26 +12:00
Luke Latham
3e90b3840b
Add line endings to last lines of template files
2019-05-12 08:43:02 -05:00
BrennanConroy
208299aa31
Synchronize writing to connection and aborting connection ( #10043 )
2019-05-12 00:38:07 -07:00
Jacques Eloff
d819851b3b
Set Compressed=yes
2019-05-11 09:38:50 -07:00
Jacques Eloff
349ed16587
Add localized strings for bundles
2019-05-11 09:34:51 -07:00
Pranav K
8a3fdb4b21
Changes per PR comments
2019-05-11 06:22:19 -07:00
Pranav K
20982a947d
Add some caching to CORS
2019-05-11 05:43:44 -07:00
Nate McMaster
b744814f06
Enhancements to Helix testing ( #10007 )
...
* Add Windows 7 and 8.1 testing on Helix
* Install SQL Server on-demand in Helix test queues
* Only install mssql on Windows runs
* Use exit /b
* Add targets to better support running helix locally
* Set maxretrycount to 2
* Handle IIS issues on win7/win8
* Make HelixPreCommand's fail the workitem
* Add a pre-generated test cert of IIS Express
* Update helix doc and ignore netsh script failures
* Fix bug in detecting Windows queues and disable Win 7 until we have queues ready
* Fix HttpSys functional tests on Helix
2019-05-10 15:04:16 -07:00
James Newton-King
11311d4f9d
Return response trailers from test server ( #10135 )
2019-05-11 07:50:53 +12:00
Stephen Halter
1cb42b1374
Auto-reconnect support for .NET SignalR client ( #9535 )
2019-05-10 11:08:18 -07:00
dotnet-maestro[bot]
6a630ca904
[master] Update dependencies from aspnet/AspNetCore-Tooling ( #10130 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190509.1
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19259.1
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19259.1
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19259.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19259.1
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Http - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Options - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.JSInterop - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.CSharp - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Win32.Registry - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.ComponentModel.Annotations - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Data.SqlClient - 4.7.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Diagnostics.EventLog - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.IO.Pipelines - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Reflection.Metadata - 1.7.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Security.Permissions - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Security.Principal.Windows - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Text.Encodings.Web - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Text.Json - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- System.Threading.Channels - 4.6.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19256.13 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27708-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19259.1 (parent: Microsoft.CodeAnalysis.Razor)
* react to json changes
- thanx @BrennanConroy ❕
2019-05-10 10:52:02 -07:00
Steve Sanderson
efa9a4e530
In components event dispatch, use explicit fire-and-forget instead of async void ( #10149 )
2019-05-10 18:12:32 +01:00
Ben Adams
0a148bfca4
Use sealed contexts for ResourceInvoker
2019-05-09 22:06:40 -07:00
Mikael Mengistu
5d56d8fdb0
Reduce Functional Test Stream Item Delay ( #10127 )
2019-05-09 21:22:40 -07:00
Mikael Mengistu
0adbfc6d25
Revert "Remove CancelableEnumerator ( #10099 )" ( #10129 )
2019-05-09 21:08:20 -07:00
dotnet-maestro[bot]
3cd84a9b03
[master] Update dependencies from aspnet/AspNetCore-Tooling ( #10100 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190508.1
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19258.1
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19258.1
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19258.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19258.1
* React to AspNetCore-Tooling Razor diagnostics change.
- It seems like on MacOS the ordering mechanism results in mismatched expectations for the CompilerFailedExceptionFactoryTest.
- thanx @NTaylorMullen !
2019-05-09 21:06:27 -07:00
Andrew Stanton-Nurse
d3dc92ff6c
suppress ExecutionContext by default in TestServer ( #10094 )
...
fixes #7975
There is a 'PreserveExecutionContext' property to turn the old behavior back on. Also I had to modify where IHttpApplication.CreateContext is called since that's what sets the IHttpContextAccessor, which depends on AsyncLocals!
2019-05-09 20:47:43 -07:00
Ryan Nowak
0b590ff46f
Fix #6764 EndpointConventionBuilder API review
2019-05-09 19:38:43 -07:00
Mikael Mengistu
d37b2ca70a
Remove CancelableEnumerator ( #10099 )
2019-05-09 17:04:51 -07:00
Alexander Tsoi
41df269eaf
Fix typo in xml docs ( #10119 )
2019-05-09 14:56:11 -07:00
Stephen Halter
2a88a3dd65
Expand slow heartbeat warning ( #10092 )
...
- Mention thread pool starvation as a possible cause.
2019-05-09 14:44:26 -07:00
Ryan Nowak
b03bca15de
Fix : #10091
2019-05-09 14:00:31 -07:00
Ryan Nowak
15b1566d90
Do something different I guess.
2019-05-09 13:59:38 -07:00
Ryan Nowak
434bf614d5
Make GetOrdereredMetadata return something good
2019-05-09 13:59:38 -07:00
Ryan Nowak
f45250ce5e
Mark test as flaky
2019-05-09 13:44:16 -07:00
Ryan Nowak
24784d0681
Fix #10066
2019-05-09 13:44:16 -07:00
BrennanConroy
9c3266008a
Set defaults for Json options ( #10057 )
2019-05-09 12:50:38 -07:00
Ryan Nowak
7642f9d12a
Fixes : #9281 - implement SignalR detection ( #10065 )
...
This change adds detection of various SignalR configure-related calls to
the startup analysis infrastructure.
Also adds a shim that VS is going to call into to analyze the project
pre-publish.
2019-05-09 12:33:09 -07:00
Steve Sanderson
4db8260c6c
Fix components event dispatch ordering + E2E test fixes ( #10112 )
2019-05-09 18:32:26 +01:00
David Fowler
dcf49f2575
Move service registration before hosting startups run ( #10105 )
...
* Move service registration before hosting startups run
- This allows IHostingStartup to see default service registrations and override them.
- Added a test to verify that hosting startup can see the IWebHostingEnvironment. Unfortunately this is used by MVC to get the application name before the container is baked. This was found when porting our workshop from 2.2 to 3.0
2019-05-09 09:14:31 -07:00
Mickaël Derriey
a677fd231e
Make OIDC handler skip unrecognized requests ( #10060 )
2019-05-08 22:05:58 -07:00
huysentruitw
6d5b6b0c6f
Calling abort inside TestServer handler should set RequestAborted ( #9975 )
2019-05-08 22:00:42 -07:00
Ryan Nowak
b3836954ed
Fix #9316 Expose Blazor HubOptions
2019-05-08 16:22:13 -07:00
Nate McMaster
3dbbb2994c
Upgrade yarn and cleanup npm commands ( #10054 )
...
* Add yarn.lock file for NodeServices
* Remove references to 'npm install' (causes double-download of node modules) and replace npm commands in package.json with yarn for consistency
* Upgrade yarn to 1.15.2
2019-05-08 15:07:25 -07:00
Mikael Mengistu
e3bf01eec3
Adding more streaming benchmark scenarios ( #10049 )
2019-05-08 10:13:43 -07:00
Nick Sullivan
48d2f40192
blazor.boot.json - don't set physicalpath
2019-05-08 17:45:43 +01:00
Justin Kotalik
c22de8f39c
Add retries to helix failures and re-enable helix as a required workload ( #9221 )
2019-05-08 08:21:44 -07:00
Ryan Nowak
0a1d68b8f3
Remove EndpointSelectorContext
2019-05-08 08:14:24 -07:00
Larry Ewing
a36a57df65
Avoid using exception filters for AOT runtimes
2019-05-08 07:49:48 -07:00
Steve Sanderson
e0007f4f4b
Improve robustness of components Bind and EventBubbling E2E tests
2019-05-08 13:53:04 +01:00
Andrew Stanton-Nurse
8759518a97
add support for both env vars in #7916 fix ( #10009 )
2019-05-07 22:10:31 -07:00
Doug Bunting
58c67727df
Update all the things (except EF Core dependencies) ( #10025 )
...
- see #9923 for related discussion
- pin aspnet/EntityFrameworkCore dependencies
- chain aspnet/Extensions dependencies through aspnet/AspNetCore-Tooling instead
- run `darc` to grab the latest
- remove System.Text.Encodings.Web references
- now included in runtime.*.Microsoft.NETCORE.App packages
nits:
- copy a few `ReferenceResolution.md changes from aspnet/Extensions version
2019-05-07 22:06:39 -07:00
Mikael Mengistu
b0659f660b
Add System.Text.Json protocol to the SignalR functional tests ( #9936 )
2019-05-07 18:04:56 -07:00
Mikael Mengistu
a26c4e936b
Make stream buffer capacity configurable ( #9877 )
2019-05-07 17:13:07 -07:00
Andrew Stanton-Nurse
11516c9272
comment typo ( #9954 )
2019-05-07 15:22:00 -07:00
BrennanConroy
f30e738848
Pre-encode known Json values in SignalR ( #9999 )
2019-05-07 15:21:00 -07:00
Ryan Nowak
1b47f44876
Add a top-level node for analyzers ( #9906 )
...
This is the first step, and just estabilishes a skeleton. The end goal
is organize our analyzers under this node because:
1. We're writing some 'top level' analyzers that depend on everything
else
2. We want to be able to service analyzers on the SDK schedule
(independent of runtime).
Next, we'll merge the MVC analyzers into this assembly since there's no
reason for them to be separate. The MVC API analyzers will remain a
separate package, but under this node. The component analyzers will
remain separate as they need to ship as a package, but will move under
this node as well.
2019-05-07 15:01:08 -07:00
Stafford Williams
04600e83fc
Docs: Fix branch link ( #10014 )
2019-05-07 13:59:12 -07:00
John Luo
58447bee31
Remove gRPC template workarounds ( #10026 )
2019-05-07 13:57:15 -07:00
Justin Kotalik
18faf4ad7a
Make inprocess not set CaptureStartupErrors and let ANCM handle it. ( #9859 )
2019-05-07 12:03:11 -07:00
Ryan Nowak
e401f35b45
Header propagation sample and UX improvements ( #9793 )
...
Creating a sample for the header propagation package and some various
misc UX improvements based on building the sample.
A small list:
- allow duplicate inbound names
- de-dupe based on outbound names
- add sugar for configuration
- simplify pattern for transforming values
- add error message for missing middleware
Also a few small perf things.
I started this out by wanting to remove the following from the
configuration pattern:
```C#
options.Headers.Add("X-TraceId", null);
```
This pattern with null is undiscoverable, but we didn't provide
something simpler. The most common case was to add a custom collection
type so we can define sugar methods.
The next realization is that in practical case (dist tracing sample) you
either way to *key* off of the same inbound header twice, or you don't
have an inbound header at all, and you will synthesize the value every
time. This means that the way we're treating inbound header names is a
bit wrong. We don't want inbound header names to be unique, we want
*outbound header names to be unique*.
Next, I want to consolidate DefaultValue and ValueFactory. The problems
I saw with this:
- DefaultValue is a trap. It's rare to use a static value.
- ValueFactory really wants the header name *and* value
I think what's there now is much more terse to work with.
2019-05-07 11:07:42 -07:00
Steve Sanderson
e0c32f42f4
Key support. Implements #8232 ( #9850 )
...
* Store component/element keys on RenderTreeFrame
Also refactored how RenderTreeFrame gets constructed. The previous arrangement of having ad-hoc ctor overloads for different scenarios became intractible (too many combinations to avoid clashes; risk of accidentally losing field values when cloning). There's now one constructor per RenderTreeFrameType, so you always know where to add any new field values, and implicitly guarantees you don't lose other field values because adding a new param forces updates at all the call sites.
* Add StackObjectPool, which will be useful momentarily
* Support keyed insertions/deletions
* Refactor AppendDiffEntriesForRange to prepare for adding "move" logic
* Apply permutations on the JS side
* Handle keyed moves by writing a post-edit permutation list
* Shrink KeyedItemInfo struct
* Include sourcemaps when building client-side Blazor apps with ReferenceFromSource
* Update struct length of edit frames now it's explicit layout
It's longer now because all the reference-type fields, except the last, now have to be 8 bytes for compatibility with 64-bit runtimes. Previously on Mono WebAssembly the reference-type fields were all 4 bytes.
* Tolerate clashing keys (i.e., produce a valid diff, even if suboptimal)
* Tolerate keys being added/removed incorrectly
* E2E test harness for 'key'
* Some more unit test cases
* Invert diffing logic to prefer matching by key over sequence
Previously it preferred sequence over key, but that's wrong, and surfaces as bugs when you mix keyed and unkeyed items. We need to prefer key over sequence, because key is meant to guarantee preservation, whereas sequence is just best-effort preservation.
* Make unit test cases more adversarial
* First actual E2E test
* In E2E test, verify correct preservation of components
* E2E tests for simple insert/delete cases (with and without keys)
* E2E test for reordering. Also extend other tests to verify simultaneous editing.
* E2E test for many simultaneous changes
* Update reference sources
* CR: Avoid x = y = z
* CR: Only use 'finally' for actual cleanup
* CR: Clean up RenderTreeFrame assignment
* CR: Include 'key' in RenderTreeFrame.ToString()
* CR: Avoid "new T()" in StackObjectPool
* CR: Make KeyedItemInfo readonly
* CR: Handle change of frame type with matching keys (and sequence)
* CR: Add E2E test showing form + key scenarios
* Preserve focus across edits
* Tweak E2E test case
* In client-side Blazor, prevent recursive event handler invocations
* Actual E2E tests for moving form elements
2019-05-07 18:22:10 +01:00
BrennanConroy
14496c9989
React to SignalR hub protocol change ( #10010 )
...
https://github.com/aspnet/AspNetCore/issues/5320
2019-05-07 08:18:12 -07:00
Ryan Nowak
d3400f7cb2
Fix : #6882 - Explode UseBlazor ( #9449 )
...
This changes the recipe for client-side blazor to use similar primitives
to server side applications.
---
I ignored auto-rebuild support because it's currently dead code until we
have that in VS. If we add auto-rebuild to ASP.NET Core - we'd probably want
to make that a separate gesture inside `IsDevelopement()` like other
dev-time features anyway.
---
The static files hookup is a special thing because creating the file
server for a client-side Blazor app involves some non-trivial work. We
plan to make this better in the future.
What's nice about this pattern is that the implementation is pretty
simple and literal, and it scales fine if you have multiple Blazor
client-side apps.
I didn't provide a lot of options here, it's pretty much the same as
UseBlazor.
---
I feel pretty good about the wireup with routing to use the
`index.html` from the client app. I think it's pretty to-the-point.
2019-05-06 18:09:26 -07:00
Ryan Brandenburg
8fd86c38db
Make some tests Flaky ( #9935 )
...
Mark some tests flaky.
2019-05-06 15:33:02 -07:00
Ben Adams
bbf7ed2907
Lazy create ExceptionHandlerMiddleware statemachine ( #9549 )
2019-05-06 15:15:48 -07:00
huysentruitw
e436fd9d08
Add support for Redirect preserving method/body (HTTP 307 and 308) ( #9968 )
2019-05-06 15:07:07 -07:00
Hao Kung
0dfe695468
Stop caching policies in AuthorizeFilter ( #9957 )
2019-05-06 11:59:37 -07:00
Andrew Stanton-Nurse
557bbf7870
fix #7916 by using DOTNET_RUNNING_IN_CONTAINERS env var to detect container ( #9903 )
2019-05-06 11:55:45 -07:00
Andrew Stanton-Nurse
e6db096af5
fix #9130 by fixing source revision embedding ( #9902 )
...
We removed our CommitHash property in order to use the built-in SourceRevisionId property but didn't update ANCM
2019-05-06 10:16:15 -07:00
huysentruitw
f2f1d77517
TestHost.WebSocketClient should set Request.Host ( #9973 )
2019-05-06 08:52:56 -07:00
Pavel Krymets
fa239f20a5
EnableAzurePipelinesReporter for helix ( #8094 )
...
* EnableAzurePipelinesReporter for helix
* Update Helix SDK
* Revert a fix that broke things even more
* Try publishing test assets
* Try fixing Kestrel tests on Helix
* Try a temp file in the working directory
* Skip Http2Spec tests on Debian 8
* Missed update
* Try a different format
* Disable failing test on Fedora
* Mark flaky test
2019-05-05 22:15:10 -07:00
Justin Kotalik
aaaaf572fd
Implement MaxRequestBodySize feature for IIS inprocess ( #9475 )
2019-05-05 19:30:12 -07:00
bordecal
2d33c32187
Allow ValidationVisitor.ValidateComplexTypesIfChildValidationFails to be configured via MvcOptions ( #9312 )
...
* Allow ValidationVisitor.ValidateComplexTypesIfChildValidationFails to be configured via MvcOptions (#8519 )
* Regenerated reference source for Mvc.Core to add MvcOptions.ValidateComplexTypesIfChildValidationFails
* Simplified functional tests for MvcOptions.ValidateComplexTypesIfChildValidationFails usage scenarios
2019-05-05 07:08:25 -07:00
Howard Richards
77424a6b06
Amend server-side blazor template WeatherForecast TemperatureF to use formula - fixes #9955 ( #9981 )
2019-05-05 06:19:41 -07:00
Ben Adams
19c9010c2f
Read interface IList.Count once rather than per iteration ( #9962 )
2019-05-04 17:54:12 -07:00
huysentruitw
a2effc56e0
Ensure the selected certificate has an accessible private key #9915 ( #9965 )
2019-05-04 08:14:00 -07:00
Sébastien Ros
3f808160dd
Updating NuGet.config for benchmark apps ( #9959 )
2019-05-03 17:31:34 -07:00
BrennanConroy
f17721299a
Use NuGet.Config for SignalR benchmarks ( #9958 )
2019-05-03 17:31:04 -07:00
BrennanConroy
f00ba84186
Update dependencies ( #9952 )
...
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190502.5
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19252.5
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19252.5
- dotnet-ef - 3.0.0-preview6.19252.5
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19252.5
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19252.5
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19252.5
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19252.5
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-04 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19252.4 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190502.6
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19252.6
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19252.6
- dotnet-ef - 3.0.0-preview6.19252.6
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19252.6
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19252.6
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19252.6
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19252.6
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19252.5 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190502.7
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19252.7
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19252.7
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19252.7
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19252.7
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190502.6
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19252.6
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19252.6
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19252.6
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19252.6
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190502.7
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19252.7
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19252.7
- dotnet-ef - 3.0.0-preview6.19252.7
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19252.7
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19252.7
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19252.7
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19252.7
* Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-06 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19252.6 (parent: Microsoft.EntityFrameworkCore)
* Remove `AddRange(...)` methods from `Collection<T>` subclases
- see dotnet/corefx#35772
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190502.8
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19252.8
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19252.8
- dotnet-ef - 3.0.0-preview6.19252.8
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19252.8
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19252.8
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19252.8
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19252.8
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190502.9
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19252.9
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19252.9
- dotnet-ef - 3.0.0-preview6.19252.9
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19252.9
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19252.9
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19252.9
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19252.9
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Json - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19252.1 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27702-07 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19252.7 (parent: Microsoft.EntityFrameworkCore)
2019-05-03 16:25:12 -07:00
Bill Barry
08b12b0d72
comment typo
2019-05-03 17:15:05 -04:00
Ben Adams
617bc1ac02
Reduce StaticFileContext allocation/struct copy ( #9815 )
2019-05-03 11:55:37 -07:00
Pranav K
3c40df452d
Update MessagePack commit to be inline with upstream changes ( #9753 )
...
* Update MessagePack commit to be inline with upstream changes
2019-05-03 10:43:45 -07:00
Pranav K
3a4e7866d4
Utf8Json -> System.Text.Json ( #9933 )
2019-05-03 10:33:45 -07:00
Pranav K
093df67c06
Avoid buffering during input formatting for longer than necessary ( #9806 )
...
* Avoid buffering during input formatting for longer than necessary
EnableRewind uses FileBufferingReadStream which is not disposed until the response is completed.
This results in holding on to internal buffers for significantly longer than necessary. Changing it
to return the buffers immediately improved the allocations and throughput.
2019-05-03 06:45:52 -07:00
Ryan Nowak
127bc7ddd3
Fixes : #4597 Parse URI path with an endpoint ( #9728 )
...
Adds functionality to parse a URI path given a way to
find an endpoint. This is the replacement for various machinications
using the global route collection and `RouteData.Routers` in earlier
versions.
For now I'm just adding a way to do this using Endpoint Name since it's
a pretty low level feature. Endpoint Name is also very direct, so it
feels good for something like this.
2019-05-02 21:11:59 -07:00
BrennanConroy
0748d18a0c
Expose JsonSerializerOptions directly in SignalR ( #9881 )
2019-05-02 18:59:18 -07:00
Nate McMaster
8863ebfda1
Add --mutex option to yarn commands ( #9919 )
...
Attempt to improve reliability of running yarn commands. Our project structure might cause yarn to be launched multiple times. According to yarn docs, this option should avoid conflicts between multiple instances of yarn
https://yarnpkg.com/en/docs/cli/#toc-concurrency-and-mutex
2019-05-02 17:45:55 -07:00
Mikael Mengistu
20d0497163
Remove HubProtocol minor version ( #9898 )
2019-05-02 14:47:22 -07:00
Ryan Brandenburg
86f92cc020
Retry external templating links ( #9871 )
2019-05-02 14:45:28 -07:00
Jacques Eloff
8e96dce132
Merge pull request #9899 from aspnet/locprep
...
Localization prep - move strings from theme.xml to theme.wxl
2019-05-02 14:25:00 -07:00
John Luo
ea5e9556d5
Set namespace of gRPC template ( #9907 )
2019-05-02 12:59:02 -07:00
Mikael Mengistu
4cb86bc151
Mark flaky Angular test ( #9926 )
2019-05-02 10:28:11 -07:00
Jacques Eloff
da6a5a4cae
Localization prep - move strings from theme.xml to theme.wxl
2019-05-01 14:53:27 -07:00
James Newton-King
da66edc8ff
Change IEndpointConventionBuilder extension methods to use generic argument ( #8906 )
2019-05-02 07:25:54 +12:00
Ben Adams
86728ecc17
Seal some internal derived classes ( #9880 )
2019-05-01 10:29:05 -07:00
David Fowler
8af14399b6
Use spans for complex segments ( #9817 )
2019-04-30 22:56:53 -07:00
Mikael Mengistu
f30d79e9ef
IAsyncEnumerable Hub Parameters ( #9763 )
2019-04-30 16:51:05 -07:00
Nate McMaster
ae8e96f154
Remove API check baselines and related project settings ( #9846 )
2019-04-30 14:58:13 -07:00
Nate McMaster
0eb1fd7b50
Remove unnecessary restore feeds and update yarn.lock file ( #9845 )
2019-04-30 08:57:49 -07:00
Justin Kotalik
ba1f86d5bf
Make sure read is async first before cancelling. ( #9832 )
2019-04-30 08:49:45 -07:00
Ben Adams
caf4374f83
Speed up PathStringHelper ( #9709 )
2019-04-30 08:13:03 -07:00
Javier Calvarro Nelson
5c7c621895
[ Fixes #9079 ] Correctly route forgot password and error when using a virtual path ( #9738 )
2019-04-30 11:53:38 +02:00
Hao Kung
3020264ec7
[Identity] Make store Contexts virtual ( #9517 )
2019-04-29 22:24:51 -07:00
Doug Bunting
ae5b1135f5
Move from Microsoft.Bcl.Json.Sources to System.Text.Json ( #9836 )
...
- fix downgrade of CoreFx packages in core-sdk
- change eng/SharedFramework.Externsl.props
- remove System.Buffers and System.Runtime.CompilerServices.Unsafe references
- System.Text.Json brings them in transitively
- suppress baseline warning about System.Buffers
- remove more references from Microsoft.AspNetCore.SignalR.Protocols.Json project
- Microsoft.AspNetCore.SignalR.Common brings necessary .NET Standard 2.0 packages in transitively
- regenerate ref project files
details:
- CoreFx no longer produces the Microsoft.Bcl.Json.Sources package
- System.Text.Json is now .NET Standard 2.0-compatible
- see also dotnet/corefx#37129 and aspnet/Extensions#1610
2019-04-29 21:21:00 -07:00
Chris Ross
9579a6fe17
Add IConnectionCompleteFeature.OnCompleted #9213 ( #9754 )
2019-04-29 18:34:31 -07:00
Justin Kotalik
801198c7a9
Fix bad assert ( #9835 )
2019-04-29 15:40:22 -07:00
Neil Bostrom
d9ad99933c
Fixed issue with SPA templates generating invalid NPM package names ( #9725 )
...
Added unit test to check NPM package names matches regex
2019-04-29 14:42:25 -07:00
Andrew Stanton-Nurse
8c41472336
Quarantine a bunch of flaky tests ( #9751 )
2019-04-29 11:26:02 -07:00
Andrew Stanton-Nurse
fe3dfe627b
Be more defensive in HtmlDirectoryFormatter ( #9755 )
...
Fixes aspnet/AspNetCore-Internal#2245
Our tests were flaking out due to this possible race where the directory browser middleware enumerates the directory but a file is deleted while we're formatting the response. This change just catches the FNF/DNF exceptions and suppresses the file from the directory listing
2019-04-29 11:25:26 -07:00
Pranav K
2570126b27
Fixup XUnit warnings when running MVC tests ( #9823 )
2019-04-29 09:32:48 -07:00
Justin Dearing
33a4937d38
quotes around the path to allow for paths with spaces when mc.exe is called ( #9599 )
2019-04-29 09:57:18 -06:00
Gérald Barré
2624e73172
Remove useless ToString ( #9811 )
2019-04-29 08:56:54 -07:00
David Fowler
0d77594d17
Make endpoint routing allocation free in common scenarios ( #9774 )
...
- This change tries to remove the EndpointSelectoContext allocation by making it a wrapper struct over the HttpContext. Unlike before, the HttpContext gets mutated once any component in the routnig pipeline sets a non null endpoint. This used to happen after the processing was complete.
- This change also implements the IRouteValuesFeature and IEndpointFeature in HttpProtocol to avoid the feature allocation and feature collection version churn.
- We also set the IRouteValuesFeature in IRouter based scenarios.
- Since we're not implementing IRoutingFeature in endpoint routing anymore
we can just create the RouteData inside MVC. We do this by polyfilling RouteData when using endpoint routing inside of MVC
- Implement GetRouteValue in terms of IRouteValuesFeature
- Noop if the EndpointRoutingMiddleware if an endpoint is already set
- Added tests
2019-04-28 21:29:08 -07:00
David Fowler
cc8af6d2c4
Low hanging allocation fruit ( #9796 )
...
- We were allocating a Task<int> for every read, return a ValueTask<int> for the cases where reads complete synchronously.
2019-04-28 20:02:01 -06:00
Ben Adams
e22702891d
Pass catchAll ValueTuple via in ( #9807 )
2019-04-29 12:28:48 +12:00
Ajay Bhargav Baaskaran
8e37f8477d
Removed unused FSharpWebsite ( #9794 )
2019-04-28 09:18:19 -07:00
Gérald Barré
2b2aeee9f8
Use CryptographicOperations.FixedTimeEquals ( #9798 )
2019-04-26 23:46:21 -07:00
Ryan Nowak
2767e69bdd
Avoid allocations in more cases ( #9788 )
...
* Avoid allocations in more cases
Updates to DFA Matcher to avoid allocations in more cases. This makes
the matcher more pay-for-play.
- Avoid allocating an RVD while matching if possible
- Avoid allocating the candidate set unless necessary
First, avoid creating the RVD unless there are parameters or
constraints. This means that the candidate set can contain null route
value dictionaries. This seems fine because selectors are already
low-level. The route values feature will allocate an RVD when accessed,
so code in MVC or middleware won't even see a null RVD.
Secondly, avoid creating the candidate set unless there are selectors.
This will save an allocation most of the time since we won't need to run
selectors is really common cases. The candidate set is needed because
selectors mix mutability and async, so it needs to be a reference type.
However the default case is that we *don't* need to run selectors. The
impact of this is that we make a bunch of methods have an instance
variant and a static variant that operates on the array.
2019-04-26 19:28:44 -07:00
Daniel Roth
a439e8ba32
Update Blazor README.md ( #9769 )
2019-04-26 14:55:14 -07:00
Hao Kung
d4965b0f56
IdentityUI: Switch some cookie options to Configure ( #9529 )
2019-04-26 14:30:22 -07:00
Steve Sanderson
28d44af91a
Placeholder RenderTreeBuilder.SetKey() to enable aspnetcore-tooling work
2019-04-26 17:13:02 +01:00
BrennanConroy
74d9031f12
Add Dictionary tests back to Json tests ( #9761 )
2019-04-26 07:22:08 -07:00
David Fowler
b2457d25f7
Revert "Make endpoint routing allocation free in common scenarios"
...
This reverts commit 264ae1acd1 .
2019-04-26 02:10:25 -07:00
David Fowler
264ae1acd1
Make endpoint routing allocation free in common scenarios
...
- This change tries to remove the EndpointSelectoContext allocation by making it a wrapper struct over the HttpContext. Unlike before, the HttpContext gets mutated once any component in the routnig pipeline sets a non null endpoint. This used to happen after the processing was complete.
- This change also implements the IRouteValuesFeature and IEndpointFeature in HttpProtocol to avoid the feature allocation and feature collection version churn.
2019-04-26 02:08:53 -07:00
James Newton-King
8ce7bd171d
Make RouteOptions.EndpointDataSources internal ( #9708 )
2019-04-26 07:54:27 +12:00
John Luo
1845706a71
Make constructor internal ( #9706 )
2019-04-25 11:29:51 -07:00
Ryan Brandenburg
1f7b5855f7
Check browser console errors ( #9298 )
...
Check browser console errors
2019-04-25 10:02:22 -07:00
Steve Gordon
b033883728
Updating ConfigureServices overload ( #9711 )
...
Using the overload where the HostBuilderContext is available to support common usage scenarios such as accessing the environment and configuration whilst registering services.
2019-04-25 09:30:33 -07:00
Javier Calvarro Nelson
4f330271b8
[Templating][ Fixes #9503 ] Multiple small fixes ( #9691 )
...
* Disable react service worker when used alongside auth.
* Add logout detection.
* Update authorize route when authentication state changes.
2019-04-25 17:50:47 +02:00
Bruno Costa
dafb4d38f0
Fix documentation typo ( #9740 )
2019-04-25 08:43:13 -07:00
Javier Calvarro Nelson
6fa9398781
[MVC][ Fixes #8426 ]TempData does not clear when using __Host- as cookiename prefix ( #9741 )
2019-04-25 17:32:12 +02:00
Ryan Nowak
ab3e0f953e
Makes RouteName => endpoint name for MVC ( #9721 )
...
* Makes RouteName => endpoint name for MVC
* feedback
2019-04-24 15:13:30 -07:00
BrennanConroy
c69395afbd
Fix race in dotnet-watch test ( #9649 )
2019-04-24 12:57:58 -07:00
dotnet-maestro[bot]
8eb2e8baec
[master] Update dependencies from dotnet/arcade ( #9715 )
...
* Update dependencies from https://github.com/dotnet/arcade build 20190423.2
- Microsoft.DotNet.GenAPI - 1.0.0-beta.19223.2
* Adjust to GenApi change in `enum` ordering
- was sorted by name, now by value
2019-04-24 19:21:37 +00:00
Ryan Nowak
6a99743d33
Fixes : #7611 - return convention builders for MVC
...
Adds support for returning convention builders from the various MVC
endpoint routing methods.
The fallback methods are excluded because the fallback endpoint doesn't
actually get executed.
2019-04-24 11:03:38 -07:00
Pranav K
9ac2f52b22
Specify Content-Length for buffered responses ( #9699 )
2019-04-24 09:57:53 -07:00
BrennanConroy
de8ea91d0c
Upload artifacts for SignalR daily test run ( #9660 )
2019-04-23 19:50:08 -07:00
Justin Kotalik
08e12af57a
Update ANCM to output out of proc symbols ( #9698 )
2019-04-23 15:11:01 -07:00
Nate McMaster
f53d3cb87e
Cleanup unnecessary files added during 2.2 => master merge ( #9690 )
2019-04-23 14:46:09 -07:00
Martin Gubis
1d5d144c12
Introduce IPageApplicationModelPartsProvider ( #9066 )
...
* Resolved #6919 . It might be required to rework unit tests.
2019-04-23 14:37:03 -07:00
Justin Kotalik
3fbf3ac791
Make IIS functional test run on helix( #9484 )
2019-04-23 14:22:28 -07:00
dotnet-maestro[bot]
76559df78b
[master] Update dependencies from 2 repositories ( #9661 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.10
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.10
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.10
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.10
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.10
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190422.9
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview5.19222.9
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview5.19222.9
- dotnet-ef - 3.0.0-preview5.19222.9
- Microsoft.EntityFrameworkCore - 3.0.0-preview5.19222.9
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview5.19222.9
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview5.19222.9
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview5.19222.9
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.11
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.11
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.11
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.11
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.11
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.12
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.12
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.12
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.12
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.12
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.13
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.13
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.13
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.13
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.13
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190422.12
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19222.12
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19222.12
- dotnet-ef - 3.0.0-preview6.19222.12
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19222.12
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19222.12
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19222.12
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19222.12
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19222.2 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-10 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.12 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.14
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.14
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.14
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.14
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.14
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.15
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.15
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.15
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.15
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.15
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.16
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.16
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.16
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.16
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.16
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190422.13
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19222.13
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19222.13
- dotnet-ef - 3.0.0-preview6.19222.13
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19222.13
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19222.13
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19222.13
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19222.13
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19222.4 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-12 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.14 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.17
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.17
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.17
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.17
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.17
* Fix SignalR tests
* slightly better fix
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.19
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.19
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.19
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.19
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.19
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190422.15
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19222.15
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19222.15
- dotnet-ef - 3.0.0-preview6.19222.15
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19222.15
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19222.15
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19222.15
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19222.15
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190422.21
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19222.21
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19222.21
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19222.21
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19222.21
* Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-23 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.20 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190423.1
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19223.1
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19223.1
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19223.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19223.1
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190423.2
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19223.2
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19223.2
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19223.2
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19223.2
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190423.3
- Microsoft.NET.Sdk.Razor - 3.0.0-preview6.19223.3
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview6.19223.3
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview6.19223.3
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview6.19223.3
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190423.2
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19223.2
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19223.2
- dotnet-ef - 3.0.0-preview6.19223.2
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19223.2
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19223.2
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19223.2
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19223.2
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190423.4
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19223.4
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19223.4
- dotnet-ef - 3.0.0-preview6.19223.4
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19223.4
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19223.4
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19223.4
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19223.4
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190423.5
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview6.19223.5
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview6.19223.5
- dotnet-ef - 3.0.0-preview6.19223.5
- Microsoft.EntityFrameworkCore - 3.0.0-preview6.19223.5
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview6.19223.5
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview6.19223.5
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview6.19223.5
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview6.19222.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview6-27622-26 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview6.19222.23 (parent: Microsoft.EntityFrameworkCore)
* Remove unsupported scenario test
2019-04-23 21:20:34 +00:00
Nate McMaster
9393ddbfa6
Merge branch 'release/3.0-preview5' => 'master'
2019-04-23 07:56:08 -07:00
Steve Sanderson
a9d3f9c22b
Remove redundant IEnumerable interface from ArrayRange<T> ( #9652 )
...
* Remove unused IEnumerable interfaces from ArrayRange<T>
* Repair usage in tests
* Update ref assembly
2019-04-23 12:24:44 +01:00
Pranav K
fa3deae52c
Quote the path to BlazorDevServer dll ( #9659 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9597
2019-04-22 20:05:50 -07:00
Justin Kotalik
b0dfd15d28
Use correct path to x86 installers to ANCM ( #9646 ) ( #9662 )
2019-04-22 18:20:12 -07:00
Ben Adams
bae733151b
Lazy create RequestServicesFeature DisposeAsync statemachine ( #9512 )
2019-04-22 17:21:19 -07:00
Justin Kotalik
cc2005c7d0
Use correct path to x86 installers to ANCM ( #9646 )
2019-04-22 16:51:30 -07:00
Justin Kotalik
87229e315e
Lock during finalizer to not race with dispose in MemoryPoolBlock ( #9555 )
2019-04-22 15:55:53 -07:00
David Fowler
5f3bdba584
Spanify path -> string logic ( #9628 )
...
- Use spans instead of byte[] and array segments when turning the URL into a string
2019-04-22 15:53:56 -07:00
Steve Sanderson
5606899d48
Make RemoveEventHandlerIds not allocate in the sync case. Continuation of #9629 ( #9635 )
2019-04-22 11:50:16 -07:00
BrennanConroy
10dc6e3bdc
Custom hub options don't change global hub options ( #9638 )
2019-04-22 11:35:18 -07:00
Doug Bunting
ce8f053af7
Rename all the service reference things ( #9559 )
...
- #7492
- remove document generation from client project; will be included in Web API project infrastructure (coming soon)
- adjust eng/ProjectReferences.props to new project name
- simplify item de-duplication in `_CreateCompileItemsForServiceFileReferences` target i.e. use `Remove` attribute
- also handle `.tsx` files in this target
- provide `%(FirstForGenerator)` metadata, #4916
- add `$(OpenApiGenerateAtDesignTime)` property (default `true` for now), #4944
- generate code in `obj` directory by default, #4945
- provide a default `%(CodeGenerator)` value, ##7491 1 of 2 (remainder will come in next milestone)
nits:
- remove a useless `StringBuilder.Append(...)` call
- remove `%(OpenApiProjectReference.SourceProject)` metadata, duplicated `%(OriginalItemSpec)`
- be more consistent about using element syntax for item metadata
2019-04-22 11:15:54 -07:00
Doug Bunting
1c19e8ee89
Merge branch 'release/2.2' -> 'master' ( #9591 )
2019-04-22 11:12:35 -07:00
Ben Adams
f4972dc6b6
Skip string.Equals in FastPathTokenizer ( #9579 )
2019-04-22 10:06:21 -07:00
Ben Adams
48c97b425e
Use .IndexOf(char/byte) where possible ( #9539 )
2019-04-22 10:05:40 -07:00
Stephen Halter
9b999b3afb
Don't override jasmine.DEFAULT_TIMEOUT_INTERVAL from Common.ts ( #9586 )
2019-04-22 10:03:27 -07:00
Ben Adams
2e8e1b1ec1
Update src/Identity/EntityFrameworkCore/test/EF.Test/Utilities/ScratchDatabaseFixture.cs
...
Co-Authored-By: ajcvickers <ajcvickers@hotmail.com>
2019-04-22 09:27:45 -07:00
Arthur Vickers
f0c8702f7e
Remove use of LazyRef
...
Fixes #9172
Needed to stop https://github.com/aspnet/EntityFrameworkCore/pull/15434 from breaking ASP.NET Core build.
2019-04-22 09:27:45 -07:00
Steve Sanderson
55d706d63c
Eliminate ContinueWith from Renderer.cs. Fixes #6385
2019-04-22 16:27:43 +01:00
Steve Sanderson
110e41f741
Fix InputCheckbox when initially checked. Fixes #8502
2019-04-22 15:56:30 +01:00
David Fowler
d62d33c531
Avoid allocating the CandidateSet when there's a single match ( #9622 )
...
- Add fast path for 0 route values, and policies
- Remove RVD allocation in the fast path
2019-04-21 23:33:40 -07:00
Pranav K
418f3d82dd
React to new System.Text.Json features ( #9572 )
2019-04-21 20:48:41 -07:00
Ben Adams
19ce372887
Cache some Headers lookups ( #9618 )
2019-04-21 20:37:56 -07:00
David Fowler
667f7ca491
Don't fire DiagnosticSource.StopActivity in some cases ( #9595 )
...
- Don't fire the event if DiagnosticSource.StartActivity was never called. This avoids allocating the anonymous object and extra strings.
2019-04-21 16:09:40 -07:00
Ryan Nowak
f0ea4fc8a1
Update solutions
...
We have a new SignalR package and it needs to be the added.
2019-04-21 15:16:54 -07:00
Pranav K
e42f979cca
Add a System.Text.Json based IJsonHelper ( #9566 )
...
* Add a System.Text.Json based IJsonHelper
Fixes https://github.com/aspnet/AspNetCore/issues/9564
2019-04-21 12:10:47 -07:00
BrennanConroy
c300c8c97c
Reuse Utf8JsonWriter ( #9607 )
2019-04-21 11:49:03 -07:00
Pranav K
0303c9e90b
AddControllersWithViewsCore should add CacheTagHelper services ( #9580 )
2019-04-21 09:51:41 -07:00
Pranav K
5e953124e6
Add support for System.Text.Json based JsonResult executor ( #9558 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9554
2019-04-21 09:13:30 -07:00
Ben Adams
b893777898
HostingApplicationDiagnostics resolve Request.Headers once ( #9605 )
2019-04-20 20:41:49 -07:00
Doug Bunting
dfae19ee7c
Merge branch 'release/2.2' -> 'master'
2019-04-19 18:53:15 -07:00
John Luo
7a040f310b
Enable Pubternal API checks ( #9530 )
...
* Enable Pubternal API checks
* Use pragma
* Convert to pragma
* Test fix
* Remove extra restore dependencies
2019-04-19 18:49:07 -07:00
James Newton-King
0831456fac
Change gRPC template logging level to info in development ( #9538 )
2019-04-20 12:53:04 +12:00
Nate McMaster
9212f4a3df
Update corefx dependencies and react to changes in JSON API ( #9563 )
2019-04-19 11:42:41 -07:00
Ben Adams
5ff2910d09
UriHelper use Ordinal string.IndexOf ( #9537 )
2019-04-19 10:14:03 -07:00
BrennanConroy
a6fd8da9e8
Set camelCase as default in JsonHubProtocol ( #9531 )
2019-04-19 09:55:51 -07:00
Ben Adams
d46388b58e
Lazy create MVC ControllerActionInvoker statemachines ( #9533 )
...
* Lazy create ControllerActionInvoker.InvokeInnerFilterAsync statemachine
* Lazy create ControllerActionInvoker.InvokeNextActionFilterAwaitedAsync statemachine
* Lazy create ControllerActionInvoker.InvokeNextActionFilterAsync statemachine
* Lazy create ControllerActionInvoker.InvokeActionMethodAsync statemachine
* Lazy create Controller.OnActionExecutionAsync statemachine
* Ref assembly
* Formatting feedback
2019-04-19 07:48:26 -07:00
Artak Mkrtchyan
a1d2d64120
Updated order for Blazor templates
2019-04-18 23:07:51 -07:00
Artak Mkrtchyan
cab7ca6694
Changed the order of some templates to be explicit
2019-04-18 23:07:51 -07:00
Pranav K
acf45106fc
Use FileBufferingWriteStream in ViewComponentResultExecutor ( #9523 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9443
2019-04-18 19:27:55 -07:00
Pranav K
9e4d5c14c7
Use LogicalName that works consistently in all platforms ( #9527 )
2019-04-18 19:27:25 -07:00
James Newton-King
7669cf0d03
Move Microsoft.AspNetCore.Authorization.Policy types ( #9492 )
2019-04-19 13:24:36 +12:00
James Newton-King
c34cdefc95
Avoid async in AuthorizationMiddleware when no metadata ( #9521 )
2019-04-19 11:56:05 +12:00
Ben Adams
23efa15112
Lazy create EndpointRouting statemachines ( #9506 )
2019-04-18 16:40:06 -07:00
Ben Adams
507a765dfb
Lazy create StaticFileMiddleware statemachine ( #9507 )
2019-04-18 14:44:00 -07:00
BrennanConroy
c84e37f30d
Make System.Text.Json the default for SignalR and remove Newtonsoft from shared framework ( #9476 )
2019-04-18 13:49:24 -07:00
Pavel Krymets
56c064bd53
Display startup errors in ANCM ( #8518 )
2019-04-18 13:48:48 -07:00
Justin Kotalik
eb41de88a9
Fix flaky routing test ( #9505 )
2019-04-18 13:40:43 -07:00
Mikael Mengistu
ebb9ad20db
Client to Server Streaming with IAsyncEnumerable ( #9310 )
2019-04-18 13:20:39 -07:00
Ryan Nowak
6074daacae
Fixes : #9468
2019-04-18 12:47:42 -07:00
Justin Kotalik
10d70c5c9e
Fix AbortedStream_ResetsAndDrainsRequest_RefusesFramesAfterCooldownExpires ( #9487 )
2019-04-18 12:44:54 -07:00
Pranav K
caac31c925
Correct some EventHandler entries ( #9474 )
...
* Correct some EventHandler entries
Fixes https://github.com/aspnet/AspNetCore/issues/7570
2019-04-18 12:44:31 -07:00
Ben Adams
8fcadf72cd
Allow headers to match on ReferenceEquals before OrdinalIgnoreCase ( #9341 )
2019-04-18 12:00:01 -07:00
Ryan Brandenburg
dac6756853
Default IdentityUI to Bootstrap4 ( #9334 )
2019-04-18 10:22:57 -07:00
Artak Mkrtchyan
6a7b94a2bd
Updated order of projects in the new project dialog
2019-04-18 10:14:26 -07:00
Pranav K
11842e75e2
Update MessagePack and fix build warning ( #9464 )
2019-04-18 10:06:58 -07:00
Justin Kotalik
8b536b08ca
Revert "Skip IIS Express on Windows 7 ( #8330 )" ( #9490 )
...
This reverts commit b2a58ab8de .
2019-04-18 08:57:50 -07:00
Andrew Stanton-Nurse
f95960d856
[SignalR] Test definition isn't async ( #9481 )
...
Jest is warning us that this will be deprecated in the future. There's no reason for the `describe` callback to be `async` since all it's doing is registering tests through nested `it` calls.
2019-04-18 08:44:35 -07:00
Hao Kung
47ae9d9299
Remove RequiredPolicy ( #9399 )
2019-04-17 21:58:38 -07:00
Justin Kotalik
7448964388
Mark mvc test as flaky ( #9489 )
2019-04-17 21:46:27 -07:00
David Fowler
a8b67a2b98
Rename variable ( #9461 )
2019-04-17 20:56:06 -07:00
David Fowler
32c46c7201
Create an activity more often than before ( #9361 )
...
- Create an Activity if there's a diagnostic listener attached with the activity name or if logging is enabled.
- Add the activity id to the logging scope (and call the field ActivityId)
2019-04-17 18:23:12 -07:00
Pranav K
92cae6faab
Buffer writes from sources of synchronous writes ( #9015 )
...
* Buffer writes from sources of synchronous writes
Fixes https://github.com/aspnet/AspNetCore/issues/6397
2019-04-17 18:11:07 -07:00
Nate McMaster
e4328b2a96
Update DataProtection.AzureStorage to use latest Azure SDK dependency (Microsoft.Azure.Storage.Blob) ( #9465 )
2019-04-17 17:25:23 -07:00
Nate McMaster
485795ad3c
Revert ANCM installers to build with v141 C++ toolset ( #9477 )
2019-04-17 15:54:17 -07:00
Pranav K
56e2080ef7
Always fully build Components.Server.csproj ( #9421 )
...
* Always fully build Components.Server.csproj
* Use pre-built js files instead of building on the fly
* Use a sourcemap file for Debug. .gitignore sourcemap files
* Install nodejs on CodeCheck agents
Fixes https://github.com/aspnet/AspNetCore/issues/9402
2019-04-17 09:17:42 -07:00
Andrew Stanton-Nurse
46db367760
Fix #8974 by supporting strings in configureLogging for SignalR JS client ( #9252 )
2019-04-17 08:15:55 -07:00
Andrew Stanton-Nurse
01b0c888d2
Flow ANCM version number in the build output ( #9269 )
...
* Update IIS libraries to platform toolset v142
* Drop ancm version into a text file next to the installer
* feedback and try reverting removal of VC++ 141 tools to fix build
2019-04-17 08:09:07 -07:00
Pranav K
004ac25983
Remove AddRazorSupportForMvc from MVC and Blazor projects ( #9446 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9126
Fixes https://github.com/aspnet/AspNetCore/issues/9183
Fixes https://github.com/aspnet/AspNetCore/issues/9207
2019-04-16 20:46:51 -07:00
Ben Adams
2dc5694ecd
Http1OutputProducer Reset sequentially ( #9203 )
2019-04-16 20:29:47 -07:00
Ryan Nowak
4f57a4af14
Address Jimmys cool feedback
2019-04-16 19:36:32 -07:00
Ryan Nowak
84916223bb
Address Bens cool feedback
2019-04-16 19:36:32 -07:00
Ryan Nowak
7021df89e4
Remove dynamic from page endpoints
2019-04-16 19:36:32 -07:00
Ryan Nowak
6f305373ca
Allow fallback to controller to use MatcherPolicy
2019-04-16 19:36:32 -07:00
Ryan Nowak
4f015e2813
Add ability to replace an endpoint with a collection
...
This is a crucial enabler for dynamic scenarios. A policy can replace an
endpoint with a *group* of dynamic endpoints which will be disambiguated
by other policies.
2019-04-16 19:36:32 -07:00
Ryan Nowak
e47fbbab9e
Slim down CandidateSet
2019-04-16 19:36:32 -07:00
Ryan Nowak
6eeda774ef
Implement IEndpointSelectorPolicy for ConsumesMatcherPolicy
2019-04-16 19:36:32 -07:00
Ryan Nowak
eca6a71754
Implement IEndpointSelectorPolicy for HttpMethodMatcherPolicy
2019-04-16 19:36:32 -07:00
Ryan Nowak
8df3dc7ae4
Make HostMatcherPolicy implement IEndpointSelectorPolicy
2019-04-16 19:36:32 -07:00
Ryan Nowak
94fab79771
Add some cool docs about IDynamicEndpointMetadata.
...
This will make James happy, which makes it more likely he will
look at the rest of the PR.
2019-04-16 19:36:32 -07:00
David Fowler
48f0a76ea9
Support plain text exception formatting ( #9342 )
...
- If there's no Accept: text/html then print the exception.ToString as plaintext
2019-04-16 18:34:07 -07:00
Justin Kotalik
102dd03149
Wait to dispose CTS for IIS ( #9389 )
2019-04-16 17:08:57 -07:00
Pranav K
e2477706b6
Always set flag in CorsMiddleware once it executes ( #9440 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9348
2019-04-16 16:28:27 -07:00
Pranav K
51028dd129
Remove use of IgnoreNullPropertyValueOnRead and ReaderOptions from JsonSerializerOptions ( #9429 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/9406
2019-04-16 16:24:17 -07:00
Pranav K
2be80522b2
Prevent synchronous writes when using Razor ( #9395 )
...
* Do not perform synchronous writes to the Response TextWriter after a Razor FlushAsync
* Use ViewBuffer to perform async writes to the response when using ViewComponentResult
Related to #6397
Fixes https://github.com/aspnet/AspNetCore/issues/4885
2019-04-16 16:12:37 -07:00
Hao Kung
9e4647d6e4
Reenable Components.Server.Tests ( #9432 )
2019-04-16 15:20:41 -07:00
John Luo
c2ee82b49e
Move ResponseCaching pubternal types to internal ( #9392 )
2019-04-16 15:14:59 -07:00
dotnet-maestro[bot]
039e505160
[master] Update dependencies from 2 repositories ( #9411 )
...
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190415.3
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview5.19215.3
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview5.19215.3
- dotnet-ef - 3.0.0-preview5.19215.3
- Microsoft.EntityFrameworkCore - 3.0.0-preview5.19215.3
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview5.19215.3
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview5.19215.3
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview5.19215.3
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19212.14 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27613-11 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview5.19214.1 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190415.3
- Microsoft.NET.Sdk.Razor - 3.0.0-preview5.19215.3
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview5.19215.3
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview5.19215.3
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview5.19215.3
* Patch utf8 test
2019-04-16 21:40:21 +00:00
Hao Kung
00aa806226
Mark EmailFactor test as flaky ( #9123 )
2019-04-16 14:07:36 -07:00
Nate McMaster
2a99b8608d
Merge changes from 'release/2.2'
2019-04-16 11:57:15 -07:00
Nate McMaster
607cbc3133
Suppress warnings about breaking changes to Newtonsoft.Json dependency in SignalR ( #9405 )
2019-04-16 09:11:55 -07:00
Alessio Franceschelli
19e0030710
HeaderPropagation Middleware: handle content headers
2019-04-16 08:47:29 -07:00
BrennanConroy
d93b207485
Add Site Extension to patch ( #9336 )
...
- make build.cmd work
- update build/repo.props
Co-Authored-By: BrennanConroy <brecon@microsoft.com>
2019-04-15 22:21:27 -07:00
Liudmila Molkova
4649449206
Call DiagnosticListener.OnActivityImport before starting Activity to support sampling better ( #9340 )
...
* use OnActivityImport and HttpContext in the extra argument
2019-04-15 18:48:56 -07:00
Nate McMaster
fafae36461
Merge changes from 'release/2.1'
2019-04-15 17:02:10 -07:00
Nate McMaster
d004cf0f14
Merge branch 'release/2.1' into release/2.2
2019-04-15 16:42:07 -07:00
Hao Kung
1cd544042d
[Helix] Reenable azure auth tests ( #8349 )
2019-04-15 15:31:05 -07:00
Pranav K
836964a653
Don't log action and page handler arguments above Trace level ( #9227 )
2019-04-15 13:29:07 -07:00
dotnet-bot
f70a87ccac
Merge in 'release/2.1' changes
2019-04-15 17:51:13 +00:00
Doug Bunting
e0a4673e0b
Add missing package archives ( #9351 )
...
- not mandatory (it seems) for 2.1 but useful pseudo-documentation
2019-04-15 10:49:43 -07:00
dotnet-bot
f139b0dfaa
Merge in 'release/2.2' changes
2019-04-15 17:49:40 +00:00
Doug Bunting
5c96ab1709
Add missing package archives
...
- aspnet/AspNetCore-Internal#2217
2019-04-15 10:48:15 -07:00
Henk Mollema
c6df1b8a14
Fix type name in XML doc ( #9346 )
2019-04-15 09:46:41 -07:00
Javier Calvarro Nelson
3988f3b0ba
Make Identity UI sample work ( #9288 )
2019-04-15 12:24:28 +02:00
Ben Adams
1baeaaac36
Feedback
2019-04-14 17:55:16 -07:00
Ben Adams
70b02f8406
Lazy create ResourceInvoker.InvokeNextResourceFilterAwaitedAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
cfc22fe0df
Lazy create ResourceInvoker.InvokeNextResultFilterAwaitedAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
8c97cbe6aa
Lazy create ResourceInvoker.InvokeNextResultFilterAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
7393f264b0
Lazy create ResourceInvoker.InvokeResultFilters statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
0657a3ed1a
Lazy create ResourceInvoker.InvokeAlwaysRunResultFilters statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
6039699afa
Lazy create ResourceInvoker.InvokeNextExceptionFilterAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
1a7e606504
Lazy create ResourceInvoker.InvokeNextResourceFilter statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
8bb54fc22a
Lazy create ResourceInvoker.InvokeResultAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
305249709c
Lazy create ResourceInvoker.InvokeFilterPipelineAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
fe6907616b
Lazy create ResourceInvoker.InvokeAsync statemachine
2019-04-14 17:55:16 -07:00
Ben Adams
7a4400e3b2
ResourceInvoker faster task completion check
2019-04-14 17:55:16 -07:00
Ryan Nowak
763720b092
Remove Routing pubternal
...
This change makes a bunch of random routing classes internal instead of
pubternal. Most of these have no use case and aren't valuable at all
outside of routing code.
The one exception here is that the only way to construct a
`TemplateBinder` in 1.0-2.2 is using a constructor that accepts some
pubternal types. I don't think it's a good idea to just yank this since
the usage is pretty wide.
Instead I added a factory service so you can create this, and marked the
constructor [Obsolete] where these types are touched. We can make the
actual breaking change in the next major release.
2019-04-14 14:49:17 -07:00
Ben Adams
dc08a60f5e
Lazy allocate dictionary in ItemsDictionary ( #9284 )
2019-04-14 08:09:17 -07:00
Javier Calvarro Nelson
5889aea06c
Enable custom restore of NPM dependencies for csproj files
...
Enables custom restore of NPM dependencies for csproj files that require it.
2019-04-14 15:02:37 +02:00
BrennanConroy
9fae14a926
System.Text.Json Hub Protocol ( #8932 )
2019-04-13 09:20:30 -07:00
Stephen Halter
28970a3e93
Fix SignalR TS client build on macOS ( #9230 )
2019-04-13 01:14:57 -07:00
Justin Kotalik
e04c79bd3d
Wait to dispose RequestAborted CTS ( #9333 )
2019-04-12 16:30:26 -07:00
Andrew Arnott
0684498efc
Fix SignalR HubProtocol spec typo ( #9338 )
2019-04-12 16:29:04 -07:00
Doug Bunting
a54646f9a5
Use default VC toolset ( #9332 )
2019-04-12 16:28:19 -07:00
Brennan Conroy
6ecdff7c68
Merged PR 898: Update MessagePack dependency
...
Update MessagePack dependency
2019-04-12 22:25:38 +00:00
Doug Bunting
6df7aa4da0
Merge branch 'release/2.2' => 'master' ( #9313 )
2019-04-12 14:53:52 -07:00
BrennanConroy
b1ca2c1155
Properly wait for karma to exit ( #9315 )
2019-04-12 11:04:58 -07:00
Brennan Conroy
182c48f0b0
Merged PR 891: Update MessagePack dependency
...
Update MessagePack dependency
Related work items: #142
2019-04-12 17:40:48 +00:00
Justin Kotalik
3b180691e1
Merge branch 'release/2.2' into merge/release/2.2-to-master
2019-04-12 08:42:55 -07:00
David Fowler
717fa39167
Remove target invocation exceptions from Startup invocation ( #9318 )
...
- This change takes advatage of the new DoNotWrapExceptions binding flag to avoid throwing a TargetInvocationException when invoking Configure/ConfigureServices and ConfigureContainer
2019-04-12 08:26:42 -07:00
Chris Ross
0d45fe73d7
Handle MicrosoftAccount email fallback #9083 ( #9304 )
2019-04-12 08:26:15 -07:00
Ben Adams
614d6336fd
Skip keys array allocation
2019-04-12 06:49:01 -07:00
Javier Calvarro Nelson
3265c54518
[MVC][ Fixes #7576 ]HtmlHelperOptions.ClientValidationEnabled = false is ignored in Razor Pages ( #9289 )
...
* Replaced IOptions<HtmlHelperOptions> with IOptions<MvcViewOptions> on the PageActionInvokerProvider.
2019-04-12 11:56:24 +02:00
Javier Calvarro Nelson
f934bfaa7e
[Https][Tooling] Add digital signature to the KeyUsage of the HTTPS dev-cert ( #9293 )
...
* [Https][Tooling] Add digital signature to the KeyUsage of the HTTPS dev-cert
2019-04-12 09:27:54 +02:00
Javier Calvarro Nelson
8897b56597
[Templating] Fixes an error in the react redux template when opened in VS ( #9292 )
2019-04-12 09:17:16 +02:00
BrennanConroy
022e79cf17
Improve HeaderSplit perf ( #9309 )
2019-04-11 22:29:23 -07:00
Justin Kotalik
7e1d545e29
Remove dependency on jscript in IISExpress installers ( #8707 )
...
* Add a .gitignore
2019-04-11 21:25:54 -07:00
Stephen Halter
22f0e9b412
Don't fail shutdown-does-not-crash test if merely ungraceful ( #8896 )
...
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/2101
2019-04-11 20:29:38 -07:00
Pranav K
5424045dac
Ensure PackageArchive contains the right build of Razor.Design package ( #6992 )
...
* Ensure PackageArchive contains the right build of Razor.Design package
* Re-order values in build\dependencies.props to ensure Razor.Design's package version is
overwritten.
* Convert additional package refs to project refs
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1708
* Update CodeCheck.ps1
2019-04-11 17:14:11 -07:00
Ben Adams
84da613d2c
Cache OnStarting callback delegate ( #9283 )
2019-04-11 16:08:58 -07:00
Pranav K
de39ededfa
Merge branch 'master' into merge/release/3.0-preview4-to-master
2019-04-11 14:43:21 -07:00
dotnet-maestro[bot]
599717b2f5
[master] Update dependencies from 2 repositories ( #9276 )
...
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190410.7
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview5.19210.7
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview5.19210.7
- dotnet-ef - 3.0.0-preview5.19210.7
- Microsoft.EntityFrameworkCore - 3.0.0-preview5.19210.7
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview5.19210.7
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview5.19210.7
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview5.19210.7
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19208.5 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27608-16 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview5.19210.2 (parent: Microsoft.EntityFrameworkCore)
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190410.2
- Microsoft.NET.Sdk.Razor - 3.0.0-preview5.19210.2
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview5.19210.2
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview5.19210.2
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview5.19210.2
* Remove retry attribute
- thanks @jkotalik !
2019-04-11 12:23:09 -07:00
Pranav K
ae34697797
Fix #9041 - Complain if auth hasn't been set up correctly ( #9181 )
2019-04-11 10:36:21 -07:00
Justin Kotalik
8d987241de
Produce Corresponding symbols in installer output for ANCM ( #9262 )
2019-04-11 08:24:32 -07:00
Patrick Westerhoff
bcad853cbd
Dispose configuration in WebHost ( #9149 )
...
Register the application configuration as a factory to make it dispose
automatically when the service provider gets disposed. This will dispose
the underlying configuration providers and change token registrations.
The host configuration will be disposed implicitly when the chained
configuration provider within the app configuration gets disposed.
2019-04-11 07:16:44 -07:00
Pranav K
463bc91438
Remove Components.Server reference from templates ( #9267 )
2019-04-10 17:16:59 -07:00
Mikael Mengistu
74951717bc
backport accessTokenProvider fix ( #8726 )
2019-04-10 13:14:15 -07:00
BrennanConroy
af0fb91d9f
Remove writeline from test ( #9056 )
2019-04-10 10:06:06 -07:00
BrennanConroy
7c76144865
Remove Cpp Client from this repo ( #9050 )
2019-04-10 09:51:33 -07:00
Javier Calvarro Nelson
6f13e7b77a
E2E infrastructure cleanup ( #9163 )
2019-04-10 17:19:52 +02:00
Stafford Williams
3b32f43453
Crankier: Log connection exceptions ( #9045 )
2019-04-10 00:36:18 -07:00
Andrew Stanton-Nurse
9158039c95
Merge pull request #9228 from dotnet-maestro-bot/merge/release/3.0-preview4-to-master
...
[automated] Merge branch 'release/3.0-preview4' => 'master'
2019-04-09 21:54:58 -07:00
Nate McMaster
d1c7e90b98
Rename Microsoft.AspNetCore.App.PlatformManifest.txt to PlatformManifest.txt ( #9180 )
2019-04-09 17:18:46 -07:00
Justin Kotalik
413f1ddd19
Fix folder version for global module to only have 3 numbers ( #9175 )
2019-04-09 17:06:06 -07:00
Justin Kotalik
0378cbbc51
Rename StreamPipeReaderOptions to StreamPipeReaderAdapterOptions ( #9177 )
2019-04-09 17:05:44 -07:00
Justin Kotalik
3e056db750
Marking a good number of tests as flaky. ( #9101 )
2019-04-09 14:37:06 -07:00
Justin Kotalik
212ba91a5c
Make IISExpress not depend on jscript. ( #9212 )
2019-04-09 13:11:03 -07:00
Mikael Mengistu
454ac15443
Expose Connection Id in SignalR TS Client ( #9188 )
2019-04-09 12:56:07 -07:00
Justin Kotalik
cacf9aa9f1
Fix folder version for global module to only have 3 numbers ( #9211 )
2019-04-09 12:47:27 -07:00
Ben Adams
4134d02dab
Fix Platform benchmark ( #9204 )
2019-04-09 10:52:04 -07:00
Ryan Brandenburg
59770d6589
Merge pull request #8870 from adrianwright109/footer-height
...
Remove explicit footer height
2019-04-09 09:28:42 -07:00
Ben Adams
e4fbd598b5
Reuse previous materialized strings ( #8374 )
2019-04-08 23:00:02 -07:00
Daniel Roth
4d78c21575
Remove reference to Microsoft.AspNetCore.Components.Server ( #9169 )
2019-04-08 21:01:55 -07:00
Mikael Mengistu
1a259fb49e
Stabilize StreamAsyncCanBeCanceledThroughGetAsyncEnumerator test ( #9174 )
2019-04-08 15:58:15 -07:00
dotnet-maestro[bot]
8bfbc4a2ac
[master] Update dependencies from 2 repositories ( #9160 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190407.2
- Microsoft.NET.Sdk.Razor - 3.0.0-preview4.19207.2
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview4.19207.2
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview4.19207.2
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview4.19207.2
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190407.2
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview4.19207.2
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview4.19207.2
- dotnet-ef - 3.0.0-preview4.19207.2
- Microsoft.EntityFrameworkCore - 3.0.0-preview4.19207.2
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview4.19207.2
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview4.19207.2
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview4.19207.2
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.Json.Sources - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Win32.Registry - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.ComponentModel.Annotations - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Data.SqlClient - 4.7.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Diagnostics.EventLog - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.IO.Pipelines - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Net.Http.WinHttpHandler - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Reflection.Metadata - 1.7.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Cng - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Pkcs - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Cryptography.Xml - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Permissions - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Security.Principal.Windows - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.ServiceProcess.ServiceController - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Text.Encodings.Web - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- System.Threading.Channels - 4.6.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.NETCore.Platforms - 3.0.0-preview5.19205.9 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.App - 3.0.0-preview5-27606-01 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview4.19206.2 (parent: Microsoft.EntityFrameworkCore)
* Rename option type temporarily until entire swap is done
* nit
* Rename adapter option type
2019-04-08 12:11:07 -07:00
Ryan Brandenburg
3e1b1ac4e0
Component item template ( #9077 )
2019-04-08 10:41:44 -07:00
Ben Adams
45b5a04393
Move enumerating extra headers to separate method ( #7706 )
2019-04-08 09:34:07 -07:00
Javier Calvarro Nelson
4abf766c3c
Update Identity server dependency for preview4 ( #9104 )
...
* Updates Identity server dependency for preview4
* Infrastructure improvements.
* Updates react versions.
* Updates migrations.
* Makes templates show up in Visual Studio
2019-04-08 17:06:58 +02:00
Stephen Halter
74bba27f43
Implement auto reconnect for SignalR TypeScript client ( #8566 )
2019-04-08 07:33:20 -07:00
Pranav K
b93bc433db
Make AuthorizeFilter work in endpoint routing ( #9099 )
...
* Make AuthorizeFilter work in endpoint routing
Fixes https://github.com/aspnet/AspNetCore/issues/8387
2019-04-08 06:03:34 -07:00
John Luo
67e08728ca
Remove client from gRPC templates ( #9078 )
2019-04-07 22:42:38 -07:00
Ryan Brandenburg
cdcefa656d
Don't change the generated template.jsons
2019-04-07 08:52:22 -07:00
Ryan Brandenburg
6b93e2ee71
Fix up naming of templates
2019-04-07 08:52:22 -07:00
Mikael Mengistu
6f197a9e5d
Using IAsyncEnumerable in the .NET Client ( #8935 )
2019-04-06 11:48:29 -07:00
James Newton-King
69f4b6d227
Add StartupAnalzyer ( #9100 )
2019-04-06 18:25:19 +13:00
Ben Adams
4ac9001f6e
Safe utf8 string conversion ( #9131 )
2019-04-05 22:12:13 -07:00
Pranav K
fb037bda01
Set CSharpLangVersion during runtime compilation ( #9135 )
...
* Set CSharpLangVersion during runtime compilation
* Pass CSharpLangVersion inferred by the CSharpCompiler to RazorEngine
* Set GenerateRazorHostingAssemblyInfo in Razor.RuntimeCompilation
targets
* Unskip failing test
Fixes https://github.com/aspnet/AspNetCore/issues/8996
2019-04-05 21:24:50 -07:00
Doug Bunting
04f1f1f389
Mark `System_UsesProvidedDirectoryAndCertificate` test as flaky
2019-04-05 19:20:01 -07:00
Pranav K
d1eeb55139
Specify AddRazorSupportForMvc in Blazor templates
...
VS 16.1 tooling does not support RazorConfigurations with no extensions
Working around this by treating Blazor templates as using MVC configuration
until we can resolve the issue in tooling
Workaround for https://github.com/aspnet/AspNetCore/issues/9119
2019-04-05 17:21:29 -07:00
Steve Sanderson
728110ec9e
Update template-baselines.json
2019-04-05 17:00:52 -07:00
Steve Sanderson
09944bc0a6
Put favicon.ico back for Blazor Server-Side template. Fixes #9096
2019-04-05 17:00:52 -07:00
Ben Adams
77380fb27b
React to "Shrink StringValues" ( #8864 )
2019-04-05 12:12:08 -07:00
Doug Bunting
1b50085835
Chain coherent dependencies up through Extensions to EF Core packages ( #8877 )
...
* Chain coherent dependencies up through Extensions to EF Core packages
- should reduce incoherent PRs we get from `darc`
- react to AspNetCore-Tooling breaking changes
- use C# Preview version in Blazor integration tests
- update `EnsureOptions_ConfiguresDefaultParseOptions` test to match new C# version default
- react to new newline encoding behavior; thanx @ajaybhargavb!
- update product code and tests to use new GetItem API; thanx @NTaylorMullen!
- RazorProjectFileSystem breaking change
- update ref assemblies
- react to EF Core breaking changes
- react to EF Core method rename
- react to aspnet/EntityFrameworkCore@ccfc5edbc7
- react to aspnet/EntityFrameworkCore@6cb41531df breaking change
- disable new analyzer in `ScratchDatabaseFixture`
- skip `MvcTemplate_NoAuthImplAsync(...)` test for F#
- #8996
- exclude some runtime assemblies from crossgen; thanx @BrennanConroy!
- add direct references to Mvc in AzureAD samples
- unclear why the reference is no longer pulled in transitively
* Run `darc` to grab the latest
- CoreFx packages with version 4.6.0-preview4.19204.1 to ensure coherency
- core-setup packages with version 3.0.0-preview4-27604-05 to ensure coherency
- Extensions packages with verisn 3.0.0-preview4.19204.2 to ensure coherency
- EntityFrameworkCore packages with version 3.0.0-preview4.19204.7 from build 20190404.7
- AspNetCore-Tooling packages with version 3.0.0-preview4.19204.2 from build 20190404.2
2019-04-05 10:54:04 -07:00
Steve Sanderson
eaf63a670d
Fix log message in RemoteRenderer
2019-04-05 17:05:17 +01:00
Ryan Nowak
258d34e382
Use coventional routes for link generation ( #9037 )
...
Use coventional routes for link generation
This change enables using conventional routes for link generation when
using MVC conventional routes. This change makes MVC link generation
behaviour highly compatible with 2.1.
The way that this works is that we create endpoints for **MATCHING**
using the denormalized conventional route, but we tell those endpoints
to suppress link generation.
For link generation we generate a non-matching endpoints per-route with
the same order value.
I added the concept of *required value any* to link generation. This is
needed because for an endpoint to participate in link generation using
RouteValuesAddress it needs to have some required values. These details
are a little fiddly, but I think it's worth doing this feature
completely.
2019-04-05 08:31:10 -07:00
Pranav K
896537bb8c
Update MessagePack-CSharp commit
2019-04-05 06:50:30 -07:00
Javier Calvarro Nelson
b825a6f81d
[Blazor] Update blazor VSIX icon ( #9102 )
2019-04-05 09:00:35 +02:00
Javier Calvarro Nelson
437134f1da
[Infrastructure] Standarize E2E test asserts and increase wait time ( #9080 )
...
* Standarize E2E test asserts and increase wait time
2019-04-05 09:00:11 +02:00
Ryan Brandenburg
23c88a14bf
Fix template baseline ( #9094 )
2019-04-05 07:06:16 +02:00
Adrian Wright
15eb05b8c8
Update Blazor survey link
2019-04-04 22:01:25 -07:00
Ryan Nowak
b142daeccb
[Blazor] Fix #9089 don't log mundane stuff at info level ( #9098 )
...
Reduce the noise of some logging that's really
only useful for troubleshooting/debugging.
2019-04-05 06:45:33 +02:00
Artak
1c3f890240
Fixing comment grammer
...
Addresses https://github.com/aspnet/AspNetCore/issues/9053
2019-04-04 20:49:14 -07:00
Pranav K
5b56dcb700
Add RazorLangVersion to Blazor templates ( #9081 )
...
* Add RazorLangVersion to templates
* Cleanup extra line in project template
2019-04-04 17:58:08 -07:00
Justin Kotalik
6266d56165
disable flaky test ( #9091 )
2019-04-04 15:55:12 -07:00
Martin Costello
0f0a388eab
Extend WebApplicationFactory<T> ( #7414 )
...
* Support host-agnostic services access
* Support host agnostic access to the IServiceCollection associated with
WebApplicationFactory<T>.
2019-04-05 00:21:48 +02:00
Pranav K
44b9b520c3
Cleanup extra line in project template
2019-04-04 14:44:50 -07:00
Pranav K
9ada6113a3
Add RazorLangVersion to templates
2019-04-04 14:44:50 -07:00
Javier Calvarro Nelson
b9e600a45c
Renames for blazor server-side, inclusion in shared framework, and other renaming fixes ( #9001 )
...
* Move contents of Microsoft.AspNetCore.Components.Services namespace to Microsoft.AspNetCore.Components
* Rename Components to Blazor
* Make Blazor server-side part of the shared framework.
2019-04-04 21:36:36 +02:00
Javier Calvarro Nelson
98d8b9ab4a
[Infrastructure] Retry yarn install on failure ( #9068 )
...
* [Infrastructure] Retry yarn install on failure
2019-04-04 20:39:52 +02:00
Ryan Brandenburg
fefffd7751
Test all links in templates ( #8628 )
...
Improve templating tests
2019-04-04 11:31:24 -07:00
Javier Calvarro Nelson
237b19b2b9
[Blazor] Add more eslint rules and apply auto fixes ( #9004 )
2019-04-04 20:22:12 +02:00
Artak
facb0018eb
Added the submodules initialization step
2019-04-04 10:36:14 -07:00
David Fowler
4f1104363e
Make TestServer IAsyncDisposable ( #9059 )
...
- This should make it a bit more maintainable than it is today (having to call server.StopAsync before Dispose calls it synchronously)
2019-04-04 10:07:03 -07:00
Artak Mkrtchyan
d27ce10629
Added back the important usings
2019-04-04 10:04:06 -07:00
Artak
6be7bea82d
Update Startup.cs
2019-04-04 10:04:06 -07:00
Artak
b8dd263c90
Added missing usings
2019-04-04 10:04:06 -07:00
Artak
ef46c364fd
Adding `using Microsoft.Extensions.Configuration`
2019-04-04 10:04:06 -07:00
Artak Mkrtchyan
8c287bc7e5
Remove unused `using`-s from Program and Startup classes
2019-04-04 10:04:06 -07:00
Ryan Brandenburg
96d282319d
Remove extra newline ( #9051 )
2019-04-04 09:57:27 -07:00
BrennanConroy
074b1757d7
Report JUnit test results for SignalR TS tests ( #9058 )
2019-04-04 08:21:19 -07:00
Stafford Williams
73ec62adbd
Added Crankier docs ( #9044 )
...
Docs describing usage of Crankier
2019-04-04 08:06:23 -07:00
Steve Sanderson
42511e8652
Replace Blazor CLI tool with new DevServer package ( #9028 )
2019-04-04 09:47:56 +01:00
Javier Calvarro Nelson
57940a23aa
[Components] Avoid creating two connections when resuming circuits
...
* Fix double connection bug
* Fix broken tests
* Add test to detect two connections
* clean up tests
* Fix test bug
* Isolate duplicate connection tests
2019-04-04 08:19:05 +02:00
Mikael Mengistu
722a34cd56
Up the SignalR test timeout to match Kestrel's ( #8563 )
2019-04-03 16:36:40 -07:00
Stephen Halter
102ba0c9c5
Merge pull request #8956 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2019-04-03 14:51:59 -07:00
Hao Kung
79beaea734
[Identity] Guard against null user security stamps ( #8300 )
...
Also fix up some UI issues
2019-04-03 12:32:58 -07:00
Steve Sanderson
3657a429eb
Server-side Blazor template cleanups for Preview 4 ( #9025 )
...
* Rename Host.cshtml to _Host.cshtml
* In Startup.cs, specify root component and selector explicitly so you can easily disable prerendering if desired
* Remove unneccesary dependency on NewtonsoftJson package
* Remove unnecessary MapRazorPages and make blank lines consistent
* Rename "Services" subdirectory to "Data"
* Remove favicon.ico (no longer needed since we switched to MapFallbackToPage
* Revert MapComponentHub change due to reasons
2019-04-03 17:00:20 +01:00
Doug Bunting
edb91d0f4d
Include `%(DocumentName)` when invoking the default document generator tool ( #8982 )
...
- #8319
* Skip dotnet-watch `RenameCompiledFile()` test
- #8987
* Quote path and name arguments of `dotnet-getdocument` command
2019-04-02 22:22:19 -07:00
Daniel Roth
a4417e6240
Add missing using statement to Blazor hosted template. ( #9000 )
2019-04-02 16:00:13 -07:00
Ryan Nowak
f2e9ef3441
Improve initialization and SignalR configuration
...
Fixes : #6887 and #6887 and #5624
Adds support for calling Blazor.start({...}) and passing in a
configuration object.
For now all you can configure is the SignalR HubConnectionBuilder. This
is a priority right now because we want to make configuring SignalR's
logging accessible.
2019-04-02 15:33:42 -07:00
Hao Kung
555b506a97
Identity: Add new email/confirmation flows ( #8577 )
2019-04-02 14:50:43 -07:00
Andrei Amialchenia
8274776efa
Test name fixed ( #8994 )
...
Fixed #8922
2019-04-02 13:58:06 -07:00
penenkel
b6bbc29498
HostingLogScope now logs RequestPath as Request.BasePath+Request.Path #8942 ( #8944 )
2019-04-02 12:33:15 -07:00
Pranav K
42a2dd5b3e
AddRazorSupportForMvc in RCL ( #8995 )
2019-04-02 11:13:40 -07:00
Stephen Halter
f8835ab934
Merge branch 'release/2.2'
2019-04-02 10:45:20 -07:00
Pranav K
1b868323e8
Add a System.Text.Json based TempDataSerializer ( #8874 )
...
* Add a System.Text.Json based TempDataSerializer
* Update DefaultTempDataSerializer
* Add common tests for DefaultTempDataSerializer & BsonTempDataSerializer
* Remove uses of NewtonsoftJson in tests solely required for temp-data support
Fixes https://github.com/aspnet/AspNetCore/issues/7255
2019-04-02 10:34:50 -07:00
Javier Calvarro Nelson
8499a27c7f
[Components] Relayer + Robust reconnect ( #8911 )
...
* [MVC][Components] Prerendering + Robust reconnect
* Relayers prerendering support on a separate package on top of MVC and
components.
* Implements robust reconects with acknowledgements from the client.
* Improves interactive prerendering with the ability to reconnect to
prerendered components.
* Removes the need to register components statically when prerendering
them.
* Removes the need of using an element selector when prerendering an
interactive component.
* Updates the templates to use the new fallback routing pattern and
reenables the components test.
* Adds eslint to the Typescript project to help maintain a consistent
style.
* Adds logging to support better debugging based on the pattern used by
signalr.
* Fixes exception handling on the server to always report exceptions correctly to the client.
2019-04-02 19:17:03 +02:00
Kirill Rakhman
3cc3ab00c9
Reduce boxing in RedirectRule.cs ( #8988 )
2019-04-02 10:04:07 -07:00
David Fowler
f4c61de490
Initial design for exception page filters ( #8958 )
...
- This change introduces the concept of an IDeveloperPageException filter that runs whenever the developer exception page has encountered an error. It follows the middleware pattern (chain of resposibility) which allows short circuiting or decorating the default logic.
- Added tests
2019-04-02 10:02:34 -07:00
Hao Kung
42b3fada31
Add validation to ensure Cookie.Expiration is not set ( #8967 )
2019-04-02 09:56:37 -07:00
Doug Bunting
91dcbd44c1
Remove build-time service reference download feature ( #8981 )
...
- #7500
- skip dotnet-watch `RenameCompiledFile()` test
- #8987
2019-04-02 09:24:27 -07:00
Ryan Nowak
6a6a870f08
Remove 'Type Check' workarounds from preview 3
...
Fixes : #8920
2019-04-01 21:43:30 -07:00
Pranav K
ff313901de
Mark Mvc analyzers as non-shipping ( #8968 )
...
Since these analyzers are now available via the WebSDK, we no longer
need to ship these.
Follow up to https://github.com/aspnet/AspNetCore/issues/4373
2019-04-01 15:52:15 -07:00
Artak Mkrtchyan
77e6be4c28
Fixing the build for ProjectTemplates
2019-04-01 15:49:21 -07:00
Justin Kotalik
df3a702190
Update the SDK ( #8670 )
2019-04-01 15:18:18 -07:00
Pranav K
d86c9b3f07
Use MessagePackReader \ MessagePackWriter to implement IHubProtocol for server-side Blazor ( #8687 )
...
* Use MessagePackReader \ MessagePackWriter to implement IHubProtocol for server-side Blazor
Fixes #7311
2019-04-01 14:25:23 -07:00
Steve Sanderson
7f4dd27551
Support triggering rendering from OnAfterRenderAsync. Fixes #8435 ( #8960 )
2019-04-01 13:01:33 +01:00
dotnet-bot
f352ea5da7
Merge in 'release/2.2' changes
2019-03-31 22:34:13 +00:00
Ryan Nowak
285110de91
Add missing ref-assembly for header propagation
...
I think this was missed because the PR predates ref assemblies :)
2019-03-30 11:50:34 -07:00
BrennanConroy
9d8990a710
Remove pplx::task from public API ( #8747 )
2019-03-29 23:54:44 -07:00
David Fowler
61b3504dbe
Added NegotiateMetadata to negotiate endpoints ( #8907 )
...
- This makes it a bit cleaner to identify the negotiate when trying to apply policies (like replacing the endpoint)
- Added tests that cover MapConnectionHandler for endpoint routing
2019-03-29 19:24:43 -07:00
Ryan Nowak
284e968101
Add AddControllers and AddRazorPages
...
These are *new style* for configuring MVC in services. We're adding these to make
things feel a bit more tailored to those particular scenarios.
----
The main reason for this is that we've had repeated community asks for an
*API-optimized* way of configuring MVC. I don't think that using AddMvcCore
is a suitable building block, because it has too many options that you want.
I've think I've identified the reasonable set of features that should be part
of the default experience for APIs. All of these things are already pay-for-play
and are activated by the presence of attributes. The only additional cost is
loading of assemblies and a few additional inspections of the attributes
(cached).
----
Additionally the AddControllers experience is composible. You can add views
to it, or add pages and get the whole thing.
AddRazorPages is basically an alias for what AddMvc does today. We don't
currently have a way to add pages without controllers (the opposite is true).
Based on feedback we could specialize this more.
----
Branding and perception are important, and we've users ask for more flexibility
in what gets added. The plan is to update the templates to use this experience
in preview4, and see what kind of feedback we get.
2019-03-29 18:51:10 -07:00
Justin Kotalik
0cfac5b88d
Always replace ANCM in xdt transform( #8933 )
2019-03-29 16:35:01 -07:00
Justin Kotalik
010139ac8a
Limit chunk size when writing chunked responses ( #8837 )
2019-03-29 16:34:26 -07:00
Alessio Franceschelli
f28cf2bbc8
HeaderPropagation: propagate incoming request headers to outgoing HTTP requests ( #7921 )
...
* Ported HeaderPropagation from aspnet/Extensions
* Introduced Middleware
* Refactored middleware logic
* Refactored builder extensions
* Copyright notice
* Test for friendly exception on Builder
* Fixed header name selection when no output name specified
* Set comparer for the dictionary of headers
* Refactored configuration as Dictionary
* Renamed state objects
* renamed OutboundHeaderName in configuration
* Changed DefaultValuesGenerator to ValueFactory
* Missing docs
* Removed AlwaysAdd and added tests for null entry in configuration
* Improved docs
* Update src/Middleware/HeaderPropagation/src/DependencyInjection/HeaderPropagationExtensions.cs
Co-Authored-By: alefranz <alessio@franceschelli.me>
* Moved dependency injection extensions
* DI: reused ServiceCollection extension in the HttpClientBuilder one
* Moved service registration
* Update src/Middleware/HeaderPropagation/src/HeaderPropagationEntry.cs
Co-Authored-By: alefranz <alessio@franceschelli.me>
* more docs
* Improved docs
* Update src/Middleware/HeaderPropagation/src/HeaderPropagationValues.cs
Co-Authored-By: alefranz <alessio@franceschelli.me>
* Fixed build
* Update eng/SharedFramework.Local.props
Co-Authored-By: alefranz <alessio@franceschelli.me>
* Updated tests for null config
* Reversed condition on HeaderPropagationMessageHandler as suggested
* Added docs for HeaderPropagationMessageHandler
* Changed proj to ship package to NuGet
2019-03-29 12:00:46 -07:00
Steve Sanderson
77d9fae439
Supply "IsConnected" state info to components ( #8888 )
...
* Basic implementation of IComponentContext with IsConnected flag
* Update ref assembly code
* Begin infrastructure for prerendered E2E tests
* Actual E2E test for prerendered-to-interactive transition
2019-03-29 14:53:29 +00:00
Steve Sanderson
49b074d3c0
Fix base URI during prerendering ( #8910 )
2019-03-29 12:41:59 +00:00
Mikael Mengistu
f10635f6c8
Java Client Expose ConnectionId on HubConnection ( #8689 )
2019-03-28 17:02:00 -07:00
Chris Ross
e881ee58c0
Mark Flaky http.sys tests Internal/#1826 ( #8890 )
2019-03-28 15:59:59 -07:00
Ryan Nowak
658b37d2bd
Make UseEndpoints a thing ( #8765 )
...
* Make endpoint middleware explicit
This change makes the endpoint middleware explicit again, and updates
all of the templates.
The other change here is make UseEndpoints be the place where you
register endpoints. This is vital because it puts your code visually at
the point of the pipeline where it executes.
Lastly, I removed support for UseMvc with endpoint routing. This is
causing issues for some security features, and we're moving in the
direction of trying to make the middleware heavy implementation required
in 3.0. There are some issues we won't be able to fix in MVC if we can't
unambiguously know if UseMvc was used or the middleware.
2019-03-28 15:41:11 -07:00
Stephen Halter
a170820017
Merge branch 'release/2.1' into release/2.2
2019-03-28 15:15:51 -07:00
Stephen Halter
062cfac384
Mark some Http2TimeoutTests as flaky ( #8875 )
...
* DATA_Sent_TooSlowlyDueToSocketBackPressureOnSmallWrite_AbortsConnectionAfterGracePeriod
* AbortedStream_ResetsAndDrainsRequest_RefusesFramesAfterCooldownExpires
2019-03-28 14:53:47 -07:00
Justin Kotalik
a5791da8d3
Fix ContentLength_Received_ReadViaPipes ( #8893 )
2019-03-28 14:14:36 -07:00
Chris Ross
248d4e70a2
Add missing copyright in IntegrationTesting ( #8891 )
2019-03-28 13:23:06 -07:00
Mikael Mengistu
5e8a7ad725
Fix jasmine timeout for SignalR daily tests ( #8748 )
2019-03-28 11:45:15 -07:00
Stephen Halter
2b80b9fa01
Attempt to make MaxRequestBufferSizeTests.LargeUpload less flaky ( #8582 )
...
This is for the release/2.1 branch, but should probably be ported forward to master so the test can be unskipped.
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1775 (hopefully)
See https://github.com/aspnet/AspNetCore-Internal/issues/1970 for the master version.
2019-03-28 11:42:45 -07:00
Daniel Marbach
d24ec01224
Add overload for Configure that gets WebHostBuilderContext ( #8697 )
2019-03-28 10:10:06 -07:00
Steve Sanderson
03357bf92b
Components: don't block the SignalR loop during init. Fixes #8274 ( #8863 )
2019-03-28 16:42:55 +00:00
Vance Morrison
18b81bacce
Support for receiving ID via TraceParent HTTP header. ( #8495 )
...
- Also moved the fetching of ANY HTTP header fields until AFTER the most stringent
- Check to see if logging is on (thus deferring work if the logger is sampling).
- Added transfer of TraceState from http header to Activity
- Added tests to insure that we were reading traceparent and tracestate headers as expected.
2019-03-27 22:40:17 -07:00
Mikael Mengistu
017f409fe4
Expose ConnectionId on .NET Client ( #8668 )
2019-03-27 17:30:43 -07:00
Adrian Wright
768e2f8208
Remove explicit footer height
2019-03-27 21:51:22 +00:00
Steve Sanderson
63a4b5c27a
Fix rendering inheritance. Fixes #8192 ( #8818 )
...
* Make it irrelevant whether components call base.BuildRenderTree or not. Fixes #8192
* Remove base.BuildRenderTree calls from manually-implemented render logic
* Update ref assembly code
2019-03-27 21:26:13 +00:00
Ryan Nowak
cc1b2941f9
Fix #8520 - Component parameters not found
...
This resolves the issue blocking use of component parameters from our
ref assemblies. Making properties public with private get is our
recommended guidance for wanting documentation to work in the IDE.
We also now need to manually generate the ref-assembly types for these
so they will show up for tooling with setters. I've logged an issue to
track whether we want to keep this long term, it seems like a suitable
workaround for now.
2019-03-27 12:10:43 -07:00
Ryan Brandenburg
8955a32ce9
MapController in RazorPages ( #8685 )
...
MapController in RazorPages
2019-03-27 10:49:33 -07:00
Steve Sanderson
8ae0791735
In Blazor Hosted template, explicitly enable compression for application/octet-stream
...
Otherwise, the latest ASP.NET Core won't compress those files
2019-03-27 17:37:24 +00:00
Steve Sanderson
fdf7f58466
Handle asynchrony during app startup on WebAssembly. Fixes #8079
2019-03-27 17:37:24 +00:00
Ryan Brandenburg
7248ecbaf1
Make some skipped tests flaky ( #8795 )
2019-03-27 10:20:16 -07:00
Mikael Mengistu
e979426809
Update Gradle to version 5.3 - Now with retries ( #8840 )
2019-03-27 10:04:25 -07:00
Pranav K
cb6fb32529
Make building Components & Mvc solutions work out of the box ( #8830 )
...
* Make building Components & Mvc solutions work out of the box
Fixes https://github.com/aspnet/AspNetCore/issues/8413
2019-03-27 09:27:11 -07:00
Javier Calvarro Nelson
562d119ca4
Enable single pages directory ( #8799 )
...
* Enable single pages directory
* Rename Index.cshtml to Host.cshtml
* Get rid of _ViewImports.cshtml
2019-03-27 11:51:01 +01:00
Hao Kung
1f63f25508
[Helix] Enable Identity.FunctionalTests ( #8564 )
2019-03-26 10:27:55 -07:00
Pranav K
d9bf01330a
Update README.md
2019-03-26 09:59:44 -07:00
Pranav K
5f6caf3650
Set properties required for runtime compilation in RuntimeCompilation package
...
Fixes https://github.com/aspnet/AspNetCore/issues/7966
2019-03-26 09:59:23 -07:00
Ryan Brandenburg
70cd5f5f9f
Mark tests flaky instead of skipped ( #8727 )
...
Mark tests flaky instead of skipped
2019-03-26 09:51:37 -07:00
Steve Sanderson
341cd25e05
Update to newer Blazor.Mono. Fixes #6726 ( #8782 )
2019-03-26 09:53:15 +00:00
Chris S
c054f5fa67
Update README.md ( #6904 )
2019-03-25 15:12:57 -07:00
BrennanConroy
969c72acfd
C++ client low level API ( #8420 )
2019-03-25 13:52:38 -07:00
Hao Kung
b7e122fbac
Hook auth options validation into validation feature ( #8665 )
2019-03-25 11:35:39 -07:00
Hao Kung
6641a02ff2
Enable AuthSamples.FunctionalTests on helix ( #8691 )
2019-03-25 11:19:27 -07:00
Pranav K
287fd0bef7
Update to use _Imports.razor
2019-03-25 10:59:44 -07:00
Steven T. Cramer
0494dfa683
Update BlazorLibrary-CSharp to use .razor extention
2019-03-25 10:59:44 -07:00
Steven T. Cramer
3c63a76a3d
Update BlazorStandalone-CSharp to use .razor extention
2019-03-25 10:59:44 -07:00
Steven T. Cramer
15cb6dff96
Update BlazorHosted-CSharp.Client to use .razor extention
...
This adds clarity and precision to the template. The files are Blazor/RazorComponents and not normal Razor Pages.
2019-03-25 10:59:44 -07:00
Justin Kotalik
7a1a53d76d
React to sem version 2.0 ( #8725 )
2019-03-24 14:17:06 -07:00
Mikael Mengistu
316fbbe9c4
Marking tests as flaky( #8749 )
2019-03-22 17:59:21 -07:00
Pranav K
9a35bbea03
Experience for Razor SDK ( #8731 )
...
* Experience for Razor SDK
* Remove Components.Build
* Update MVC projects and templates to use AddRazorSupportForMvc
* Update components templates to use .razor extension
Fixes https://github.com/aspnet/AspNetCore/issues/6392
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190321.3
- Microsoft.NET.Sdk.Razor - 3.0.0-preview4.19171.3
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview4.19171.3
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview4.19171.3
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview4.19171.3
* Update dependencies from https://github.com/dotnet/core-setup build 20190322.01
- Microsoft.NETCore.App - 3.0.0-preview4-27522-01
Dependency coherency updates
- Microsoft.Bcl.Json.Sources - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- Microsoft.CSharp - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- Microsoft.Win32.Registry - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.ComponentModel.Annotations - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Data.SqlClient - 4.7.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Diagnostics.EventLog - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.IO.Pipelines - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Net.Http.WinHttpHandler - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Reflection.Metadata - 1.7.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Cng - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Pkcs - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Security.Cryptography.Xml - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Security.Permissions - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Security.Principal.Windows - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.ServiceProcess.ServiceController - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Text.Encodings.Web - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- System.Threading.Channels - 4.6.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview4-27522-01 (parent: Microsoft.NETCore.App)
- Microsoft.NETCore.Platforms - 3.0.0-preview4.19164.7 (parent: Microsoft.NETCore.App)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190321.4
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview4.19171.4
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview4.19171.4
- dotnet-ef - 3.0.0-preview4.19171.4
- Microsoft.EntityFrameworkCore - 3.0.0-preview4.19171.4
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview4.19171.4
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview4.19171.4
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview4.19171.4
* Update dependencies from https://github.com/aspnet/Extensions build 20190321.4
- Mono.WebAssembly.Interop - 3.0.0-preview4.19171.4
- Microsoft.JSInterop - 3.0.0-preview4.19171.4
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview4.19171.4
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview4.19171.4
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview4.19171.4
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration - 3.0.0-preview4.19171.4
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview4.19171.4
- Microsoft.AspNetCore.Testing - 3.0.0-preview4.19171.4
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview4.19171.4
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview4.19171.4
- Internal.AspNetCore.Analyzers - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview4.19171.4
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview4.19171.4
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview4.19171.4
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview4.19171.4
- Microsoft.Extensions.WebEncoders - 3.0.0-preview4.19171.4
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Primitives - 3.0.0-preview4.19171.4
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Options - 3.0.0-preview4.19171.4
- Microsoft.Extensions.ObjectPool - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.Console - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview4.19171.4
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview4.19171.4
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Hosting - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Http - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Localization - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview4.19171.4
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview4.19171.4
* Grab latest from other aspnet repos
- brings everything into coherence
- aspnet/Extensions packages with version 3.0.0-preview4.19172.1 from build 20190322.1
- aspnet/AspNetCore-Tooling packages with version 3.0.0-preview4.19172.2 from build 20190322.2
- aspnet/EntityFrameworkCore packages with version 3.0.0-preview4.19172.3 from build 20190322.3
2019-03-22 17:33:20 -07:00
Sebastien Ros
6d93a74a2c
One more value
2019-03-22 16:49:09 -07:00
Sebastien Ros
1fb26a6467
Fixing NETCore.App version in benchmarks
2019-03-22 16:49:09 -07:00
BrennanConroy
4b230ec419
Copy EndpointFeature when using LongPolling ( #8730 )
2019-03-22 15:36:57 -07:00
Justin Kotalik
26a118e462
Allow more time to see if events are in the event log ( #8729 )
2019-03-22 14:47:39 -07:00
Justin Kotalik
2018b82ffe
React to breaking changes with M.A.Internal ( #8638 )
2019-03-22 14:41:06 -07:00
Daniel Roth
036dec9d37
Close meta tag in Blazor hosted template
...
Fixes https://github.com/aspnet/AspNetCore/issues/6610
2019-03-22 09:04:58 -07:00
David Fowler
0d6e0637af
Small HubConnection cleanup ( #8643 )
2019-03-21 16:30:56 -07:00
Ryan Brandenburg
0c4b3fbd6d
Improve local development of Templates ( #8196 )
2019-03-21 16:29:45 -07:00
Pranav K
f5ff181222
System.Text.Json based formatters ( #8362 )
...
* System.Text.Json based formatters
Fixes: https://github.com/aspnet/AspNetCore/issues/7256
2019-03-21 13:45:21 -07:00
Javier Calvarro Nelson
5f4be179e3
Fix and identify flaky components E2E Tests ( #8690 )
2019-03-21 07:39:47 +01:00
Eilon Lipton
69732c9ecc
Remove unused namespaces from Worker template Program.cs ( #8574 )
...
Follow-up to 17344cd37f
2019-03-20 20:54:40 -07:00
Chirag Rupani
aa89639d62
Removed Content Type header for response when no content is being returned ( #8557 )
...
Addresses #8230
2019-03-20 13:15:42 -07:00
Ryan Nowak
b743ba2f66
Throw unhandled exceptions during prerendering
...
Fixes : #8609
Currently exceptions thrown during prerendering are simply logged. This
change uses the existing *unhandled exception* mechanism of the
renderer/circuit to throw these. The result is that the developer
exception page just works for prerendering.
2019-03-20 13:02:24 -07:00
mnltejaswini
2a08c6e54d
Pass the formatter context to the CreateJsonSerializer. It gives ability to override and create serializer specific to the context ( #8358 )
...
* Pass the formatter context to the CreateJsonSerializer so that it gives ability to override and create serializer specific to the context
2019-03-20 12:01:41 -07:00
Jacques Eloff
314f67ec6e
Merge pull request #8450 from aspnet/joeloff/7729
...
Fix for #7729 to ensure upgradable bundles
2019-03-20 11:40:08 -07:00
Andrew Stanton-Nurse
e61aa05b72
Fix #7477 by updating HttpSys readme ( #8662 )
...
We changed the README to "archived" before merging this repo into mondo repo. Whoops :).
2019-03-20 09:33:31 -07:00
Justin Kotalik
2d145682ce
Update some tests to be flaky rather than skipped ( #8666 )
2019-03-20 08:59:43 -07:00
Javier Calvarro Nelson
9db249e30a
[Components][ Fixes #8058 ] Update blazor template to use IWebHostEnvironment ( #8234 )
2019-03-20 16:59:17 +01:00
Justin Kotalik
b8e7cbad02
Remove Out-Of-Process test site fixture and make deployer check physical ( #8659 )
2019-03-20 08:33:26 -07:00
Javier Calvarro Nelson
9f1a978230
[Infrastructure improvements] ( #8275 )
...
* Improved selenium start and tear down
* Selenium is set up and torn down in an assembly fixture.
* Selenium is initialized lazily and in a non-blocking way.
* Selenium processes are tracked as part of the build and their pids
written to a file on disk for cleanup in the event of unexpected
termination of the test process.
* Browser fixture retries with linear backoff to create a remote
driver. Under heavy load (like when we are doing a simultaneous NPM
restore) the selenium server can become unresponsive so we retry
three times, with a longer comand timeout allowance each time up to
a max of 3 minutes.
* Moved test project setup to build time instead of runtime.
* Added target PrepareForTest to create the required files for testing
* The template creation folder.
* The template props file to use our built packages.
* The folder for the custom hive.
* Added assembly metadata attributes to find all the data we need to
run the tests.
* Path to the artifacts shipping packages folder.
* Path to the artifacts non-shipping packages folder.
* Path to the test templates creation folder.
* Path to use for the custom templating hive used in tests.
* Proper cleanup as part of the build
* Remove the test templates creation folder.
* Remove the test packages restore path.
* Recreate the test templates creation folder.
* Recreate the test packages restore path.
* Generated Directory.Build.Props and Directory.Build.Targets in the
test templates creation folder.
* Cleaned up potentially stale templatetestsprops.
* Improved test flows
* Initialization is done lazily and asynchronously.
* Selenium
* Browser fixture
* Template initialization.
* Flattened test flows to avoid assertions inside deep callstacks.
* All assertions happen at the test level with improved error messages.
* With the exception of the migrations assertions.
* Assertions contain information about which step failed, for what
project and what failure details.
* Broke down tests to perform individual steps instead of mixing build
and publish.
* Publish project.
* Build project. (Debug)
* Run built project.
* Run published project.
* Concentrated build logic into the Project class.
* Context between the different steps of a test is maintained in
this class.
* All operations that require coordination are performed within this
class.
* There is a lock for dotnet and a lock for nodejs. When building
SPAs we acquire the nodejs lock to correctly prevent multiple
runs of nodejs in parallel.
[ApiAuthorization template cleanups]
* Fix preview3 issues with breaking changes on Entity framework by
manually configuring the model in ApiAuthorizationDbContext.
* Add app.db to the project file when using local db.
* Fix linting errors on angular template.
* Fix react tests
* Add tests to cover new auth options in the SPA templates.
2019-03-20 08:44:20 +01:00
Chris Ross
0456c9dcc9
Handle SIGTERM exit code #6526 ( #8294 )
2019-03-19 19:15:00 -04:00
Artak Mkrtchyan
37a48d897b
Update default log levels for templates
2019-03-19 13:52:14 -07:00
Jacques Eloff
eb1ce947c5
Fix up property group, preprocessor statement
2019-03-19 11:50:13 -07:00
Jacques Eloff
eb8ca48e77
Remove duplicate inputs
2019-03-19 11:50:12 -07:00
Jacques Eloff
2aabd9f847
Fix inputs for UpgradeCode
2019-03-19 11:50:11 -07:00
Jacques Eloff
f87c75a90d
Fix for #7729 to ensure upgradable bundles
2019-03-19 11:50:11 -07:00
Justin Kotalik
9f724f6ac4
Revert "Publish MusicStore as part of build ( #8578 )" ( #8655 )
...
This reverts commit f3eaa73c1a .
2019-03-19 11:03:48 -07:00
Mikael Mengistu
6038621630
Update acessTokenProvider selecting logic for restarting connection ( #8569 )
2019-03-19 10:55:53 -07:00
Justin Kotalik
26c487b0c0
Use examined rather than consumed for content length of body. ( #8223 )
2019-03-19 08:25:57 -07:00
Pranav K
f3eaa73c1a
Publish MusicStore as part of build ( #8578 )
...
* Publish MusicStore as part of build
* Add a target to publish MusicStore as part of E2E tests
* Publishing for x86 causes unit tests in MusicStore to have weird
reference issues. Removing these since they are very pretty low value.
2019-03-19 07:17:55 -07:00
Doug Bunting
bcead68f0c
React to EntityFrameworkCore and AspNetCore-Tooling breaking changes
...
- avoid `[Obsolete]` EF Core method
- mirror recent `RazorIntegrationTestBase` changes in this repo
2019-03-18 19:36:09 -07:00
Doug Bunting
1d1d664ea1
Merge branch 'release/2.2' into master
...
- no-ops except for
- Update PatchConfig.props (2835f85b6c )
- Add some additional logging to ErrorPageMiddlewareWebSite (#8049 ) (aka 1ca6202e7e )
- Put MVC's functional tests in a separate test group (#8118 ) (aka db3795b368 )
- ignore the build queue (4f2a0edc97 ) change because we're not hitting Linux resource issues in `master` branch
- ignore baseline test changes (5661c41909 and d2a4435ac8 ) because they're not applicable in `master`
2019-03-18 12:36:01 -07:00
Ryan Nowak
f303a55a8e
Add skeleton to use components + prerendering
...
This adds the skeleton needed for components + prerendring development
in the MVC sandbox. We don't currently have a sample app for quick and
dirty testing.
2019-03-18 10:18:04 -07:00
Justin Kotalik
a3c8bd16f7
Make Kestrels Internals truly internal. ( #8517 )
2019-03-18 10:15:39 -07:00
Matheus Marques
5c6e1aa1d9
[Templating] Fix react template typos ( #8592 )
2019-03-18 09:42:56 +01:00
Justin Kotalik
8349109647
Atomic swap the request drained handler when shutting down. ( #8529 )
2019-03-17 10:09:04 -07:00
Alexey Malinin
2eb0692434
Change name of argument in "WebHostExtensions" ( #8411 )
2019-03-16 12:16:27 -04:00
Hao Kung
95ab2fa4af
Split ILookupNormalizer.Normalize into Name/Email methods ( #8412 )
2019-03-15 14:00:40 -07:00
Pavel Krymets
22623b905f
Add dependency from AspNetCore targeting pack to dotnet Core targeting pack ( #8490 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/8284
2019-03-15 11:28:42 -07:00
James Newton-King
47fab927a1
Add friendly error message to UrlHelper for when there is no IRouter ( #8145 )
2019-03-15 10:14:07 -07:00
Mikael Mengistu
694dcae53e
Make ResetSendPing and ResetTimeout private methods ( #8525 )
2019-03-14 22:05:07 -07:00
Mikael Mengistu
cfe0cc38ec
Resolve deadlock with `InvokeAsync` in `On` handler ( #8334 )
...
- Use a channel to unblock the dispatch loop
- Added tests
2019-03-14 22:04:36 -07:00
Justin Kotalik
7569f14dd9
Lock when removing disconnect handler
2019-03-14 22:32:10 +00:00
Pavel Krymets
a673be3b9a
Log all event log entries when assert fails ( #8491 )
2019-03-14 11:59:45 -07:00
Stephen Halter
1338973212
Better handle HttpConnectionContext state transitions ( #8225 )
2019-03-14 11:33:32 -07:00
Pranav K
7557cb916b
Merge remote-tracking branch 'origin/release/2.1' into prkrishn/merge/2.1
2019-03-14 10:04:38 -07:00
Mikael Mengistu
a5e20fdc90
Fix SignalR build from VS ( #8492 )
2019-03-14 10:04:04 -07:00
Ryan Nowak
30d0afca05
Remove DisplayName overload from health checks
...
The builder now provides this directly.
2019-03-13 20:12:53 -07:00
Ryan Nowak
0dc14a61ce
Simplify Map methods
2019-03-13 20:12:53 -07:00
Ryan Nowak
4b4614635f
Change template -> pattern for MVC
2019-03-13 20:12:53 -07:00
Ryan Nowak
e78a6521b9
Make naming of IEndpointRouteBuilderConsistent across usages.
2019-03-13 20:12:53 -07:00
Doug Bunting
0c6591baea
Merge release/2.1 up to commit d2a4435ac8 => release/2.2
...
- remove updates about baseline test (5661c41909 and d2a4435ac8 )
- already done (differently) in release/2.2
- add JDK installation -- missing in these images but not needed in `release/2.1`
- add packages needed to run Chrome
2019-03-13 19:17:05 -07:00
Justin Kotalik
1679ba7844
Fix AppOfflineDroppedWhileSiteStarting_SiteShutsDown_InProcess ( #8419 )
2019-03-13 14:59:41 -07:00
Ryan Nowak
d329cca17d
Change APIs to internal in Diagnostics
...
These types are still used, but we don't want them to be public.
2019-03-13 13:15:06 -07:00
Pranav K
55e9bfe78f
Skip functional tests until https://github.com/aspnet/AspNetCore/issues/8439 is resolved ( #8481 )
...
* Skip functional tests until https://github.com/aspnet/AspNetCore/issues/8439 is resolved
2019-03-13 12:29:22 -07:00
Arthur Vickers
a8fd7f4ec9
Add MemoryCache services where needed
...
Previously the tests were relying on EF adding the services. See https://github.com/aspnet/EntityFrameworkCore/issues/14756 and https://github.com/aspnet/AspNetCore/issues/7728
2019-03-13 11:38:56 -07:00
Justin Kotalik
9791f5e244
Refresh process ( #8459 )
2019-03-13 10:14:07 -07:00
Hao Kung
721efd2d48
Try removing ref to identity in EF stores ( #8357 )
2019-03-13 10:06:57 -07:00
BrennanConroy
2aa6c01b58
C++11 compliant ( #8457 )
2019-03-12 22:48:23 -07:00
Justin Kotalik
17d072fa30
Send window updates based on examined rather than consumed. ( #8200 )
2019-03-12 22:00:47 -07:00
Justin Kotalik
16cd69f164
Disable framework exception on back compat tests ( #8460 )
2019-03-12 21:59:29 -07:00
Justin Kotalik
899fc117c6
Disable flaky music store test ( #8461 )
2019-03-12 21:59:13 -07:00
Pavel Krymets
afeb139a5c
Consume Microsoft.Internal.Extensions.Refs ( #8261 )
2019-03-12 12:47:06 -07:00
Andrew Stanton-Nurse
61a9964a15
[BRT] Mitigating flaky SignalR tests ( #8423 )
...
* add the ability to skip c++ tests and skip signalr one (mitigates #8421 )
2019-03-12 12:33:54 -07:00
Mikael Mengistu
5efa1ba0b9
Fix SignalR transport test ( #8424 )
2019-03-12 12:22:02 -07:00
David Fowler
107e1862b7
Add HubMetdata ( #8425 )
...
- Added HubMetadata to detect the hub type on Endpoints
- Added a test
2019-03-12 11:33:55 -07:00
James Newton-King
21b20afb1d
Add friendly error message for when healthchecks services not registered ( #8146 )
2019-03-12 11:32:58 -07:00
BrennanConroy
e4f5fef7ac
Fix race in LongPolling causing flaky tests ( #8114 )
2019-03-12 10:24:54 -07:00
Ben Adams
a95c4b6fd0
ReadOnlySpan goodness ( #8392 )
2019-03-11 22:28:20 -07:00
Chris Baudin
77948feeba
Update reference assemblies for health checks.
2019-03-11 20:56:08 -07:00
Chris Baudin
484978fe59
Update the health check endpoint route builder extensions to make the endpoint display name configurable. ( #8359 )
2019-03-11 20:56:08 -07:00
Mikael Mengistu
96764d27eb
Returning rejected promises in HttpConnection ( #8315 )
2019-03-11 16:33:09 -07:00
Andrew Stanton-Nurse
c9c2bf6ea5
even more skipping! ( #8286 )
2019-03-11 14:50:35 -07:00
Pranav K
0d10c49823
Make IApiBehaviorMetadata public ( #8410 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/8403
The analyzer expects the type to be present. However since it's listed
as internal, it is not present when compiling against the ref assembly \ targeting pack.
It was left as internal so we could evolve it later, but we haven't found a need for it as yet.
2019-03-11 14:25:45 -07:00
Pranav K
4a5f2d16bb
Make pubinternal types in Antiforgery internal ( #8340 )
...
* Make pubinternal types in Antiforgery internal
Adresses https://github.com/aspnet/AspNetCore/issues/8308
2019-03-11 14:18:17 -07:00
Ryan Brandenburg
8250442159
Add tests for identity UI ( #8351 )
2019-03-11 11:21:43 -07:00
Javier Calvarro Nelson
d7a9606040
[Templating][Components] Unify and improve E2E testing infrastructure ( #8188 )
...
* Unify the Templating and Components testing infrastructure.
* Enable test project discovery in the components E2E tests.
* Enable selectively disabling Selenium tests through build properties.
2019-03-11 18:40:18 +01:00
Andrew Stanton-Nurse
8759aa2fc0
SignalR additional xml docs ( #7980 )
...
Reviewed our xml docs as both ramping back up after leave and docathon. Things look pretty good, added a few things to some public methods.
2019-03-11 09:29:41 -07:00
Pavel Krymets
b2a58ab8de
Skip IIS Express on Windows 7 ( #8330 )
...
https://github.com/aspnet/AspNetCore/issues/8329
2019-03-11 08:44:28 -07:00
Eilon Lipton
17344cd37f
Improvements to Worker.cs project template item
...
Fixes #8354
2019-03-10 22:43:54 -07:00
Stephen Halter
1ac6f3d4fd
Properly update examined when parsing chunked requests (part 2) ( #8360 )
2019-03-08 22:24:02 -08:00
sprelog
bc009fc0f1
fixing possible NRE, when viewContext is null
2019-03-08 15:02:02 -08:00
Hao Kung
f4c80ca99f
EF UserStore FindByEmail will throw on dupes ( #8220 )
2019-03-08 11:39:26 -08:00
Hao Kung
a53accfd75
[Helix] Reenable dotnet-watch on helix ( #8258 )
2019-03-08 11:32:02 -08:00
John Luo
2cf67cb7c0
Update template icons ( #7931 )
2019-03-08 10:44:32 -08:00
Andrew Stanton-Nurse
6a73d75688
fix skipped test to actually be skipped ( #8238 )
2019-03-08 10:24:48 -08:00
BrennanConroy
aef62d9ff8
Backport SSR fix ( #8174 )
2019-03-08 10:00:18 -08:00
David Fowler
bd6faa5ca1
Chunked request parsing does not properly update examined ( #8318 )
...
- The chunked parsing logic didn't properly update the examined position when parsing the chunked prefix. This started to throw because Pipe now throws if examined is set to the position before the previous.
2019-03-08 09:42:02 -08:00
Chris Ross
ce04a1a723
Allow sync IO for NewtonsoftJsonOutputFormatter #8302 ( #8303 )
2019-03-07 19:11:35 -08:00
Justin Kotalik
bae2f2280a
Make StartAsync not throw if we haven't started the response ( #8199 )
2019-03-07 18:32:19 -08:00
Mikael Mengistu
c0c2bb3049
Skip flaky transport test ( #8295 )
2019-03-07 18:26:38 -08:00
Justin Kotalik
c79b2413cc
Swap installer order ( #8266 )
2019-03-07 15:45:31 -08:00
Ryan Brandenburg
e0ce17bc3f
Update IDs for RazorComponents ( #8301 )
2019-03-07 14:43:44 -08:00
Pranav K
41e6fc8ab0
Use ApplicationPartFactory when adding application parts
...
Fixes https://github.com/aspnet/AspNetCore/issues/8288
2019-03-07 13:38:31 -08:00
Pranav K
8aa02180fb
Skip tests until we can diagnose failures ( #8298 )
2019-03-07 13:13:23 -08:00
Doug Bunting
4cbc33da74
Update branding to 2.2.4
2019-03-07 11:53:17 -08:00
Chris Ross
6db129a588
Support conditional compression #6925 ( #8239 )
2019-03-07 11:09:48 -08:00
Andrew Stanton-Nurse
7fb3d57f54
Skip some more flaky tests ( #8194 )
2019-03-07 09:40:26 -08:00
Mikael Mengistu
b1f828e161
Client to Sever Streaming Java Edition ( #8222 )
2019-03-07 09:34:28 -08:00
Chris Ross
5170c31b23
Add details to the JwtBearer error messages #4679 ( #8259 )
2019-03-07 08:15:16 -08:00
Hao Kung
435867e8c5
Add ability to skip tests on specific helix queues ( #8231 )
2019-03-06 23:53:18 -08:00
Doug Bunting
e497f4101f
Update branding to 2.1.10 ( #8265 )
2019-03-06 19:45:46 -08:00
Doug Bunting
697a1009d2
Merge branch 'release/2.2' => 'master' ( #7630 )
...
- barely [automated]
2019-03-06 14:42:33 -08:00
Kevin Ransom (msft)
35ac392fb6
Fix F# template ( #7637 )
2019-03-06 12:47:28 -08:00
Justin Kotalik
02dbe55466
Fix StartsWithPortableAndBootstraperExe ( #8219 )
2019-03-06 11:59:42 -08:00
Ryan Brandenburg
706b8345dc
Regenerate package-lock.json
2019-03-06 11:55:05 -08:00
Ryan Brandenburg
7573597577
Merge branch 'merge/release/2.2-to-master' of github.com:dotnet-maestro-bot/AspNetCore into merge/release/2.2-to-master
2019-03-06 11:36:41 -08:00
Ryan Nowak
a1ec03e1e6
Add fallback routing for controllers and pages
2019-03-06 09:48:07 -08:00
Ryan Nowak
bb28db6fb2
Generalize Action Selection logic
...
Allows us to use the "select action via route values" logic for
endpoints.
2019-03-06 09:48:07 -08:00
Ryan Nowak
8a46e8cd93
Update SpaDefaultPageMiddleware for endpoints
...
This change makes the SpaDefaultPageMiddleware noop when an endpoint has
been chosen. This is a problem today because this usually runs after
routing, but its always terminal.
So even if endpoint routing selected something, this would still serve
the default file. We're adding more things that fill this niche, but it
seems like a good idea to fix the existing stuff.
2019-03-06 09:48:07 -08:00
Ryan Nowak
089f64c528
Add fallback routing to file
...
This is a new routing feature that integrates static files to serve a
static file when routing doesn't match anything else.
This is a scenario that's covered by SPA services today, but given the
improvements to routing it makes much more sense to move lower in the
stack.
2019-03-06 09:48:07 -08:00
Ryan Nowak
7e63e2da43
Make StaticFiles Noop for middleware
...
Teaches all of the static files middleware (incl default files,
directory browser) to noop when an endpoint is selected. This is
desirable so you can place them after routing if you want with no ill
effect.
2019-03-06 09:48:07 -08:00
Ryan Nowak
f150e89125
Add file/non-file and generic fallback
...
Adds new constraints for checking if a route value is a file or not.
Added a new set of builder methods that specify what it means to be a
'fallback'. This is really similar to what the older SPA fallback routes
do, but this is lower in the stack and directly integrated with
endpoints.
2019-03-06 09:48:07 -08:00
David Fowler
4c79e7fdc0
Rename Pipe properties ( #8227 )
...
* Rename Pipe properties
- Rename BodyPipe to BodyReader and BodyWriter on the request and response directly
2019-03-06 07:33:24 -08:00
Mikael Mengistu
563a488f3b
Add baseline test ( #7988 )
...
- mostly matching what's in `release/2.2`
2019-03-05 15:50:25 -08:00
Andrew Stanton-Nurse
303a354993
skip another flaky kestrel test in helix ( #8216 )
...
related #8215
2019-03-05 15:09:56 -08:00
Jeremy Lawrence
a1f544b62f
Correct doc comment for ApiConventionTypeMatchBehavior ( #7861 )
2019-03-05 14:43:59 -08:00
Pranav K
b90220ad05
Improve NullHtmlEncoder perf ( #7987 )
...
Fixes #7987
2019-03-05 14:41:55 -08:00
shnja
4c3996f824
Use Request.Scheme instead of Protocol ( #7911 )
2019-03-05 14:39:37 -08:00
Hao Kung
4e271ac124
Send email confirmation after register via external login ( #8013 )
2019-03-05 13:53:15 -08:00
Chris Ross
def25cb3de
Document the change policy for FileExtensionContentTypeProvider #2454 ( #8213 )
2019-03-05 13:50:48 -08:00
BrennanConroy
58ad7b7550
Fix build flakiness ( #8211 )
2019-03-05 12:59:21 -08:00
Pranav K
b41959ac32
Add additional logging to TempDataInCookiesTest to diagnose test failure
...
Diagnosis for https://github.com/aspnet/AspNetCore-Internal/issues/1803
2019-03-05 12:33:49 -08:00
Pranav K
44c66c8314
Revert "Skipping flaky test"
...
This reverts commit 680c069554fd2a184b8a3030711aed35d4293c4b.
2019-03-05 12:33:49 -08:00
Ryan Brandenburg
0add673139
Include more template baselines ( #4186 )
...
Include more template baselines
2019-03-05 12:02:34 -08:00
Mikael Mengistu
9b4f8d79fd
Fix Java Client transport select ( #8143 )
2019-03-05 11:31:56 -08:00
Pavel Krymets
2665f6d238
Isolate message compiler output files ( #8197 )
2019-03-05 11:27:09 -08:00
Ryan Brandenburg
414d8a514f
Add missing doc comments ( #8035 )
2019-03-05 10:01:20 -08:00
David Fowler
d1ee93b94b
Allow disabling automatic MVC reference ( #8167 )
2019-03-05 09:19:28 -08:00
Andrew Stanton-Nurse
98a49e332f
skip flaky SignalR test: ErrorDuringPollWillCloseConnection ( #8171 )
...
see #8138 for discussion on test priority and re-enabling
2019-03-05 08:30:40 -08:00
Andrew Stanton-Nurse
e0dbc21ccc
skip flaky Kestrel ValidationFailureRejectsConnection test on Helix ( #8170 )
...
See #8168 for details on the failure and discussions on priority of unskipping.
2019-03-05 08:23:58 -08:00
BrennanConroy
c8c12cda9b
Fix test discovery ( #8201 )
2019-03-04 23:11:16 -08:00
Pranav K
33839dc66a
Client reconnects when state's available on the server ( #7395 )
...
Reconnect if we have state on the server
Fixes #7537
2019-03-04 17:27:51 -08:00
Justin Kotalik
d09c6e8576
Disable ConfigurationChange Test ( #8113 )
2019-03-04 16:58:28 -08:00
Ben Adams
19b52bdc8b
Elide bounds check for MethodToString ( #7887 )
2019-03-04 16:44:21 -08:00
Chris Ross
b9fda976c0
Update Worker template for Worker SDK ( #7965 )
...
* Update Worker template for Worker SDK
* Change template order
* Remove servergc
2019-03-04 16:17:25 -08:00
Pranav K
39e52578d3
Make page load async when using endpoint routing ( #7938 )
...
* Make page load async
Fixes #8016
2019-03-04 14:45:59 -08:00
Hao Kung
48a67cfd18
Fix for external logins disappearing after failed login ( #7002 )
...
Also adds external logins to register page
2019-03-04 12:46:18 -08:00
BrennanConroy
508256d028
Always load NodeHttpClient to fix SSR ( #8047 )
2019-03-04 09:16:52 -08:00
Steve Sanderson
7111c8ffd7
Handle async exceptions when not rendering root component. Fixes #8151
2019-03-04 16:44:42 +00:00
Andrew Stanton-Nurse
7b24304739
skip flaky SecureDataFormatTest in Helix ( #8129 )
...
related #7366
2019-03-04 07:50:53 -08:00
Nikita Potapenko
83cb05d83c
Rename DataProtectorTokenProvider ( #8027 )
2019-03-04 02:03:31 -08:00
David Fowler
9cb1185a5c
Add option to restrict the maximum hub message size ( #8135 )
...
- This change moves the limit checking from the transport layer to the protocol parsing layer. One nice side effect is that it gives us better control over error handling.
2019-03-03 15:18:32 -08:00
BrennanConroy
67d339ee3b
C++ client: string_t to string ( #8063 )
2019-03-02 22:11:18 -08:00
Ben Adams
ddce32a791
Use C#8 ( #8128 )
2019-03-02 19:48:43 -08:00
Andrew Stanton-Nurse
4aad7548c1
skip Libuv.FunctionalTests RemoteIPv6Address on Helix ( #8111 )
2019-03-01 18:37:51 -08:00
Andrew Stanton-Nurse
6e8a9f6d6a
Skip flaky clientcert test in Kestrel ( #8112 )
...
related #7265
flaked out in https://github.com/aspnet/AspNetCore/pull/7987
2019-03-01 18:37:23 -08:00
Pranav K
db3795b368
Put MVC's functional tests in a separate test group ( #8118 )
...
Possible fix to https://github.com/aspnet/AspNetCore/issues/7313
One of the characteristics of these failures were that the
test took long to run. The build log has warnings for
several long running tests. This might be a result of CPU
contention since mondo-ification that make MVC's functional tests
run with nearly every other test project in the solution
2019-03-01 17:52:50 -08:00
Chris Ross
93b195e566
Change SameSite default to None #2675 #4661 ( #8043 )
2019-03-01 16:22:12 -08:00
Ryan Brandenburg
4a5720beba
Updated PR with my changes
2019-03-01 15:25:58 -08:00
Chris Ross
1830f4f0dd
Avoid race in FileWatcher test Internal/1710 ( #8095 )
2019-03-01 15:03:21 -08:00
Justin Kotalik
fc9e48877c
Add FormPipeReader ( #7964 )
2019-03-01 14:41:05 -08:00
Andrew Stanton-Nurse
22e706cdc3
pr feedback
2019-03-01 13:55:45 -08:00
Andrew Stanton-Nurse
8c2c458891
some little xml doc changes
2019-03-01 13:55:45 -08:00
Andrew Stanton-Nurse
9a61275fa6
skipping ReactRedux test due to flakiness ( #8100 )
...
related #7377
2019-03-01 13:54:57 -08:00
Pranav K
85c051d8da
Skipping flaky test ( #8101 )
2019-03-01 13:37:19 -08:00
Damian Edwards
bec911d8b4
Merge pull request #7993 from zbecknell/patch-1
...
Update Blazor NDC video link
2019-03-01 12:26:14 -08:00
Andrew Stanton-Nurse
8cd36953ef
skip flaky HttpSys test in helix ( #8092 )
...
Related to #8091
2019-03-01 12:20:59 -08:00
Pranav K
a2e6322721
Restore testassets during build to prevent timeouts ( #8038 )
...
* Restore testassets during build to prevent timeouts
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1695
2019-03-01 11:43:03 -08:00
BrennanConroy
337370263a
Remove private assets ( #8080 )
2019-03-01 11:17:29 -08:00
BrennanConroy
d0c415a4dc
Skip flaky websocket test ( #8085 )
2019-03-01 11:14:25 -08:00
Sebastien Ros
275960631d
Updating ref file
2019-03-01 10:52:24 -08:00
Sébastien Ros
1c2c2c9be0
Update NullHtmlEncoder.cs
2019-03-01 10:52:24 -08:00
Sebastien Ros
23dee7c43f
Keep argument checks
2019-03-01 10:52:24 -08:00
Sebastien Ros
ba875bffcd
Using spans to optimize the slicing case
2019-03-01 10:52:24 -08:00
Sebastien Ros
55fea7976c
Improve NullHtmlEncoder perf
2019-03-01 10:52:23 -08:00
Pranav K
1ca6202e7e
Add some additional logging to ErrorPageMiddlewareWebSite ( #8049 )
...
* Add some additional logging to ErrorPageMiddlewareWebSite
DeveloperExceptionMiddleware will log an error if rendering the exception page
throws. The test failure in https://github.com/aspnet/AspNetCore-Internal/issues/1730
suggests that we encountered an error like so but do not have anything further to go by.
This change adds logging to the test so we could identify possible issues
2019-03-01 10:49:54 -08:00
Justin Kotalik
a7f1cc1b2a
Redisable AbortedStream_ResetsAndDrainsRequest_RefusesFramesAfterCooldownExpires ( #8082 )
2019-03-01 10:10:14 -08:00
Ryan Brandenburg
0d489304a4
Skip react for now ( #8053 )
...
Skip react for now
2019-03-01 09:47:53 -08:00
Hao Kung
3b16c69786
Skip NodeServices tests on helix ( #8045 )
...
NodeJs not installed on helix boxes by default currently
https://github.com/aspnet/AspNetCore/issues/8044 tracking this skip
2019-03-01 09:37:43 -08:00
Justin Kotalik
32aebef4d1
Disable any flaky IIS tests ( #8050 )
2019-03-01 08:19:26 -08:00
Javier Calvarro Nelson
98c7e965bd
[ApiAuthorization] Mark package as shipping ( #8026 )
2019-03-01 07:52:29 -08:00
Justin Kotalik
5fd53d9d07
Check HasStarted before calling Flush/Start in StartAsync ( #8041 )
2019-02-28 22:45:24 -08:00
Justin Kotalik
3509323ad1
Remove extra await/state machine in FlushAsync ( #7646 )
2019-02-28 22:42:42 -08:00
Mikael Mengistu
745941058c
Detect Classic SignalR Server in Java Client ( #7817 )
2019-02-28 18:12:53 -08:00
Chris Ross
c0e6722020
Make ConventionBasedStartup pubternal #6975 ( #7800 )
2019-02-28 15:21:01 -08:00
Ryan Nowak
cb21edc500
Fix #7258 - remove components.server dependencies on blazor-specific plumbing ( #7934 )
...
* Removes a bunch of trivial usage of Blazor
... in names and comments where we don't specifically mean Blazor.
* Remove obsolete Startup from Components app
* Move UseBlazor into Blazor.Server
Moves UseBlazor and the related features in Blazor.Server - along with
some other general cleanup of misc shared files.
Now Components.Server has a much slimmer set of dependencies (MVC is
gone) and doesn't contain the "double startup" pattern that we
introduced (sorry).
We'll revisit UseBlazor and the dependencies there once the new
MapFallbackToFile support is available from static files.
* minor PR feedback
* Update reference assemblies
* fix broken test
2019-02-28 10:36:07 -08:00
Chris Ross
f168835c0a
Avoid port conflicts for HttpSys Internal/#1795 ( #7808 )
2019-02-28 10:31:15 -08:00
Nate McMaster
e7b00a5508
Deprecate the Microsoft.AspNetCore.App metapackage in favor of targeting and runtime packs ( #7832 )
...
* Deprecate the Microsoft.AspNetCore.App metapackage in favor of targeting and runtime packs
* Stop producing Microsoft.AspNetCore.App, and runtime.$(rid).Microsoft.AspNetCore.App
* Generate the shared framework without using 'NuGet' restore
* Stop producing intermediate packages for shared-framework only assemblies
* Put the platform manifest into the targeting pack (data/Microsoft.AspNetCore.App.PlatformManifest.txt)
* Create well-known, shared intermediate directories that installers can use to bundle content
2019-02-28 10:14:18 -08:00
Steve Sanderson
18c1b994df
Basic integration tests for NodeServices ( #8029 )
2019-02-28 17:58:57 +00:00
Pranav K
f79f2e3b12
Add some reference docs for MVC ( #7981 )
2019-02-28 09:56:55 -08:00
BrennanConroy
47220cf13e
Fix StreamInvocationsBlockOtherInvocationsUntilTheyStartStreaming ( #8015 )
2019-02-28 09:23:33 -08:00
Massimo Prota
0dd3375095
[Azure] Fixed two misspelling of 'tenant' in properties' inline XML documentation ( #7912 )
...
- Azure/AzureAD/Authentication.AzureAD.UI/src/AzureADOptions.cs
- AzureAD/Authentication.AzureADB2C.UI/src/AzureAdB2COptions.cs
2019-02-28 03:06:22 -08:00
Justin Kotalik
555e460c15
Fix flaky AbortedStream test in Kestrel ( #8010 )
2019-02-27 20:55:10 -08:00
Stephen Halter
896c027010
Increase shutdown timeout in Kestrel's other TestServer ( #8011 )
2019-02-27 18:15:25 -08:00
N. Taylor Mullen
f5b6039add
Add docs for Microsoft.AspNetCore.Mvc.TagHelpers.
...
- Also obsoleted two unused members on `ImageTagHelper`.
- Removed `NoWarn` for docs on `Microsoft.AspNetCore.Mvc.TagHelpers`.
Addresses aspnet/Docs/#10593
2019-02-27 15:42:38 -08:00
Hao Kung
07dad89721
Clarify ExternalLoginInfo displayName doc comment ( #7833 )
2019-02-27 15:02:20 -08:00
Chris R
58915cb8e4
Remove servergc
2019-02-27 14:53:38 -08:00
BrennanConroy
a936d77845
Automatically capture crashdumps for C++ client tests ( #7940 )
2019-02-27 14:20:14 -08:00
Nathan
4e4fdaaf68
Adding SameSite comments ( #7907 )
2019-02-27 12:00:16 -08:00
James Newton-King
a6b00f0d0d
Add xml docs to RazorPagesEndpointRouteBuilderExtensions ( #7992 )
2019-02-28 08:22:44 +13:00
Pavel Krymets
783131a750
Re-enable full IIS tests on Windows.10.Amd64.EnterpriseRS3.ASPNET.Open ( #7959 )
2019-02-27 11:03:41 -08:00
Sébastien Ros
fd83f4dbb9
Using <FrameworkReference> in benchmark apps ( #7957 )
2019-02-27 10:27:01 -08:00
Mikael Mengistu
0d570a2d42
Add small doc comment for TransportType Enum( #7994 )
2019-02-27 09:17:08 -08:00
Javier Calvarro Nelson
4fe4295720
[Components][ Fixes #7405 ] Increase CanTriggerEventHandlerDisposedInEarlierPendingBatchAsync timeout to reduce test flakyness
...
Increases the timeout from 500 to 1000
2019-02-27 04:28:07 -08:00
Zachary Becknell
0d48617ef9
Update Blazor NDC video link
2019-02-26 22:50:27 -05:00
Justin Kotalik
bbe4a9d071
Call Complete on Http2Stream when stream is done earlier ( #7933 )
2019-02-26 18:24:35 -08:00
Doug Bunting
f8c3f02345
[2.1. test only] Remove checks for Microsoft.VisualStudio.Web.CodeGeneration.Design in templates ( #7983 )
...
- see aspnet/AspNetCore-Internal#1759
2019-02-26 16:50:35 -08:00
Chris R
608505652a
Change template order
2019-02-26 14:32:22 -08:00
Chris R
0d304917dc
Update Worker template for Worker SDK
2019-02-26 12:07:14 -08:00
Hao Kung
a2c8a34556
Reenable some helix tests ( #7763 )
...
* Fix identity UI script tests on helix
* Add OnHelix static helper method
2019-02-25 23:39:46 -08:00
Chris Ross
40b2a945b3
Merge pull request #7918 from dotnet-maestro-bot/merge/release/3.0-preview3-to-master
...
[automated] Merge branch 'release/3.0-preview3' => 'master'
2019-02-25 19:46:41 -08:00
Ben Adams
423de42849
Use less stack for HttpResponseHeaders.CopyToFast ( #7724 )
2019-02-25 17:41:12 -08:00
Chris R
87ae40f814
Update Microsoft.AspNetCore.Hosting.Abstractions ref assembly
2019-02-25 17:17:10 -08:00
Doug Bunting
d515bd977f
Merge branch 'master' into merge/release/3.0-preview3-to-master
2019-02-25 15:56:46 -08:00
Stephen Halter
46fe595606
Support IAsyncEnumerable returns in SignalR hubs ( #6791 )
2019-02-25 15:08:11 -08:00
Ryan Brandenburg
03460d81ce
Add retries to CDN downloads ( #7881 )
...
Add retries to CDN downloads
2019-02-25 14:44:22 -08:00
Mikael Mengistu
3d17ac3d4c
Handle onReceive logic in background thread ( #7809 )
2019-02-25 14:24:07 -08:00
Steve Sanderson
87f4ca7299
[Templates] Imports and CSS tweaks for forms/validation ( #7914 )
...
* Add Microsoft.AspNetCore.Components.Forms to default Components imports
* Add default validation CSS rules in Components/Blazor templates
* Add default validation CSS styles to Components testassets projects
2019-02-25 21:50:12 +00:00
Steve Sanderson
61098b6680
Make InputBase use EventCallback for ValueChanged ( #7915 )
...
* Make InputBase use EventCallback for ValueChanged
... so that the host component gets re-rendered automatically after each value change (like when binding to DOM elements).
* Improve E2E test code
... so that the host component gets re-rendered automatically after each value change (like when binding to DOM elements).
2019-02-25 21:49:28 +00:00
Hao Kung
9e21faeafb
Skip failing identity tests ( #7926 )
2019-02-25 12:55:35 -08:00
Nate McMaster
d2d60000eb
Create Linux installers for the aspnetcore targeting pack ( #7776 )
...
This creates 3 new build outputs:
* aspnetcore-targeting-pack-$(version).tar.gz
* aspnetcore-targeting-pack-$(version)-linux-x64.deb
* aspnetcore-targeting-pack-$(version)-linux-x64.rpm
Other changes:
* Make RPM packaging consistent with other installers. Vendor == Microsoft Corporation
* Add shared properties for building the targeting pack (or not building it in a servicing build)
2019-02-25 12:00:36 -08:00
John Beisner
f0cb6cc68b
Modify the 'InstallLocation' registry key. ( #7877 )
...
Before = SOFTWARE\dotnet\Setup\InstalledVersions\<arch>\sdk
After = SOFTWARE\dotnet\Setup\InstalledVersions\<arch>
2019-02-25 11:05:00 -08:00
Javier Calvarro Nelson
23c528c176
[Azure] [ Fixes #6033 , #6580 , #6669 ] Various fixes and cleanups.
...
* Adds an Azure AD Sample and adds a page to test access denied.
* Renames AzureAD and AzureADB2C internal classes for easier to debug
stacktraces.
* Fixes service registration for options configuration.
* Adds missing deps to the solution.
2019-02-25 10:18:59 -08:00
Jiping
a3e0a45d20
[Azure][ Fixes #6669 ] AccessDeniedPath is wrong
2019-02-25 10:18:59 -08:00
Pavel Krymets
78bc2a10b9
Reenable IISExpress on helix ( #7586 )
2019-02-25 09:05:19 -08:00
Chris Ross
ff79e9bda5
Replace EnvironmentName with Environments #7733 ( #7899 )
2019-02-25 08:13:48 -08:00
Nate McMaster
f2658821b5
React to System.Runtime.CompilerServices.Unsafe moving into Microsoft.NETCore.App
...
React to dotnet/corefx#35526
2019-02-24 15:37:03 -08:00
Nate McMaster
5c525915cd
Update generated source code
2019-02-24 09:45:27 -08:00
Nate McMaster
e02e047dcb
Merge branch 'master' into merge/release/3.0-preview3-to-master
2019-02-24 09:31:17 -08:00
BrennanConroy
f8368097a9
Remove web::uri usage from public API ( #7834 )
2019-02-23 13:35:37 -08:00
Nate McMaster
1b27c9905c
Update dependencies and react to changes ( #7844 )
...
* Add workaround for dotnet/sdk#2976
* Add new restore sources
* Update BAR manifest to point to https://dotnetfeed.blob.core.windows.net/aspnet-aspnetcore/index.json
* Obsolete WithCulture
* Add retries to dockerbuild.sh
* Ensure each test run gets a unique in-memory database
2019-02-22 19:09:08 -08:00
Pavel Krymets
f1b188611a
Fix generated code ( #7883 )
2019-02-22 18:15:13 -08:00
John Luo
e65004907a
Docker support not available for multi-project templates ( #7878 )
2019-02-22 16:55:30 -08:00
Stephen Halter
90e893ed07
React to #7751 ( #7842 )
2019-02-22 16:24:01 -08:00
BrennanConroy
be63df852f
Skip RunsWithIterationEnvVariable ( #7879 )
2019-02-22 16:04:43 -08:00
Javier Calvarro Nelson
efaaa55d44
[Templating] Add favicon.ico to the components template
2019-02-22 16:00:58 -08:00
Chris Ross
26d71e6ef6
Fix up Security samples #7765 ( #7767 )
2019-02-22 15:45:20 -08:00
Nate McMaster
7fe3b7640d
Merge branch 'release/3.0-preview3'
2019-02-22 15:07:50 -08:00
Nate McMaster
f0ef784783
Run yarn import to convert package-lock.json to yarn.lock
2019-02-22 13:30:19 -08:00
Nate McMaster
5be7d30231
Replace npm commands with yarn
2019-02-22 13:30:19 -08:00
Ryan Nowak
3d448f7197
Fix #5055 use of page parameter ( #7441 )
...
This change introduces some new heuristics to make it easier to use
'page' or other resevered parameter names as parameters in URL
generation.
--
The main change here is to allow the link generation tree to *ignore* a
value passed in to URL generation when it conflicts with an endpoint's
required values.
The main concern of this feature area is "how do we tell whether you are
linking to an action or a page?". Routing attempts to do the right thing
will requiring very little from the user in terms of expressing intent.
In this case, we try to tell the difference between an attempt to generate
a link to an action due to the presence of the 'action' parameter and
absence of the 'page' parameter. This obviously doesn't work when you
want to use 'page' as a non-reserved parameter in an action. The same
case occurs for pages, but users are already used to the idea that
'action' is a reserved word in MVC.
We can loosen this restriction when the value that's supplied for 'page'
is known not to be any existing value of the 'page' route value.
This approach seems somewhat reasonable but has many of the problems inherent
to this area. When it fails (the value you want to use for 'page' causes
a conflict) - it's going to be esoteric and hard to understand.
2019-02-22 11:44:43 -08:00
Doug Bunting
2764ac66b0
Undo "Restore Microsoft.VisualStudio.Web.CodeGeneration.Design references in templates"
...
- not intended for `release/2.1` without a PR!
This reverts commit 4ed02ebc5c
2019-02-22 11:00:26 -08:00
Doug Bunting
4ed02ebc5c
Restore Microsoft.VisualStudio.Web.CodeGeneration.Design references in templates
...
- revert part of "Remove aspnet/Scaffolding submodule (#7166 )"
- that was commit bb8c6fcd46
2019-02-22 10:58:53 -08:00
Steve Sanderson
99d7d34447
In Razor Components template, use <environment> tag helper for bootstrap CSS. Fixes #6886
2019-02-22 17:39:00 +00:00
Chris Ross
7d90d4d1e7
Use friendly obsolete messages ( #7831 )
2019-02-22 08:40:34 -08:00
Justin Kotalik
57092e96ac
Implement Kestrel Request PipeReader ( #7603 )
2019-02-22 08:26:23 -08:00
Steve Sanderson
5315446054
Avoid UI flickering during transition from prerendered to live content
2019-02-22 16:25:44 +00:00
Pranav K
6a57218e14
Remove more references to JSRuntime.Current
2019-02-21 23:11:45 -08:00
Ryan Brandenburg
511538a19e
Revert bad merge in React app ( #7769 )
2019-02-21 21:46:27 -08:00
Javier Calvarro Nelson
2d9cba86fd
[Components] Prerrendering startup experience ( #7770 )
...
[Components] Prerrendering startup experience
* Introduces an IComponentPrerrenderer to handle Prerrendering
* MVC registers a basic static prerrrenderer.
* Components registers a more feature complete prerrender that will
handle reconnection to the original circuit after prerrendering in
the future to allow for prerrendered interactive components.
* Removes UseRazorComponents
* Removes the SPA fallback in favor of a catch all route in
Index.cshtml
* Moves the framework files to be served by the default StaticFiles
middleware in the pipeline by way of plugging specific providers
through options.
* Lifts UseSignalR(r => r.MapHub<ComponentHub>()) into startup and
replaces it with a shorthand for MapHub using endpoint routing.
* Adds extension methods to map components to selectors for a given
hub.
* Updates the razor component templates to include prerendering and use a razor page as the entry
point.
2019-02-21 16:26:44 -08:00
Javier Calvarro Nelson
ea97934127
[Templating]Api authorization spa integration ( #7721 )
...
[Templating] Adds authentication support for the SPA templates
* Adds a new -auth option to the Angular and React templates with None and Individual values.
* When using authentication it configures the server to use the ApiAuthorization support built for 3.0
* For angular it adds an ApiAuthorization Angular module that handles the authentication flows through
a Login and a Logout components and exposes an Http client interceptor, a routing guard and a Login
menu component for the main Angular application to integrate authentication into the app.
* For react it adds a Login and Logout components to handle the authentication flows, an
AuthorizeRoute component to protect access to other routes and a Login menu component to
integrate authentication into the application.
2019-02-21 16:23:55 -08:00
John Luo
2fd9e40b58
Merge branch 'release/3.0-preview3'
2019-02-21 16:01:22 -08:00
Artak Mkrtchyan
26006e5b10
Updated the survey link for 0.9 release
2019-02-21 15:40:16 -08:00
BrennanConroy
6a06bf8532
Skip RunsWithIterationEnvVariable ( #7814 )
2019-02-21 15:31:40 -08:00
Ryan Brandenburg
ae0c3dc42a
Fix SHA calculations ( #7804 )
...
Fix SHA calculations
2019-02-21 15:19:02 -08:00
John Luo
4c0b114b12
Add gRPC templates ( #7561 )
2019-02-21 15:12:13 -08:00
Pavel Krymets
9355c7c1a5
Add reference assemblies support ( #7764 )
2019-02-21 14:33:35 -08:00
Ryan Nowak
ebb527d347
[wip] Update Razor SDK and resolve issues
...
I'm still chasing one more issue.
(cherry picked from commit 616a4a36f5 )
2019-02-21 11:42:23 -08:00
Nate McMaster
4451a80447
Merge branch 'release/3.0-preview3'
2019-02-21 10:30:11 -08:00
Nate McMaster
7a87e8c6a7
Re-enable building runtime packs
...
Also, sort debug output in SharedFx tests for improved readability
2019-02-21 09:38:11 -08:00
JulijaRamoskiene
e5f4400257
FormFeature -Added exception for invalid content-disposition header ( #7525 )
2019-02-21 09:38:06 -08:00
Nate McMaster
6252351da7
Targeting pack and shared framework fixups ( #7794 )
...
* Fix package type to match spec ('DotnetPlatform')
* Fix missing metadata in MSI installer
* Fix incorrect target order which caused duplicate assemblies in netcore.app and aspnetcore.app
2019-02-21 09:28:58 -08:00
Ryan Nowak
616a4a36f5
[wip] Update Razor SDK and resolve issues
...
I'm still chasing one more issue.
2019-02-21 09:14:17 -08:00
Pranav K
51e2bea403
Throw if CORS policy is configured to allow credentials and any origin ( #7751 )
...
* Throw if CORS policy is configured to allow credentials and any origin
Fixes https://github.com/aspnet/AspNetCore/issues/3106
2019-02-21 09:06:00 -08:00
Pranav K
5418698f39
Disable CORS functional tests from running in parallel
...
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1845
2019-02-21 06:20:11 -08:00
Ryan Brandenburg
019a1be305
Make the linter happy
2019-02-20 17:02:56 -08:00
Ryan Brandenburg
918f3d3c40
Fix merge doubling
2019-02-20 16:35:52 -08:00
Pranav K
82c323f599
Merge pull request #7771 from dotnet-maestro-bot/merge/release/2.1-to-release/2.2
...
[automated] Merge branch 'release/2.1' => 'release/2.2'
2019-02-20 16:28:35 -08:00
Ryan Brandenburg
b2ee8e6b66
Merge branch 'merge/release/2.2-to-master' of https://github.com/dotnet-maestro-bot/AspNetCore into merge/release/2.2-to-master
2019-02-20 16:21:24 -08:00
Pranav K
cc60fa9a18
Ensure templates are packed in the Blazor VSIX
2019-02-20 16:19:45 -08:00
Ryan Brandenburg
5a7bfbbc01
Use Bootstrap 3.4.1 and 4.3.1 ( #7719 )
...
Use Bootstrap 3.4.1. and 4.3.1
2019-02-20 15:55:49 -08:00
Mikael Mengistu
f33cc20dbf
Add support for Async On Delegates ( #7700 )
2019-02-20 15:44:54 -08:00
Pranav K
b2a84b7b5f
Regenerate baselines for precompilation test ( #7766 )
...
* Regenerate baselines for precompilation test
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/1822
2019-02-20 15:21:45 -08:00
Stephen Halter
001b6ea08a
Use .NET Core SequenceReader ( #7003 )
...
* Use .NET Core SequenceReader
Remove BufferReader and use SequenceReader<T> which now ships in CoreFX.
This is related to https://github.com/aspnet/KestrelHttpServer/pull/3068 which builds on the functionality added to the reader.
* Use var
2019-02-20 14:39:45 -08:00
BrennanConroy
e455c2c22b
Add negotiation response support ( #7675 )
2019-02-20 12:38:43 -08:00
Nate McMaster
9a2db43848
Follow-up to VS2019 conversion ( #7753 )
...
* Set VS version in file to 16.0.0.0
* Fix for restore failure on Microsoft.AspNetCore.App.Runtime.csproj
2019-02-20 11:02:38 -08:00
Nate McMaster
85ae18c723
Make Visual Studio 2019 a prerequisite to building this repo ( #7005 )
...
Changes:
* Make Visual Studio 2019 a prerequisite for building this repo
* Update .sln files
* Update Windows SDK to 17134
* Update developer docs
* Disable ANCM tests
* Update to .NET Core SDK 3.0 Preview 2
* Use Microsoft.NET.Sdk.Razor as a package consistently accross the repo
* React to changes in metadata from Microsoft.NETCore.App
* React to changes in .NET Core SDK
* Attempt to workaround CodeCheck.ps1 failure which doesn't repro locally or on different agents. Possibly due to differences in the version of the PowerShell task?
* Remove dead YML file
* Rename usages of win7-{x64,x86} to win-{x64,x86}
* Update KoreBuild to 3.0.0-build-20190219.1
2019-02-20 09:53:53 -08:00
Steve Sanderson
895e1c69e0
Components/Blazor template updates ( #7709 )
...
* In Blazor hosted template, only UseBlazorDebugging in development environment. Fixes #7275
* Enable HTTPS in the Razor Components template. Fixes #6928
* Reduce Razor Components template to one project. Fixes #6883
* Minor phrasing tweak
* In Razor Components template, change .cshtml to .razor, except _ViewImports.cshtml
* Put back LangVersion
* Update RazorComponentsTemplateTest
2019-02-20 13:16:05 +00:00
Steve Sanderson
7a2dfd3200
Components: Forms and validation ( #7614 )
2019-02-20 09:56:32 +00:00
Chris Ross
4e44025a52
Replace IHostingEnvironment with IWebHostEnvironment ( #7725 )
2019-02-19 21:11:52 -08:00
Matthias Laroche
7af971838e
Set Content-Length to 0, when returning an empty body
...
When returning 416 RangeNotSatisfiable in FileResultExecutorBase, set the Content-Length based on the length of the body instead of the length of the original file.
Bugfix for :
https://github.com/aspnet/AspNetCore/issues/4943
2019-02-19 17:54:11 -08:00
Matthias Laroche
134f28f71d
Update FileResult tests to detect a bug for the status 416 RangeNotSatisfiable
...
Update FileResult tests to detect a bug for the status 416 RangeNotSatisfiable :
https://github.com/aspnet/AspNetCore/issues/4943
When the body is empty, the Content-Length header should be 0 to match the body length.
2019-02-19 17:54:11 -08:00
Nate McMaster
a9c358bbbd
Build MSI installers for targeting pack ( #7726 )
...
Part of #6501
This adds a new Windows installer for the targeting pack. It places *.dll and *.xml (docs) in `[DOTNETHOME]\packs\Microsoft.AspNetCore.App.Ref\$(version)\ref\netcoreapp3.0`.
Outputs:
* aspnetcore-targeting-pack-$(version).zip
* aspnetcore-targeting-pack-$(version)-win-x64.exe (defaults to C:\Program Files\dotnet)
* aspnetcore-targeting-pack-$(version)-win-x86.exe (defaults to C:\Program Files (x86)\dotnet)
These all include the same files. These are meant to be bundled in the .NET Core SDK installer, but can be launched directly too.
2019-02-19 16:28:08 -08:00
Doug Bunting
8d6d300bfc
Improve service reference filenames and class names ( #7447 )
...
- #4927
- fully-sanitize class names and filenames
- use aspnet/AspNetCore-Tooling's `CSharpIdentifier` class
- default metadata in sequence [URI or project&document name ->] `%(DocumentPath)` -> `%(OutputPath)` -> `%(ClassName)`
- if user sets metadata explicitly, the override affects defaults later in the sequence
- separate some nested validations and defaulting steps
- provide default `%(DocumentName}` even if `%(DocumentPath}` is set explicitly
- validate URI is absolute even if `%(DocumentPath}` is set explicitly
other:
- don't write out an empty Open API / Swagger file
nits:
- do not use default `%(DocumentName}` in default `%(DocumentPath)` for `<ServiceProjectReference>` items
- do not use empty URI path or query string in default `%(DocumentPath)` for `<ServiceUriReference>` items
2019-02-19 16:05:54 -08:00
Ryan Nowak
c725089e8b
Add missing conversions on EventCallbackFactory
2019-02-19 15:48:16 -08:00
BrennanConroy
f37d30833d
Ignore unexpected stream items and completions from client ( #7511 )
2019-02-19 15:25:50 -08:00
Doug Bunting
14b7184c09
Improve documentation of `BinderType` and `BindingSource` properties ( #7218 )
...
- add regression test for #4939
- add `[BindProperty]` doc comments
- add `<remarks>` to `BinderType` properties that recommend setting `BindingSource` in some cases
smaller issues:
- catch invalid `BinderType` values up front
- complete `BindingSource.ModelBinding` implementation: `IValueProvider` filtering was faulty
nits:
- accept VS suggestions e.g. remove unused variables
- "model binder" -> `<see cref="IModelBinder" /> implementation` in some doc comments
2019-02-19 15:22:04 -08:00
Doug Bunting
3e0c75187c
Place limits on model binding collection size and recursion depth ( #7214 )
...
- #7052
- add MvcOptions.MaxModelBindingCollectionSize` and `MvcOptions.MaxModelBindingRecursionDepth`
nits:
- update syntax of a few `Resources.Designer.cs` files (I ran `/t:resx` on Mvc.sln)
- take VS suggestions in a few test classes
2019-02-19 15:17:56 -08:00
Ryan Brandenburg
69abefa06f
[Design] Harden template package installer and fix name ( #7624 )
...
Harden template package installer and fix name
2019-02-19 14:41:59 -08:00
Mikael Mengistu
d1fac57734
Ensure SignalR client messages are processed in order ( #7697 )
2019-02-19 11:48:22 -08:00
TimTim
dffe9abf6b
Fix connection ID ( #7681 )
2019-02-18 17:13:53 -08:00
Ben Adams
3e47fa7c69
Inline BufferWriter .ctor ( #7674 )
2019-02-17 21:30:29 -08:00
Ryan Nowak
98fe8a8328
Improvements to bind and event handling
...
The changes here make event dispatching (including bind) more
user-friendly by avoiding the need for manual calls to StateHasChnaged.
We also introduce a new type `EventCallback` (and `EventCallback<T>`).
This is a new primitive that is like a super-powered version of a
delegate. When writing a component that accepts delegates as parameters,
consider using `EventCallback` for the following reasons:
- Allows consumer to pass a variety of different delegate signatures
- Does proper event dispatching and error handling
Using `EventCallback` will eliminate most of the remaining cases where a
manual `StateHasChanged` is required when components are passing content
and delegates to each other.
`EventCallback` is inherently async for the reason that this is really
the only way to provide correct error handling.
-----
The fix for this will be two-phase by first creating a set of APIs that
can be targeted by the compiler that has the desired behaviour and then
updating the compiler to target this new infrastructure.
2019-02-17 15:58:08 -08:00
James Newton-King
cc7b35439c
Add test for HTTP method metadata order ( #7225 )
2019-02-18 09:20:12 +13:00
Ben Adams
6b7e821913
Don't hardcode fixed size for GetMemory in ChunkedTests
2019-02-17 09:29:57 -08:00
Chris R
b571246c93
Suppress warnings for obsolete Extensions types
2019-02-17 09:29:57 -08:00
Justin Kotalik
49a720c1dc
Fix GetMemory to not pass in size hint
2019-02-17 09:29:57 -08:00
Mikael Mengistu
af43b80b1a
Make server timeout configurable ( #7340 )
2019-02-17 07:57:36 -08:00
Stephen Halter
8ae4c4dbd6
Add SignalR web worker sample and test ( #7378 )
2019-02-17 07:52:18 -08:00
Ben Adams
4646ed5618
Work around WriteBarrier assign for nulling struct ( #7659 )
2019-02-16 20:09:39 -08:00
David Fowler
0fd753bfc2
Align host behavior with respect to exceptions ( #7657 )
...
- Don't catch errors in IHostedService.StartAsync
- Only catch errors when executing StopAsync but rethrow an aggregate
- Updated the tests
2019-02-16 19:09:14 -08:00
David Fowler
799b91a324
Change the namespace of the extension methods ( #7651 )
...
- The other routing extension methods use Microsoft.AspNetCore.Builder
2019-02-16 00:36:59 -08:00
James Newton-King
c2d1ab925e
Remove obsolete APIs from routing ( #7371 )
2019-02-16 18:37:51 +13:00
Mikael Mengistu
c806c5a61a
Wait for stop to complete in SignalR test to prevent flakiness. ( #7634 )
2019-02-15 18:42:04 -08:00
Ben Adams
639d290b19
Lock-free IOQueue ( #6154 )
...
Second half of https://github.com/aspnet/AspNetCore/pull/4060
2019-02-15 18:26:30 -08:00
Chris Ross
191fb03de7
ITlsHandshakeFeature requires Win8+ ( #7629 )
2019-02-15 16:28:04 -08:00
Justin Kotalik
60b00fa007
Make reads that return canceled ReadResult throw ( #7618 )
2019-02-15 16:11:57 -08:00
Chris Ross
93a24b03bb
Disable AllowSynchronousIO by default in all servers #4774 ( #5120 )
...
* Disable AllowSynchronousIO by default in all servers
2019-02-15 16:05:49 -08:00
Pranav K
7daa0e0145
Convert BlazorExtension to SDK style project ( #7588 )
...
* Convert BlazorExtension to SDK style project
Fixes https://github.com/aspnet/AspNetCore/issues/7135
2019-02-15 15:14:19 -08:00
Pranav K
fe1c2c84ee
Remove uses of JSRuntime.Current ( #7599 )
...
* Remove uses of JSRuntime.Current
Prerequisite for https://github.com/aspnet/AspNetCore/issues/6828
2019-02-15 15:14:00 -08:00
Pavel Krymets
9afdc48f13
Disable remote symbol loading for dump files in CI ( #7620 )
2019-02-15 14:42:36 -08:00
Chris Ross
cc62bcebfc
Skip HttpSys.Https tests on Helix Internal/#1816 ( #7578 )
2019-02-15 12:33:23 -08:00
David Fowler
5ef51822de
Added endpoint routing support ( #7608 )
...
- Basic endpoint routing support to for SignalR hubs, ConnectionHandler and IConnectionBuilder endpoints
- Updated all functional tests and samples to use it
- Added all attributes as metadata from Hubs and ConnectionHandlers
- Added a test to verify client is rejected if auth is ineffective
2019-02-15 12:32:01 -08:00
Pavel Krymets
6bafb7cb6f
Log before releasing streams and firing tokens ( #7583 )
...
Might fix: https://github.com/aspnet/AspNetCore-Internal/issues/1659
I think writes complete too fast so we don't observe when the message gets logged
2019-02-15 10:41:21 -08:00
Justin Kotalik
25f1f59378
Make first write use the same BufferWriter ( #7505 )
2019-02-15 08:26:57 -08:00
Nikita Potapenko
98ad532822
Removed comments
...
Fixes #7579
2019-02-15 13:20:14 +00:00
Ajay Bhargav Baaskaran
c565386a3e
Merge pull request #7597 from aspnet/ajbaaska/merge-master
...
Merge branch 'release/2.2' to master
2019-02-14 23:20:18 -08:00
Doug Bunting
b711d6cf67
Merge branch 'release/2.1' into release/2.2
2019-02-14 21:18:02 -08:00
Ajay Bhargav Baaskaran
b3d3f5e7fb
Updated missed slns
2019-02-14 17:35:48 -08:00
Ryan Brandenburg
4932a4bad5
Fix typemismatch
2019-02-14 17:15:41 -08:00
Ryan Brandenburg
3b1a0e4755
Fix algos
2019-02-14 17:15:41 -08:00
Ryan Brandenburg
a47139f033
Fix sha tests
2019-02-14 17:15:41 -08:00
Ryan Brandenburg
f8dea0e7f9
Fix integrity checks
2019-02-14 17:15:41 -08:00
Ryan Brandenburg
15c5dfec2e
Upgrade bootstrap versions
2019-02-14 17:15:41 -08:00
Ryan Brandenburg
bd4af873b0
Fix urls
2019-02-14 17:13:06 -08:00
Ryan Brandenburg
137d2d2357
Fix whitespace
2019-02-14 17:13:06 -08:00
Ryan Brandenburg
6786f97526
Update simpleapp test
2019-02-14 17:13:06 -08:00
Ryan Brandenburg
271e222b51
Update to bootstrap 3.4.1
2019-02-14 17:13:06 -08:00
Nate McMaster
6defaadb8b
Update location of obj/ and bin/ directories to match Arcade conventions ( #7585 )
2019-02-14 16:27:53 -08:00
Ajay Bhargav Baaskaran
7a26d27e8b
Merge branch 'release/2.2'
2019-02-14 16:08:51 -08:00
BrennanConroy
9fda946f0f
[Backport] Add CancelInvocation support to MsgPack in TS client ( #7404 )
2019-02-14 13:49:49 -08:00
Ajay Bhargav Baaskaran
a8277408d9
Merge pull request #7542 from dotnet-maestro-bot/merge/release/2.1-to-release/2.2
...
[automated] Merge branch 'release/2.1' => 'release/2.2'
2019-02-14 10:43:50 -08:00
Chris Ross
44e6813452
Use new version of h2spec #6691 ( #7559 )
2019-02-14 09:28:58 -08:00
Joseph Musser
50587d7d6d
Fix “must comprised of” ( #7519 )
...
* Fix missing word
* Replace ‘comprise’ with simpler wording
2019-02-14 09:27:55 -08:00
BrennanConroy
bca85b92fc
More C++ Client cleanup ( #7551 )
2019-02-14 08:31:15 -08:00
Ryan Brandenburg
6ea3f27dbb
Merge pull request #4565 from martinpe36/master
...
Update React-Redux client app to use TypeScript instead of JavaScript
2019-02-14 08:14:07 -08:00
Nate McMaster
0ec25d3167
Create new 'runtime pack' nuget packages for Microsoft.AspNetCore.App ( #7475 )
...
* Create a new package - Microsoft.AspNetCore.App.Runtime.${rid} - which contains crossgen-ed versions of shared framework assemblies. This will be used by the SDK to replace rid-split packages
* Add a task which can generate the .deps.json file for the shared framework. Unlike the existing task we have, this does not rely on consuming a .deps.json file generated by first running a restore on packages.
* Move the reference to xunit.runner.console into the normal targets and files for managing dependencies
* Produce binlogs during build
2019-02-14 07:25:13 -08:00
Vakhtangi Abashidze
a314cb2773
PointerID type string replaced to long ( #7426 )
...
Solves issue [#7418 ](https://github.com/aspnet/AspNetCore/issues/7418 ) - Blazor onpointerdown event gives error
2019-02-14 03:24:13 -08:00
Stephen Halter
132a1ad31b
Remove capture of "this" from local function ( #7467 )
2019-02-14 00:21:39 -08:00
Doug Bunting
d102d10a81
Update branding to 2.2.3
...
- new version
- update baselines
- grab latest released Microsoft.NetCore.App and Microsoft.NETCore.DotNetAppHost
nit:
- updated ZipManifestGenerator's README.md to use 2.2 examples
2019-02-13 23:15:58 -08:00
James Newton-King
05895cde64
Fix endpoint routing flaky test on build server in 2.2 ( #7489 )
2019-02-14 17:48:22 +13:00
Nate McMaster
94109e6655
Add package override manifest to the targeting pack ( #7555 )
2019-02-13 19:32:47 -08:00
Ryan Nowak
f2a1a4542e
Introduce dynamic endpoints and fix #7011 ( #7445 )
...
* Add IDynamicEndpointMetadata for dynamic endpoints
* Use a dynamic endpoint policy for pages
2019-02-13 18:52:07 -08:00
Pranav K
27e54a1b7a
Skipping flaky test
2019-02-13 16:45:36 -08:00
Pranav K
9053bc6e29
Re-enable skipped runtime compilation tests
2019-02-13 16:45:36 -08:00
BrennanConroy
9de42d516e
Copy Kestrel perf changes ( #7480 )
2019-02-13 16:31:37 -08:00
Ajay Bhargav Baaskaran
a2f27426a5
Add missed tests
2019-02-13 16:25:31 -08:00
Jeremy Kuhne
a02ac20183
Use var
2019-02-13 16:20:34 -08:00
Jeremy Kuhne
2c649b2409
Use .NET Core SequenceReader
...
Remove BufferReader and use SequenceReader<T> which now ships in CoreFX.
This is related to https://github.com/aspnet/KestrelHttpServer/pull/3068 which builds on the functionality added to the reader.
2019-02-13 16:20:34 -08:00
Chris Ross
d1aa53721b
Add launchSettings.json to worker template ( #7550 )
...
* Add launchSettings.json to worker template #7545
* Switch back to the Web SDK
2019-02-13 15:54:15 -08:00
Ajay Bhargav Baaskaran
0c2ee920a1
Merge branch 'release/2.1' into release/2.2
2019-02-13 14:52:38 -08:00
Nate McMaster
338de4710a
Automatically set 'PrivateAssets=All' for .Sources references ( #7539 )
...
When a `<Reference>` is named `*.Sources`, set PrivateAssets=All (exclude from generated nuspec) and IncludeAssets=ContentFiles (only consume content files, not .dll's)
2019-02-13 14:31:15 -08:00
Pranav K
cddbc2e888
Improve Components error handling ( #7165 )
...
* Improve Components error handling
* Change event handlers IHandleEvent, IHandleAfterEvent to be async.
* Return faulted tasks to Renderer instead of handling exceptions in ComponentBase
* Use ILogger in RemoteRenderer, and log to console in WebAssemblyRenderer
* Cleaning up touched files
Fixes https://github.com/aspnet/AspNetCore/issues/4964
2019-02-13 14:22:46 -08:00
Ajay Bhargav Baaskaran
4cceccd568
Make Mvc repo folder layout consistent ( #7518 )
2019-02-13 10:53:39 -08:00
Mikael Mengistu
3d3ad96206
SignalR Java Client LongPolling Transport ( #6856 )
2019-02-13 10:27:07 -08:00
Nate McMaster
2ac4619635
Replace custom targets for generating assembly attributes and source control info by using SDK features ( #7504 )
2019-02-13 10:22:03 -08:00
Chris Ross
06d7fe73a9
Implement ITlsHandshakeFeature for HttpSys ( #7284 )
2019-02-13 08:39:45 -08:00
Nate McMaster
3fd8a97af2
Add targets to generate the list of shared framework assemblies from project property ( #7510 )
...
Changes:
* Add support for a property, `IsAspNetCoreApp`, in the .csproj file of assemblies which are part of the shared framework.
* Remove unused dependencies
* Remove reference which have become part of 'netcoreapp3.0'
2019-02-12 23:00:19 -08:00
Doug Bunting
5bbf7109a5
Fail `ComplexTypeModelBinder` after `CanCreateModel(...)` in some cases ( #6793 )
...
- #4802 and #6616
- also reduces the impact incorrect metadata as in #4939
- postpone some property binding in `ComplexTypeModelBinder`
2019-02-12 22:15:43 -08:00
Hao Kung
9ab72f6202
Skip flaky Components test on Helix ( #7488 )
2019-02-12 21:15:28 -08:00
Doug Bunting
447306cbb9
Merge branch 'release/2.1' into release/2.2
2019-02-12 19:32:03 -08:00
Doug Bunting
5bb5bafbed
Update branding to 2.1.9
2019-02-12 19:12:20 -08:00
BrennanConroy
1c6651a1ae
Fixup handshake logic and layering ( #7470 )
2019-02-12 17:06:56 -08:00
Chris Ross
8f72b87981
Enable docker for the worker template #6817 ( #7508 )
2019-02-12 15:09:27 -08:00
Pranav K
173b2f91fb
Trim Async suffix on action names ( #7420 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/4849
2019-02-12 13:30:38 -08:00
Javier Calvarro Nelson
6827bb7443
[Templating] Razor class library for components ( #7461 )
...
* [Components] Razor class library for components
* Updates the Razor Class Library to be a portable components library by
default.
* Adds an option to support the old RCL that includes support for Views
and pages.
* Usage:
* `dotnet new razorclasslib` produces the same traditional Razor Class Library.
* `dotnet new razorclasslib -s false` produces a Razor Class Library without views and pages support.
2019-02-12 06:08:11 -08:00
David Fowler
c1bc210e8e
Fix returning buffered data after stream is drained ( #7476 )
...
- Change TryRead to return the buffer if the Stream is completed
2019-02-11 20:45:15 -08:00
Chris Ross
05923e9151
Get worker tempalte showing up in VS ( #7478 )
2019-02-11 20:25:17 -08:00
Ryan Nowak
acd1cf3251
Update MVC/Routing Startup Experience ( #7425 )
...
* Relayer MvcEndpointDataSource
Separates the statefulness of the data source from the business logic of
how endpoints are created.
I'm separating these concerns because one of the next steps will split
the MvcEndpointDataSource into two data sources.
* Simplify MvcEndpointInfo
Removing things that are unused and leftovers from the 2.2 design of
this feature.
* Remove per-route conventions
Removes the ability to target endpoint conventions
per-conventional-route. This was a neat idea but we have no plans to
ship it for now.
Simplified MvcEndpointInfo and renamed it to reflect its new purpose.
* Remove filtering from MvcEndpointDataSource
This was neat-o but we're not going to ship it like this. We're going to
implement filtering in another place. Putting this in the data source is
pretty clumsy and doesn't work with features like application parts that
need to be baked in addservices
* Simplify ActionEndpointFactory
* Split up data sources
* Use UseRouting in functional tests
I've rejiggered our functional tests to de-emphasize UseMvc(...) and
only use it when we're specifically testing the old scenarios.
UseMvc(...) won't appear in templates in 3.0 so it's legacy.
* Update templates
* Add minor PR feedback
* one more
2019-02-11 19:18:05 -08:00
Justin Kotalik
2a9caa0343
AsTask => GetAsTask() ( #7468 )
...
* AsTask => GetAsTask()
* Another spot
* Another spot
2019-02-11 16:55:28 -08:00
Daniel Roth
2e1aa139f7
Update metadata for the Blazor VSIX ( #7473 )
2019-02-11 16:55:09 -08:00
dotnet-maestro-bot
98be5a3ca5
Fix flaky process output reading for dotnet-watch tests ( #7173 ) ( #7403 )
2019-02-11 16:47:58 -08:00
Ryan Nowak
c5d8f8c34e
Update CORS package.json and friends
...
This is what NPM wants to do - why argue?
2019-02-11 16:19:27 -08:00
Ryan Nowak
5a291d0bc0
Fix #4212 area ambient value page->controller
...
This change enhances our ambient value logic to also deal with required
values. In 2.2 we introduced a 'required values' semantic to allow route
values to appear "to the left" of a route pattern for the purpose of
ambient values copying. This is a complicated way of saying "when you
like to a different endpoint then discard the ambient values".
What we didn't consider is that some ambient values are special (like
area). So basically, we'll allow an ambient value to be used if it's
part of the required values - even if we've already decided to discard
the ambient values.
This is a pretty surgical fix and only affected the desired scenario
based on tests.
-----
I also removed an optimization that I think is broken. I put an earlier
optimization in place that attempted to count ambient values as they
were "seen" to try and avoid some extra copying. This copying loop has a
cost even if it no-ops which is what I was trying to prevent.
Unfortunately since we added 'required values' - it's now possible for
an ambient value to be double-counted, which makes this optimization
incorrect.
2019-02-11 15:58:33 -08:00
Pranav K
88ae930fad
Remove obsolete APIs from MVC ( #7444 )
...
* Remove obsolete APIs from MVC
Fixes https://github.com/aspnet/AspNetCore/issues/7322
2019-02-11 15:27:38 -08:00
Justin Kotalik
e5f31f264c
Another spot
2019-02-11 15:10:30 -08:00
N. Taylor Mullen
dfddc4e8ff
[MVC] Remove obsolete APIs
...
- Removed ViewsFeatureProvider
- Removed PageArgumentBinder and its internal implementation DefaultPageArgumentBinder.
- Removed corresponding test classes/methods for all the above.
- Reacted to class/member changes in dependencies.
#7326
2019-02-11 14:56:30 -08:00
Chris Ross
597c8434d5
Background Worker template ( #7401 )
2019-02-11 14:53:50 -08:00
Justin Kotalik
371c29577b
Another spot
2019-02-11 14:42:02 -08:00
Justin Kotalik
84cdac952a
AsTask => GetAsTask()
2019-02-11 13:58:25 -08:00
David Fowler
a5ba735a0f
Remove PlatformBenchmarks from sln ( #7440 )
2019-02-11 12:38:20 -08:00
Pavel Krymets
037a5b0231
Add more logging to a failing tests and move dumps to logs directory ( #7462 )
2019-02-11 12:14:05 -08:00
David Fowler
476a1827f4
Made changes to stream <-> pipe adapters ( #7407 )
...
- Use the array pool by default when the shared memory pool is specified for both the StreamPipeReader and StreamPipeWriter
- Support allocating unpooled memory if the StreamPipeWriter is asked for memory outside of the max pool size
2019-02-11 11:15:36 -08:00
Ben Adams
3276870d6a
Remove unnecessary Flush ( #7424 )
2019-02-11 11:02:00 -08:00
Ben Adams
6d42ff7c38
Don't write empty data for Flush ( #7415 )
2019-02-11 11:01:36 -08:00
Javier Calvarro Nelson
dbf746d210
[Antiforgery][Components][CORS] Remove obsolete APIs ( #7459 )
...
#7325
#7319
#7324
2019-02-11 10:38:31 -08:00
Doug Bunting
58e6d78549
Suppress Razor warnings about missing doc comments
2019-02-11 10:35:48 -08:00
Artak
7c9959934a
Fixed a type reference in a doc comment.
...
Fixes #7416
2019-02-11 09:06:34 -08:00
Ben Adams
704094b199
Use C#7.3's ReadOnlySpan<byte> optimization for static data ( #7422 )
2019-02-11 07:40:40 -08:00
Martin Costello
762206a5d8
Fix typo in package description ( #7435 )
...
Fix incorrect spelling of "storage".
2019-02-10 16:25:57 -08:00
David Fowler
3be85751d5
Make Hosting.sln compile in vs ( #7431 )
2019-02-10 16:24:33 -08:00
kishanAnem
c1ce7b9a77
ValidationSummary doesn't display property errors if ModelState and ModelMetadata meets the specific conditions #4831
...
Hi @dougbu
I removed test which is naming conflicts.
and closing #7221 PR
2019-02-09 13:11:07 -08:00
Martin Costello
e465013063
Remove local item group ( #7412 )
...
Remove local development item group accidentally added by #7110 .
2019-02-09 12:13:32 -08:00
Joni
9e06cfb7f8
Fix typo in HttpResponseWritingExtensions ( #7413 )
...
Fix typo WriteMutliSegmentEncoded => WriteMultiSegmentEncoded
2019-02-09 08:14:11 -08:00
David Fowler
8f49bdf195
More efficient preface parsing ( #7406 )
...
- Slice before turning the buffer into a Span
- Use SequenceEqual instead of a loop
2019-02-08 21:13:42 -08:00
Pranav K
db7218b2fc
Consume Mono.WebAssembly.Interop from Extensions ( #7290 )
2019-02-08 17:37:36 -08:00
Justin Kotalik
35b99e44ce
Expose HttpResponse PipeWriter in Kestrel ( #7110 )
2019-02-08 17:24:26 -08:00
Arthur Vickers
64e137ba38
Fix build break in Identity tests
...
By configuring the service provider warning to log instead of throw
2019-02-08 15:04:33 -08:00