[release/5.0] Update dependencies from dotnet/efcore dotnet/runtime
- Merge branch 'release/5.0' into darc-release/5.0-d4478e43-6d04-47a1-8a7c-c6c2dcd90d64
- Tweak tests
- Remove Extensions.Internal.Transport from Runtime
- Microsoft.AspNetCore.App.Runtime project does not expect compilation-only references
- !fixup! Rearrange a `Condition`
- slight change to 49cc13cb5ac6 workaround
- Do not compile against assemblies with newer assembly versions
- avoid problems with e.g. System.Extensions.DependencyInjection in 5.0.1
- Revert "Remove package version pinning for ref/ assemblies in servicing (#25851)"
- dotnet/runtime assembly versions are unexpectedly changing in servicing
This reverts commit bfc1ec6792.
- Update `SharedFxTests` to handle dotnet/runtime version changes
- assemblies with non-0.0 versions end up in Microsoft.AspNetCore.App
- future-proofs these tests because more dotnet/runtime versions may change
- !fixup! Revert of bfc1ec6792 messed up `RepoTasks`
- need the RTM-versioned packages on all platforms
- we only target `net472` on Windows
Razor requires referencing two different versions of Roslyn
Razor compiler (rzc) that ships as part of the SDK. rzc ships copies of compiler binaries (Microsoft.CodeAnalysis.CSharp and Microsoft.CodeAnalysis.Common).
Razor runtime compilation is shipped as a NuGet package and needs to reference a version of Roslyn that ships as a NuGet package.
Roslyn doesn't follow the runtime ship schedule so to reliably the 2nd item, ASP.NET Core manually updates this package version. As part of 5.0.1, it was discovered that there's two different versions of these binaries in the SDK (a 3.8.0 version carried by the compiler and a 3.7.0 version carried by Razor). This is a bit vexxing, more so in source build which only builds the newer version.
Fixes#28096
Description
Update the Roslyn version referenced by Razor to 3.8.0
Customer impact
Razor compilation uses a newer version of the compiler consistent with the rest of the SDK.
Users updating to the 5.0.1 version of runtime compilation package will now use a newer version of the compiler. While it's slightly unusual to update a reference by a minor version as part of a patch release, we do not see users taking a hard dependency on the compiler version to be affected by this.
Regression
No
Risk
Low.
[release/5.0] Update dependencies from dotnet/efcore dotnet/runtime
- Return to RTM version of a package
- dotnet/runtime is not currently producing a useful Microsoft.Extensions.Internal.Transport
- quickest way to ignore the bad stuff is to pin the package here
- Update eng/Version.Details.xml
- Update eng/Version.Details.xml
- Update eng/Version.Details.xml
- Unpin Microsoft.Extensions.Internal.Transport
* Move all PublicAPI.Unshipped.txt files to PublicAPI.Shipped.txt
- we have now shipped this API surface
* Add eng/PublicAPI.empty.txt file
- make it easier to add new implementation projects
* Add missing public API baseline files
- #26784 part 1/2
- a few unexpected files turned up missing beyond the #26784 list…
* Reference Microsoft.CodeAnalysis.PublicApiAnalyzers more often
- #27484 part 2/2
- emit errors when API baseline files are missing
- update categorization of some projects
- specification tests are not implementation projects
- but _were_ project reference providers (keep that)
- correct `$(IsTestAssetProject)` setting for Razor shims et cetera
- correct `$(IsSampleProject)` setting for casing of some Sample directories
- Microsoft.AspNetCore.Analyzer.Testing should be treated as test asset
- add `$(AddPublicApiAnalyzers)` property to support overrides
- e.g. for `msbuild` task projects and tools
nit:
- remove useless `$(IsTestProject)` setting in a specification test project
- wrap some long `Condition`s
* Do not run public API analyzer in `RazorCoreCompile` target
* Remove old `$(EnableApiCheck)` settings
- property does nothing
- also remove a dangling ApiCheck comment
* Move to 5.0.1 versions
* Move to GA .NET SDK
- required for some tests to pass
* Remove feeds that won't be needed after 5.0.0 is GA
* Cherry-pick `$(CrossgenOutput)` and Directory.Build.*.in changes from master
- [master] Update dependencies from dotnet/runtime dotnet/efcore (#26788)
- 219ecd688012
- when project template tests run test assets, need latest shared Fx bits
- hit `BadImageFormatException`s otherwise
- test projects build against uploaded packages
- those packages reference the 5.0.1 shared framework
- the ASP.NET parts of the 5.0.1 shared Fx are `crossgen`ed to target Windows
- Use runtime and ref/ assemblies matching repo in Helix testing
- add Directory.Build.*.in files based on project template test infrastructure
- use files as import boundary where the project doesn't create its own Directory.Build.* files
- ensure `dotnet-watch` tests also use the latest runtime and ref/ assemblies
- Extend Helix Directory.Build.* workarounds
- generate Directory.Build.* files when restoring any projects
- include generated files in Helix runs needing the latest runtime
- copy generated files when testing `dotnet-watch` locally
- include generated content in Microsoft.NET.Sdk.BlazorWebAssembly.IntegrationTests test assets
- remove duplicate settings from existing Directory.Build.* files
- ensure shared framework and targeting packs are laid out under .dotnet/ before test assets restore
- Disable `crossgen` when building for Helix runs
- make `$(CrossgenOutput)` property override-able
- use override in CI jobs that submit to other platforms
- for now, leave the ARM64 Helix jobs alone (build on Ubuntu, run in Debian)
* Correct an `$(IsTestAssetProject)` setting
- affected projects are all test assets or provide test support
- without this, a number of the projects are incorrectly marked as shipping
* Baseline released 5.0.0 packages
- this is a complete rewrite of eng/Baseline.xml
- based on the 5.0.0 MergedManifest.xml file
* Add 5.0.0 PackageOverrides.txt and PlatformManifest.txt files
- need consistent versions when servicing targeting packs
Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
* Fix some post-build signing issues
This fixes some post-build signing issues that are present in the aspnetcore repo
1. Add the .msi extension to be signed by Microsoft400 - Msis must be signed. With in-build signing these get handled explicitly by the wixproj infrastructure. When we do post build signing, we must sign these files.
2. Remove the strong name exclusions. These exclusions are incorrect when applied in post-build and unnecessary for in-build signing. Most importantly, the aspnetcore PKT would not end up re-strong named (it doesn't need to be strong name signed by ESRP since it's strong named in-build) because the PKT doesn't match any of the StrongNameSignInfo specified in arcade. The rest of the entries seem to be mostly about optimization. I could not find any performance difference between these entries being present and not. I am not sure whether they actually even apply to any assets. Moreover, when doing post-build signing, they would conflict with the entries in runtime and other places.
Verification - I have a tool that I wrote which unpacks every file between two directories and compares the strong name, nuget, and authenticode certs between equivalent files. This is the same tool being used to verify post-build signing. This tool shows no difference in any aspnetcore produced asset.
Baseline: https://dev.azure.com/dnceng/internal/_build/results?buildId=836183&view=results
Diff: https://dev.azure.com/dnceng/internal/_build/results?buildId=837176&view=results
* Do not push VS packages for installers when PostBuildSign == true
* Output wix command packages to the installers output path
* Don't import microbuild signing targets from wix when PostBuildSign=true
* Tweaks:
- Don't sign wixpacks when not in post-build signing
- Generate a wixpack for both the original msi name (which the wixproj generates) AND the name we use in the final outputs. This is because while these files are the same, signing differentiates the certificate based on the file name, and wixpack lookup is also based on the file names. Aspnetcore and other repos have uses the final outputs (e.g. dotnet-aspnetcore-runtime-123.5..) as well as the internal names (e.g. AspNetCoreSharedFramework_x64.msi).
- Don't sign msi's when not post-build signing.
* Avoid generating sha512 files for wixpack zips
* Don't run xplat code sign jobs if PostBuildSign == true
* Change original target names
* Conditionalize codesign operations
* Add publishing flag for linux x64 and add deb sha512 generation
* Do not push the x64 linux runtime archive more than once
* !!! Correct condition controlling `public` API analysis !!!
- #26785 demonstrated analyzers were inoperable
* Remove unused `public` API files
* Update `public` API files
- three Components files were missing `#nullable enable`
- `nullable` annotations missing or out-of-date elsewhere
* Ignore `public` API files completely during source build
- do not warn about unused files
* Update more `public` API files
* Fix path data in FrameworkList.xml
* Move FrameworkList.xml to SharedFxRoot
* Fix targeting pack xml test
* Add test
* Add another test
* Extract .xml files to Helix as well
* Add another test
* Update TestRunner.cs
* Remove slash
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