Fixes#26301
As part of 5.0-preview8, we added Swashbuckle to ASP.NET Core's API project templates. Swashbuckle's developer
team has been active of late and has issued a new minor version that has enhancements and bug fixes. We'd like
to pick this up.
Users currently see a package update prompt on a brand new template. Missing useful bug fixes with the current version.
No
Low. This a minor version update that is recommended by Swashbuckle. I verified the update locally, our tests verify that the template builds and is usable with this change.
We have CTI coverage for end-to-end scenarios with Swashbuckle.
The package was marked as non-shipping but we continued to build and test it. This change
removes it. A copy of this code exists in asplabs so all is not lost.
- see dotnet/arcade#5866 discussion
- leaving redundant `[AssemblyMetadata("CommitHash", ...)]` because it's used in this repo
- e.g. src\Components\benchmarkapps\Wasm.Performance\Driver\Program.cs
- also consistent with native images
This change is prep for post build signing. When PostBuildSign=true, signing is not performed during the build. Instead, pass the top-level artifacts that are signable to PushToAzureDevOpsArtifacts (via Publish.proj).
Also fix up ArtifactsDir. As far as I can tell, it's been fixed up in Arcade to always include the trailing \, and Publish.proj should no longer be messed up.
- otherwise need to released previous packages; that's slower and less reliable
- left escape hatches but they're not currently used
- broke in servicing exercise because repo doesn't use its own isolated feeds
- also use latest package references for non-packable implementation projects
nits:
- copy some comment and spacing improvements from release/3.1
- correct Helix test failures with stable versions, where SDK's packs aren't enough
E.g. from https://dev.azure.com/dnceng/internal/_build/results?buildId=813814
``` text
...\.dotnet\sdk\5.0.100-rc.1.20379.10\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(318,5): error MSB4018: The "ResolveTargetingPackAssets" task failed unexpectedly. [...\src\ProjectTemplates\test\bin\Release\net5.0\TestTemplates\AspNet.m0yq3xrporu\AspNet.m0yq3xrporu.csproj]
...\.dotnet\sdk\5.0.100-rc.1.20379.10\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(318,5): error MSB4018: System.IO.DirectoryNotFoundException: Could not find a part of the path '...\.dotnet\packs\Microsoft.AspNetCore.App.Ref\5.0.0\data\FrameworkList.xml'. [...\src\ProjectTemplates\test\bin\Release\net5.0\TestTemplates\AspNet.m0yq3xrporu\AspNet.m0yq3xrporu.csproj]
```
- set the package version of Extensions assemblies using NETCore.App version
- ignore Microsoft.Extensions.Internal.Transport package version
- transport package has a non-stable version and isn't shipped
- just got lucky this worked before versions stabilize
- update test expectations when checking PackageOverrides.txt
- use NuGet.Versioning to make this easier
* Fix chrome/selenium tests (#25330)
* Revert "Disable failing/hanging tests due to Chrome/Selenium issue (#25323)"
This reverts commit 332f1504128a63431cb67830703922cdeefee525.
* Update Selenium to latest
* Update API
* Try specifying a version
* Update Selenium to 4.0.0-beta5
* Disable browser log tests
* Fix components e2e tests and disable blazor standalone template test
* Disable tests using browser log
* Disable template test
* Avoid using .NET formatted strings in tests
* Annotate BasicTestApp suggesting that it needs the all globalization data
* Culture specific formatting relies on the ICU data carried by the OS. This
causes issues in our tests if WebAssembly carries a different set than the OS. Instead
updating these tests to use hardcoded strings.
* Additionally fixing an issue where some projects in the solution were using tasks from
the .dotnet SDK rather than the local copy of the SDK. This was causing issues building locally.
Co-authored-by: Pranav K <prkrishn@hotmail.com>
- include all shipping packages in Helix payloads that need runtime
- remove hard-coded `-ci` that broke Helix tests with stable versions or local builds
- for local builds, do not assume `$(Configuration)` is Release
- support `$(HelixTargetQueues)` property used in RunHelix.ps1
- lost somewhere along the lines; script ran full matrix
nits:
- clean up redundant addition of runtime and ref/ packages
- `@(HelixContent)` additions in `_CreateHelixWorkItem` target are ignored
- mention '+' separation of `-HelixQueues` argument to RunHelix.ps1
- allow `$(IsUnitTestProject)` override in case we need it in the future
- required for servicing, where e.g. `5.0.0` may be ambiguous
- also move `%DOTNET_HOME%` into the working directory
- reduces build-up in `%HELIX_CORRELATION_PAYLOAD%` and aligns w/ build.sh
nit: add more debug output to `runtests.*`
* Update gRPC version in template to 2.32.0-pre1
* Log server timeout detail
* Only run interop tests on windows queues
Co-authored-by: John Luo <johluo@microsoft.com>
* Correct `$(SharedFxVersion)` and `$(TargetingPackVersion)` values
- Ensure `$(SharedFxVersion)` doesn't change in `$(NoSemVer20)` projects
- Ignore current project's `$(VersionSuffix)` in `$(TargetingPackVersion)`
- Never assume `$(AspNetCoreBaselineVersion)` matches released targeting pack
- Stabilize both versions correctly
- Use these properties more widely
- Remove other mechanisms to get the same values
- Reduce use of the `_GetPackageVersionInfo` target
- Reduce use of `$(SharedFxVersion)` for the targeting pack
nits:
- Correct comments about old RTMVersions.csproj project
- Fix or remove a few other comments
* Do not pass package filenames on Helix command Lines
- remove parsing of these command-line arguments from `RuntestOptions`
- instead craft the names using passed `$(SharedFxVersion)`
- restore `$(DotNetRuntimeSourceFeedKey)` on Helix command line
- lost somewhere along the line
- correct argument count in runtests.sh
- treated 11th argument as both Helix timeout and feed credential
- count was messed up somewhere alone the line
nits:
- update C# syntax in `RuntestOptions` e.g. remove unused `public` setters
- sort and group properties and their assignments
Changes WiX toolset used to 3.14 to support ARM64
Generates targeting pack from the x86/x64 leg, as it gets produced using a zip that gets generated there.
The ARM64 leg now produces all the necessary msi's, exe, and wixlib needed for the installer to generate a bundle.
* Eliminate duplicates in Helix `TestRunner`
- do not add source that's already in NuGet.config
- configuration file now part of Helix content
- do not re-set an env variable that's set in `runtests.*`
nit: simplify `%Path% setting in runtests.cmd
- always quote the value
- but, keep the `SETLOCAL` command
- don't pollute environment on Helix agents
* Remove `--source` options we don't need anymore from `runtests.*`
- nit: add `--no-restore` to `dotnet run` command after `dotnet restore`
* Add `--arch arm64` to ARM64 `restore` build steps
- #25397
- was restoring for the wrong architecture
nit: add `--no-restore` to Helix project build steps
- already restored
[release/5.0-rc2] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- dotnet-ef: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.10
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Diagnostics.EventLog: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.DirectoryServices.Protocols: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Options: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Primitives: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Logging: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Http: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Hosting: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.NETCore.Platforms: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Win32.Registry: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Drawing.Common: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Threading.Channels: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Windows.Extensions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Text.Json: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Text.Encodings.Web: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.ServiceProcess.ServiceController: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.IO.Pipelines: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Net.Http.Json: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Reflection.Metadata: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.AccessControl: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.Cryptography.Cng: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.Cryptography.Xml: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.Permissions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Security.Principal.Windows: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
- System.Resources.Extensions: from 5.0.0-rc.2.20458.8 to 5.0.0-rc.2.20458.14
[release/5.0-rc2] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Diagnostics.EventLog: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.DirectoryServices.Protocols: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Options: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Primitives: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Logging: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Http: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Hosting: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.NETCore.Platforms: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Win32.Registry: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Drawing.Common: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Threading.Channels: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Windows.Extensions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Text.Json: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Text.Encodings.Web: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.ServiceProcess.ServiceController: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.IO.Pipelines: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Net.Http.Json: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Reflection.Metadata: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.AccessControl: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.Cryptography.Cng: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.Cryptography.Xml: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.Permissions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Security.Principal.Windows: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- System.Resources.Extensions: from 5.0.0-rc.2.20454.25 to 5.0.0-rc.2.20458.8
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- dotnet-ef: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20458.4 to 5.0.0-rc.2.20458.8
[release/5.0-rc2] Update dependencies from dotnet/arcade dotnet/runtime dotnet/efcore
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Diagnostics.EventLog: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.DirectoryServices.Protocols: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Options: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Primitives: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Logging: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Http: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Hosting: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.NETCore.Platforms: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Win32.Registry: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Drawing.Common: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Threading.Channels: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Windows.Extensions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Text.Json: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Text.Encodings.Web: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.ServiceProcess.ServiceController: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.IO.Pipelines: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Net.Http.Json: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Reflection.Metadata: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.AccessControl: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.Cryptography.Cng: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.Cryptography.Xml: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.Permissions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Security.Principal.Windows: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- System.Resources.Extensions: from 5.0.0-rc.2.20452.8 to 5.0.0-rc.2.20454.25
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- dotnet-ef: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20458.4
- Updates:
- Microsoft.DotNet.Build.Tasks.Installers: from 5.0.0-beta.20431.1 to 5.0.0-beta.20452.19
- Microsoft.DotNet.Helix.Sdk: from 5.0.0-beta.20431.1 to 5.0.0-beta.20452.19
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20431.1 to 5.0.0-beta.20452.19
- System.IO.Pipelines Fix
(cherry picked from commit 520b9e23f027d7cca49d33f1dc6b2a0e57c893b3)
- Skip reference check of System.IO.Pipelines ref/ assembly
- add Framework projects to solution
- add Framework.slnf and startvs.cmd in src/Framework
- Merge branch 'release/5.0-rc2' into darc-release/5.0-rc2-d6b9c1c0-be36-4d12-b860-e7e54a75cb6d
[release/5.0-rc2] Update dependencies from dotnet/efcore
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- dotnet-ef: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20452.3 to 5.0.0-rc.2.20452.4
- pin Microsoft.Net.Compilers.Toolset version to isolate us from Arcade
- the version now matches dotnet/runtime
- may move the pin to later version later in RC2 if needed
- double the macOS job max. length in our normal and quarantined PR runs
- have been seeing them timeout or come very close too often
[release/5.0-rc2] Update dependencies from dotnet/runtime
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Diagnostics.EventLog: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.DirectoryServices.Protocols: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Options: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Primitives: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Logging: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Http: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Hosting: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.NETCore.Platforms: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Win32.Registry: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Drawing.Common: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Threading.Channels: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Windows.Extensions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Text.Json: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Text.Encodings.Web: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.ServiceProcess.ServiceController: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.IO.Pipelines: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Net.Http.Json: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Reflection.Metadata: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.AccessControl: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.Cryptography.Cng: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.Cryptography.Xml: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.Permissions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Security.Principal.Windows: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
- System.Resources.Extensions: from 5.0.0-rc.2.20452.4 to 5.0.0-rc.2.20452.8
[release/5.0-rc2] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Diagnostics.EventLog: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.DirectoryServices.Protocols: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Options: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Primitives: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Logging: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Http: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Hosting: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.NETCore.Platforms: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Win32.Registry: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Drawing.Common: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Threading.Channels: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Windows.Extensions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Text.Json: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Text.Encodings.Web: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.ServiceProcess.ServiceController: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.IO.Pipelines: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Net.Http.Json: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Reflection.Metadata: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.AccessControl: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.Cryptography.Cng: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.Cryptography.Xml: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.Permissions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Security.Principal.Windows: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- System.Resources.Extensions: from 5.0.0-rc.2.20451.27 to 5.0.0-rc.2.20452.4
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- dotnet-ef: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20452.1 to 5.0.0-rc.2.20452.2
[release/5.0-rc2] Update dependencies from dotnet/runtime dotnet/efcore
- Updates:
- System.ComponentModel.Annotations: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Diagnostics.DiagnosticSource: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Diagnostics.EventLog: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.DirectoryServices.Protocols: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.Configuration: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.Console: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.Debug: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.EventLog: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.EventSource: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging.TraceSource: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Options: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Options.ConfigurationExtensions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Options.DataAnnotations: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Primitives: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Logging: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Internal.Transport: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Http: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Hosting.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Caching.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Caching.Memory: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.Binder: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.CommandLine: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.EnvironmentVariables: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.FileExtensions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.Ini: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.UserSecrets: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.Xml: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.DependencyInjection: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.DependencyInjection.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.DependencyModel: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.FileProviders.Abstractions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.FileProviders.Composite: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.FileProviders.Physical: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.FileSystemGlobbing: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.HostFactoryResolver.Sources: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Hosting: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Extensions.Configuration.Json: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.NETCore.App.Runtime.win-x64: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.NETCore.BrowserDebugHost.Transport: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.NETCore.Platforms: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Win32.Registry: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.Win32.SystemEvents: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.NETCore.App.Internal: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Microsoft.NETCore.App.Ref: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Drawing.Common: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Text.Json: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Threading.Channels: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Windows.Extensions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Text.Encodings.Web: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.ServiceProcess.ServiceController: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.IO.Pipelines: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Net.Http.Json: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Net.Http.WinHttpHandler: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Net.WebSockets.WebSocketProtocol: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Reflection.Metadata: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Resources.Extensions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Runtime.CompilerServices.Unsafe: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.AccessControl: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.Cryptography.Cng: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.Cryptography.Pkcs: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.Cryptography.Xml: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.Permissions: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- System.Security.Principal.Windows: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.27
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- dotnet-ef: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.2.20451.12 to 5.0.0-rc.2.20452.1
[release/5.0-rc2] Update dependencies from dotnet/efcore
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- dotnet-ef: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20451.2 to 5.0.0-rc.2.20451.12
- Merge branch 'release/5.0-rc2' into darc-release/5.0-rc2-3ebdc2ef-d6ce-4e79-aa79-c89018409111
[release/5.0] Update dependencies from dotnet/efcore
- Updates:
- Microsoft.EntityFrameworkCore.Tools: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore.SqlServer: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- dotnet-ef: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore.Design: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore.Relational: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore.Sqlite: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2
- Microsoft.EntityFrameworkCore.InMemory: from 5.0.0-rc.1.20451.1 to 5.0.0-rc.1.20451.2