Commit Graph

44531 Commits

Author SHA1 Message Date
John Luo e272a00bcf
Merge pull request #25371 from dotnet/johluo/add-baseline-suppression
Suppress baseline reference of Microsoft.AspNetCore.SpaServices
2020-08-28 12:12:53 -07:00
John Luo 7438f7aabe Suppress baseline reference of Microsoft.AspNetCore.SpaServices
This was removed in release/5.0
2020-08-28 12:11:13 -07:00
Artak 4df35c7540
Merge pull request #25292 from dotnet/razor_source_generators
Pass generators to CSC during component discovery
2020-08-28 11:32:30 -07:00
dotnet-maestro[bot] d0da0637f0
[release/5.0] Update dependencies from dotnet/efcore (#25349)
[release/5.0] Update dependencies from dotnet/efcore
- Updates:
  - Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - dotnet-ef: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
  - Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20428.1 to 5.0.0-rc.1.20428.3
2020-08-28 18:02:26 +00:00
Artak b51d2fe838
Merge pull request #25290 from dotnet/prkrishn/remove-spaservices
Remove NodeServices + SpaServices
2020-08-28 10:30:03 -07:00
Artak 3db5c9cbc5
Use MonoProxy package for debugging (#24721)
* Use MonoProxy package for debugging

* Initial working end-to-end

* Update package version and polish up dbging issues

* Throw exception if DebugProxy received no output
2020-08-28 10:29:34 -07:00
Safia Abdalla 3c3995f653
Add media type mappings for .blat files (#25284) 2020-08-28 10:29:24 -07:00
Pranav K aedd646f6f
Update JSRuntime.cs 2020-08-28 09:53:25 -07:00
Doug Bunting 31bd4d4b1d
[release/5.0] Correct baseline checks (#25227)
- mostly duplicates #25217
- update `BaselineGenerator` to produce baselines useful in 6.0 (too)
- update Baseline.Designer.props using new generator (matching 3.1.7 release)
- always suppress references expressed only in `*.nuspec` files
  - needed even in servicing builds
- restore warning and errors about removed references (new for 5.0)
  - adjust exclusions to handle `@(_ProjectReferenceByAssemblyName)` removal

nit: do not generate empty `<ItemGroup />` elements

* Correct `@(SuppressBaselineReference)` items
  - remove out-of-date `@(SuppressBaselineReference)` items
    - either 3.1.7 baselines we're using don't include reference or still using package
    - fix some comments and `Condition` attributes to make remainder easy to find
  - add missing `@(SuppressBaselineReference)` items
2020-08-28 09:53:20 -07:00
Pranav K 7686c0b4e7
Record type follow ups: (#25218)
* Record type follow ups:

* Throw an error if a record type property has validation metadata
* Disallow TryUpdateModel on a top-level record type
* Ignore previously specified model value when binding a record type
* Unskip record type tests
* Clean up record type detection

* Update src/Mvc/Mvc.Abstractions/src/Resources.resx

Co-authored-by: James Newton-King <james@newtonking.com>

* Fixup tests

* Update src/Mvc/Mvc.Abstractions/src/ModelBinding/ModelMetadata.cs

* Update src/Mvc/Mvc.Abstractions/src/ModelBinding/ModelMetadata.cs

* Update src/Mvc/Mvc.Abstractions/src/Resources.resx

Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com>

* Update src/Mvc/Mvc.Core/src/Resources.resx

Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: James Newton-King <james@newtonking.com>
Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com>
2020-08-28 09:42:11 -07:00
Will Godbe 96b1c236d0 Merge branch 'wtgodbe/MergePreview8' of https://github.com/dotnet/aspnetcore into wtgodbe/MergePreview8 2020-08-28 09:14:25 -07:00
Will Godbe 72a7635b62 Fix InteropClient testasset 2020-08-28 09:13:19 -07:00
Kevin Pilch 748b368d54
Handle auth schemes in cookie names (#25279)
* Handle auth schemes in cookie names #25266

* With unicode
2020-08-28 09:00:36 -07:00
Safia Abdalla 97280fe5f6
Revert identity package workaround and bump versions (#24819)
* Revert "Add workaround for deprecated overload in authentication scenarios (#24600)"

This reverts commit 7eb58e045d.

* Update identity package versions
2020-08-28 09:00:09 -07:00
Steve Sanderson d793f473c4
Support pseudoelements in CSS scoping (#25270)
* Support pseudoelements in CSS scoping. Fixes #25268

* CR: More test cases

* Another pseudoelement case

* Case insensitivity for single-colon pseudoelements

Not that anybody should ever want to do this

* Avoid an allocation
2020-08-28 08:37:37 -07:00
Steve Sanderson ebaaa0f01d
Fix minimized attributes when using 5.0 SDK with 3.x target (#25307)
* Write minimized attribute values explicitly for older language version

* Add tests

* Add baselines for new tests
2020-08-28 08:37:30 -07:00
Safia Abdalla 6f780bb9ea Throw exception if DebugProxy received no output 2020-08-28 08:25:49 -07:00
Safia Abdalla a3ed9add5d Update package version and polish up dbging issues 2020-08-28 08:25:49 -07:00
Safia Abdalla 302d79a347 Initial working end-to-end 2020-08-28 08:25:18 -07:00
Safia Abdalla 691910c67d Use MonoProxy package for debugging 2020-08-28 08:23:30 -07:00
Javier Calvarro Nelson cfdab3d095 Update solution file 2020-08-28 07:43:57 -07:00
dotnet-maestro[bot] 432f9b8a91
Update dependencies from https://github.com/dotnet/runtime build 20200828.3 (#25347)
[release/5.0] Update dependencies from dotnet/runtime
- Updates:
  - System.Drawing.Common: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.ComponentModel.Annotations: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Diagnostics.DiagnosticSource: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Diagnostics.EventLog: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.DirectoryServices.Protocols: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.Console: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Options: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Primitives: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Logging: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.DependencyModel: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Hosting: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Http: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Win32.Registry: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.Win32.SystemEvents: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Threading.Channels: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Windows.Extensions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Text.Json: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Text.Encodings.Web: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.ServiceProcess.ServiceController: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.IO.Pipelines: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Net.Http.Json: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Net.Http.WinHttpHandler: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Reflection.Metadata: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.AccessControl: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.Cryptography.Cng: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.Cryptography.Pkcs: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.Cryptography.Xml: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.Permissions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Security.Principal.Windows: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
  - System.Resources.Extensions: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.3
2020-08-28 14:41:24 +00:00
dotnet-maestro[bot] 94b3e7effd
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore (#25341)
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
  - Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - dotnet-ef: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1
  - Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20427.11 to 5.0.0-rc.1.20428.1

- Updates:
  - System.Drawing.Common: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.ComponentModel.Annotations: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Diagnostics.DiagnosticSource: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Diagnostics.EventLog: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.DirectoryServices.Protocols: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.Console: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Options: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Primitives: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Logging: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.DependencyModel: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Hosting: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Http: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Win32.Registry: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.Win32.SystemEvents: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Threading.Channels: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Windows.Extensions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Text.Json: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Text.Encodings.Web: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.ServiceProcess.ServiceController: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.IO.Pipelines: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Net.Http.Json: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Net.Http.WinHttpHandler: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Reflection.Metadata: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.AccessControl: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.Cryptography.Cng: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.Cryptography.Pkcs: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.Cryptography.Xml: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.Permissions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Security.Principal.Windows: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
  - System.Resources.Extensions: from 5.0.0-rc.1.20427.12 to 5.0.0-rc.1.20427.16
2020-08-28 11:04:56 +00:00
dotnet-maestro[bot] d85ac16498
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore (#25338)
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
  - System.Drawing.Common: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.ComponentModel.Annotations: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Diagnostics.DiagnosticSource: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Diagnostics.EventLog: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.DirectoryServices.Protocols: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.Console: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Options: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Primitives: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Logging: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.DependencyModel: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Hosting: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Http: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Win32.Registry: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.Win32.SystemEvents: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Threading.Channels: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Windows.Extensions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Text.Json: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Text.Encodings.Web: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.ServiceProcess.ServiceController: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.IO.Pipelines: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Net.Http.Json: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Net.Http.WinHttpHandler: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Reflection.Metadata: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.AccessControl: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.Cryptography.Cng: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.Cryptography.Pkcs: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.Cryptography.Xml: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.Permissions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Security.Principal.Windows: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12
  - System.Resources.Extensions: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.12

- Updates:
  - Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - dotnet-ef: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
  - Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20427.11
2020-08-28 05:20:38 +00:00
dotnet-maestro[bot] 966aa02ccd
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore (#25247)
[release/5.0] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
  - Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - dotnet-ef: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
  - Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20425.4 to 5.0.0-rc.1.20427.10
2020-08-28 03:41:54 +00:00
William Godbe ce058f639c
Add net461 TFM to netstandard2.0 projects (#25094)
* Add net461 TFM to netstandard2.0 projects

* Fix a couple of errors

* Fix some errors

* Get rid of Sockets reference

* Respond to feedback

* net461 -> property

* Fixup clientSample

* Remove net461 from analyzers/razor

* Remove net461 from test projects

* Feedback

* Add net461 test configs

* Remove some incompatible test configs

* Fix test
2020-08-27 16:05:40 -07:00
Chris Sienkiewicz aa51b8c1d1 Remove unsupported SkipAnalyzers param 2020-08-27 15:57:56 -07:00
Chris Sienkiewicz 866df807a8 Disable compiler warnings during component discovery phase 2020-08-27 15:57:33 -07:00
William Godbe a54c5baf7a
Add TypeReference class to signalr java client (#25286)
* Add TypeReference class to signalr java client

* Fix syntax

* Add comments

* Update src/SignalR/clients/java/signalr/src/main/java/com/microsoft/signalr/TypeReference.java

Co-authored-by: Brennan <brecon@microsoft.com>

* Feedback

Co-authored-by: Brennan <brecon@microsoft.com>
2020-08-27 15:56:51 -07:00
John Luo 7b8fe53234
Disable failing/hanging tests due to Chrome/Selenium issue (#25323) 2020-08-27 13:16:01 -07:00
William Godbe f883065f3e
Update InteropTests.csproj 2020-08-27 09:06:20 -07:00
Doug Bunting bb769fe266
[release/5.0] Reduce job timeouts in aspnetcore-quarantined-pr pipeline (#25300) 2020-08-26 23:12:48 -07:00
Chris Sienkiewicz d9590840d9 Pass generators to CSC during component discovery 2020-08-26 18:08:24 -07:00
Pranav K 87a51a358a
Merge branch 'release/5.0' into prkrishn/nullability-feedback 2020-08-26 16:38:48 -07:00
Brennan f2b72b0511
Fix SignalR typescript tests with Chrome SameSite reaction (#25283)
* Fix Typescript tests
* fixup
2020-08-26 14:23:01 -07:00
Pranav K 5ed38b7eeb
Remove NodeServices + SpaServices
Follow up to https://github.com/dotnet/aspnetcore/pull/24912.
Not shipping NodeServices isn't enough since it's referenced by SpaServices. This PR removes the two packages
that were announced to be removed in 5.0
2020-08-26 14:19:07 -07:00
Pranav K c4dde35e37
Remove test 2020-08-26 13:48:19 -07:00
Mackinnon Buck 2916f4b09b
Fixed server interop reliability tests (#25244) 2020-08-26 12:56:56 -07:00
Safia Abdalla e2dd2969b5
Set SameSiteMode for cookies in authentication tests (#25281) 2020-08-26 12:22:34 -07:00
Pranav K b32dfa8c50
Update MonoPlatform.ts 2020-08-26 12:15:12 -07:00
Will Godbe 663915b742 Resolve last conflict 2020-08-26 12:09:32 -07:00
Will Godbe 6205d66a0e Resolve merge conflicts 2020-08-26 12:07:14 -07:00
Chris R f33937f04d With unicode 2020-08-26 12:04:14 -07:00
Chris R 4636950bfa Handle auth schemes in cookie names #25266 2020-08-26 11:32:05 -07:00
Pranav K 00bbb78d3c
Address nullability feedback
Fixes https://github.com/dotnet/aspnetcore/issues/25275
2020-08-26 09:55:27 -07:00
Pranav K 28e18c3058
Allow dotnet watch to refresh on changes to .razor files in referenced projects
dotnet-watch expects full paths to files to watch in all added items. For files in the current project, this
happens to work. However this does not work very well for files in referenced projects. Using the FullPath metadata
does not work during global evaluation, but we're able to do this in a target.

This change adds extensibility to the dotnet-watch tool that allows calling a target as part of "watch" evaluation.

Fixes https://github.com/dotnet/aspnetcore/issues/22219
2020-08-25 16:03:32 -07:00
John Luo 098be5f5ee
Use LDAP support from DirectoryServices.Protocols for RBAC claim resolution on Linux for Negotiate (#25075) 2020-08-25 13:21:46 -07:00
Doug Bunting c2f0331805
Include project file in F# Worker Service template (#25180)
- add test of this project template
2020-08-25 10:47:37 -07:00
Pranav K b0530a68c0
Do not include the shared framework in the packages (#24816)
* Do not include the shared framework in the packages

DevServer and dotnet-watch include binaries from the ASP.NET Core shared framework
as part of the package. This change compiles these projects against the most recently built
version of the shared framework which ensures build and publish work as normals. Individual
projects from the runtime can be referenced to pick up new runtime features when necessary

* More hacks!

* Ensure shared runtime is built before running tests

* Delete dotnet-watch.nuspec
2020-08-25 10:03:58 -07:00
dotnet-maestro[bot] 70ea49fd8a
Update dependencies from https://github.com/dotnet/efcore build 20200825.4 (#25243)
[release/5.0] Update dependencies from dotnet/efcore
- Updates:
  - Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - dotnet-ef: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
  - Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.4
2020-08-25 17:00:07 +00:00