Commit 107b371
Add missing assembly references after dependency update to 11.0.0-alpha (#64742)
* Fix post actions for Razor Class Library template
The Razor Class Library template has an option, `SupportsPagesAndViews`
that causes it to produce one of two sets of files. If true, then
`Areas/MyFeature/Pages/Page1.cshtml` is created. If false, then
`Component1.razor` is created.
The issue with the previous template is that the set of primary outputs
and the corresponding `openInEditor` post-actions were not taking this
option into account, and were always trying to open the `Page1.cshtml`
file, even if it didn't exist on disk.
This led to the bug described in microsoft/vscode-dotnettools#2489
C# Dev Kit has been patched to not show warnings when a template
specifies that non-existent files should be opened.
With the change here, users creating this template will now see the
correct file opened. This applies both to VS and CDK.
* Give each postAction a unique id
* [Blazor] Accept blazor.web.js startup options format in blazor.server.js and blazor.webassembly.js (#64629)
* Accept blazor.web.js startup options format in blazor.server.js and blazor.webassembly.js
* Update README.md (#59191)
* Update README.md
Fixing SDK link.
* Update README.md
* Update README.md
---------
Co-authored-by: William Godbe <wigodbe@microsoft.com>
* Fix circular reference resolution for schemas containing arrays (#64109)
* OpenAPI schemas: Add failing test for circular references with an array
* Fix array circular references.
The fix is done by registering components before going deep into the recursion tree (where the leaves would be registered first).
Fixing this revealed an issue for default values for "local" attributes. Local attributes/parameter info should not apply to componetized schemas.
* Fix build warnings
* Fix missing negation
* Cleanup some funky logic
* Fix cases where the schemas will not be componetized because the x-schema-id is null or empty
* Stop ResolveReferenceForSchema when the schema has already been resolved
* Remove unused method `CreateReference`
* Remove OpenApiSchemaKey as only the Type property was used
* Remove unnecessary using
* Fix punctuation in comment.
* Refactor null check in AddOpenApiSchemaByReference
* Fix schemaId to be null instead of string.Empty when a schema is not componetized
* Remove x-ref-id metadata as it isn't used anymore (and gave undesired results)
* fix handle leak (#59959)
* Set IExceptionHandlerFeature on DeveloperExceptionPageMiddleware (#52688)
* [Blazor] Remove obsolete APIs from Components (#62755)
* Remove [Obsolete] APIs from Components
* Fix sign-out validation logic to not fail when HistoryEntryState is null
Co-authored-by: javiercn <6995051+javiercn@users.noreply.github.com>
---------
Co-authored-by: Javier Calvarro Nelson <jacalvar@microsoft.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: javiercn <6995051+javiercn@users.noreply.github.com>
* Avoid running many Linux job variants on PR (#64717)
* Include a warning about host spoofing in xml (#63174)
* Resolve concurrency with test stub to resolve #49745. (#63299)
* Improve Blazor reconnection experience after the server is restarted (#64732)
* Improve Blazor reconnection experience after server restart
* Update CannotResumeAppWhenPersistedComponentStateIsNotAvailable to reflect change in ResumeCircuit
* Revert a minor UI change
* Add E2E tests to check reconnection behavior without server state
* Fix typos
* Add missing hiding of buttons in DefaultReconnectDisplay
* Initial plan
* Add missing Reference elements to csproj files
Added Microsoft.AspNetCore.Http.Abstractions, Microsoft.AspNetCore.Http.Features, Microsoft.Extensions.Features, and Microsoft.AspNetCore.Hosting.Server.Abstractions references to projects that need them after dependency updates.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add more missing Reference elements
Added references to Microsoft.AspNetCore.Authentication.csproj and Microsoft.AspNetCore.Server.IISIntegration.csproj
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add Microsoft.AspNetCore.Http.Abstractions to middleware and MVC projects
Added references to multiple middleware projects (CookiePolicy, RequestDecompression, HeaderPropagation, HttpsPolicy, WebSockets, ResponseCaching, ResponseCompression), MVC.Core, and SignalR Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add Http.Features and Routing.Abstractions references
Added Microsoft.AspNetCore.Http.Features to CORS and Http.Results, and Microsoft.AspNetCore.Routing.Abstractions to Http.Results to resolve LinkGenerator type issues.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to Rewrite, StaticFiles, HealthChecks, Authorization.Policy, ResponseCompression, and IISIntegration
Added Microsoft.AspNetCore.Http.Abstractions, Microsoft.AspNetCore.Http.Features, and Microsoft.AspNetCore.Authentication.Abstractions to projects that were missing them after dependency updates.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to ResponseCaching and SignalR.Core
Added Microsoft.AspNetCore.Http.Features to ResponseCaching and Microsoft.AspNetCore.Http.Abstractions to SignalR.Core.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Fix Authentication.Core self-reference
Changed Microsoft.AspNetCore.Authentication.Core to correctly reference Microsoft.AspNetCore.Authentication.Abstractions instead of itself.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to Kestrel.Core and Hosting
Added Microsoft.AspNetCore.Http.Abstractions to Kestrel.Core and Microsoft.AspNetCore.Http.Features to Hosting.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to CookiePolicy, HostFiltering, WebSockets, HttpsPolicy, and OutputCaching
Added Microsoft.AspNetCore.Http.Features to CookiePolicy, HostFiltering, WebSockets, and OutputCaching. Added Microsoft.AspNetCore.Hosting.Server.Abstractions to HttpsPolicy.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to Kestrel.Transport.Quic, Hosting, Authentication, and Http.Connections
Added Microsoft.AspNetCore.Http.Features to Kestrel.Transport.Quic, Microsoft.AspNetCore.Hosting.Server.Abstractions to Hosting, Microsoft.AspNetCore.Authentication.Core to Authentication, and Microsoft.AspNetCore.Authentication.Abstractions to Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Make StackTraceHelper tests runtime-agnostic (#64007)
* Add missing references to HttpSys and Kestrel
Added Microsoft.AspNetCore.Hosting.Server.Abstractions and Microsoft.AspNetCore.Http.Features to HttpSys. Added Microsoft.AspNetCore.Hosting.Abstractions to Kestrel.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to TestHost and HttpSys
Added Microsoft.AspNetCore.Hosting.Abstractions, Hosting.Server.Abstractions, Http.Abstractions, and Http.Features to TestHost. Added Authentication.Abstractions, Hosting.Abstractions, Http.Abstractions, and WebUtilities to HttpSys.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to IIS
Added Microsoft.AspNetCore.Authentication.Abstractions, Hosting.Server.Abstractions, and Http.Abstractions to IIS.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to StaticAssets, Kestrel, and Mvc.Abstractions
Added Http.Abstractions, Http.Features, Routing.Abstractions, and Net.Http.Headers to StaticAssets. Added Hosting.Server.Abstractions to Kestrel. Added Http.Features to Mvc.Abstractions.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing reference to IIS
Added Microsoft.AspNetCore.Http to IIS for IHttpActivityFeature.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to Mvc.Core and DefaultBuilder
Added Http.Features and Authentication.Abstractions to Mvc.Core. Added Hosting.Abstractions, Http.Abstractions, and Routing.Abstractions to DefaultBuilder (Microsoft.AspNetCore).
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing reference to Mvc.DataAnnotations
Added Microsoft.AspNetCore.Mvc.Abstractions to Mvc.DataAnnotations for validation types.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to TestHost and Http.Connections
Added Microsoft.AspNetCore.Http to TestHost. Added Microsoft.AspNetCore.Http.Features to Http.Connections.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing reference to HttpLogging
Added Microsoft.AspNetCore.Http.Features to HttpLogging for IHeaderDictionary, IHttpResponseBodyFeature, and IHttpUpgradeFeature.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to RequestDecompression and Owin
Added Microsoft.AspNetCore.Http.Features to RequestDecompression and Owin.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing reference to MiddlewareAnalysis
Added Microsoft.AspNetCore.Http.Abstractions to MiddlewareAnalysis for IApplicationBuilder, RequestDelegate, and HttpContext.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to AzureAppServicesIntegration and WindowsServices
Added Microsoft.AspNetCore.Hosting.Abstractions to both projects for IWebHostBuilder and IWebHost.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to Mvc.ApiExplorer, Authentication projects, and Mvc.Formatters.Xml
Added references to fix build errors:
- Mvc.ApiExplorer: Added Mvc.Abstractions
- Authentication.Cookies: Added Http.Abstractions, Net.Http.Headers
- Authentication.BearerToken: Added Http.Abstractions, Net.Http.Headers
- Authentication.OAuth: Added Http.Abstractions, WebUtilities, Authentication.Abstractions
- Mvc.Formatters.Xml: Added Mvc.Abstractions, WebUtilities
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to 8 projects for additional build error fixes
Added Microsoft.AspNetCore.Http references and other missing dependencies:
- StaticAssets: Added Http
- DefaultBuilder: Added Http
- Mvc.Cors: Added Mvc.Abstractions
- Mvc.Formatters.Xml: Added Http
- Mvc.ApiExplorer: Added Http
- Mvc.DataAnnotations: Added Http.Abstractions
- Authentication.OAuth: Added Http
- Authentication.BearerToken: Added Http
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Updates from a local agent.
* Remove retrials of fixed tests (#64740)
Updated according to https://github.com/dotnet/aspnetcore-internal/issues/4769#issuecomment-3642606696.
For these 2 removals we know what fixed it.
`CertificateChangedOnDisk` might be lucky to not pass for the last 90 days. Leaving on the list.
`CheckInvalidHostingModelParameter` - due to its dependence on deployment, HTTP, event logging I am not 100% sure if we should remove it. It's up to discussion or can be done later when another 90 days of all-green period will be confirmed.
* More missing refs.
* More.
* Adress errors from windows server log.
* Fix inux failures caused by `--no-dependencies`
* Fix source build issues.
* [main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml (#64748)
Bumps [dotnet/arcade/.github/workflows/backport-base.yml](https://github.com/dotnet/arcade) from 1c09acb26525da819530dd2678a0b7f62c35cbfd to dd6311861abf91f883a5f6aa3b13ff095ed44179.
- [Commits](dotnet/arcade@1c09acb...dd63118)
---
updated-dependencies:
- dependency-name: dotnet/arcade/.github/workflows/backport-base.yml
dependency-version: dd6311861abf91f883a5f6aa3b13ff095ed44179
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* [main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml (#64747)
Bumps [dotnet/arcade/.github/workflows/inter-branch-merge-base.yml](https://github.com/dotnet/arcade) from 1c09acb26525da819530dd2678a0b7f62c35cbfd to dd6311861abf91f883a5f6aa3b13ff095ed44179.
- [Commits](dotnet/arcade@1c09acb...dd63118)
---
updated-dependencies:
- dependency-name: dotnet/arcade/.github/workflows/inter-branch-merge-base.yml
dependency-version: dd6311861abf91f883a5f6aa3b13ff095ed44179
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* More.
* [main] (deps): Bump src/submodules/googletest (#64746)
Bumps [src/submodules/googletest](https://github.com/google/googletest) from `1b96fa1` to `065127f`.
- [Release notes](https://github.com/google/googletest/releases)
- [Commits](google/googletest@1b96fa1...065127f)
---
updated-dependencies:
- dependency-name: src/submodules/googletest
dependency-version: 065127f1e4b46c5f14fc73cf8d323c221f9dc68e
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* More.
* Fix CS0012/CS0246 compilation errors.
* Fix CS compilation errors partially.
* Fix reference name
* Fixup
* Add missing references to Identity, Mvc.ViewFeatures, and Components.Server
Added missing references to fix build errors:
- Identity: Added Routing.Abstractions for endpoint routing types
- Mvc.ViewFeatures: Added WebUtilities for URL encoding/decoding
- Components.Server: Added Http for IHttpActivityFeature and other Http types
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing references to 6 projects for additional build errors
Added missing references to fix build errors:
- Components.WebAssembly.Server: Added Http for IHttpActivityFeature
- OpenApi: Added Http for IHttpActivityFeature
- GetDocument.Insider: Added Http for IHttpActivityFeature
- Identity: Added Extensions.Features for IFeatureCollection
- Mvc.ViewFeatures: Added Net.Http.Headers for header types
- Components.Server: Added Routing.Abstractions for endpoint routing
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add additional missing references to 4 projects
Added missing references to fix remaining build errors:
- Components.WebAssembly.Server: Added Http.Features
- OpenApi: Added Routing.Abstractions
- Components.Server: Added Extensions.Features
- Identity: Added Hosting.Abstractions
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Fixup
* Fixup
* Remove taghelpers
* Razor
* More
* A few more
* Fixup
* Last one?
* Nope
* Two more
* Fixup
* 3 more
* Three more
* Another three
* Dos mas
* Continue
* Mvc
* RuntimeCompilation
* Add missing references to Identity.UI
Added Microsoft.AspNetCore.Http.Abstractions and Microsoft.AspNetCore.Mvc.Abstractions to Identity.UI for Razor Pages types and HTTP context.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing Http references to Mvc projects
Added Microsoft.AspNetCore.Http to Mvc.NewtonsoftJson, Mvc, and Mvc.Localization for IHttpActivityFeature and other Http infrastructure types.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing Http references to test projects, samples, and runtime compilation
Added Microsoft.AspNetCore.Http and other missing references to Mvc.Razor.RuntimeCompilation and prepared to add references to test projects and samples that need them for IHttpActivityFeature and other types relocated in 11.0.0-alpha.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Fix tests, samples
* A few more
* Add missing Http references to Components test server projects
Added Microsoft.AspNetCore.Http to Components.TestServer, ThreadingApp.Server, and HostedInAspNet.Server test projects to fix build errors with IHttpActivityFeature and other Http types relocated in 11.0.0-alpha.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add submodule checkout to copilot-setup-steps.yml (#64761)
* Identity.UI
* Final status update - 85+ projects fixed with assembly references
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Revert "Final status update - 85+ projects fixed with assembly references"
This reverts commit 6bdc4c3.
* Fix a few
* Fixup
* Hosting
* Fixup
* Http
* More fixes
* A few more
* Mvc.Core
* Abstractions
* Fixup
* Fixup 2
* Routing
* No netfx
* Samples routing
* A few more
* mvc.testing
* Fixorp
* Few fixers
* Abstractions
* Razor
* Whoops
* Syntax
* Auth
* Cleanup
* One more
* Sample fixes
* Mvc samples
* ViewFeatures
* Fixup
* ChatGPT
* Again
* Samples, testassets
* Fixup
* Another set
* Add missing assembly references to 10 projects for build error fixes
Added missing Http, Hosting, Routing, and Features references to fix CS1061, CS0012, CS0234 and CS0246 errors:
- MinimalFormSample: Added Hosting.Abstractions, Http.Features
- AzureAppServicesHostingStartupSample: Added Http.Features
- Components.Tests: Added Http.Abstractions
- BlazorServerApp: Added Hosting.Abstractions, Http, Http.Abstractions
- BlazorUnitedApp: Added Hosting.Abstractions, Http, Http.Abstractions
- Components.Server.Tests: Added Http.Abstractions, Http.Features
- HostedBlazorWebassemblyApp.Server: Added Hosting.Abstractions, Http, Http.Abstractions
- Wasm.Performance.Driver: Added Hosting.Abstractions, Http
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing assembly references to 20 projects for build error fixes
Added missing Http, Hosting, Routing references to fix CS1061, CS0012, CS0234 and CS0246 errors:
- DefaultBuilder.SampleApp: Added Hosting.Abstractions
- Microsoft.AspNetCore.Tests: Already had comprehensive references
- CreateDefaultBuilderApp, CreateDefaultBuilderOfTApp: Already had necessary references
- DependencyInjectionApp, StartRequestDelegateUrlApp, StartWithIApplicationBuilderUrlApp: Added Hosting.Abstractions
- StartRouteBuilderUrlApp: Already had comprehensive references
- AspNetCoreAnalyzers.Test: Added Http.Abstractions
- Http.Abstractions.Tests, Http.Extensions.Tests, Http.Microbenchmarks: Already had comprehensive references
- Routing.FunctionalTests: Added Hosting.Abstractions, Http, Http.Abstractions
- Routing.Tests: Already had comprehensive references
- RoutingSandbox, MinimalSample: Already had comprehensive references
- Identity.Specification.Tests: Added Http
- IdentitySample.ApiEndpoints: Added Hosting.Abstractions, Http, Http.Abstractions
- IdentitySample.DefaultUI, IdentitySample.Mvc: Added Hosting.Abstractions, Http, Http.Abstractions
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing assembly references to 11 projects for build error fixes
Added missing Http, Hosting.Abstractions references to fix CS1061, CS0012, CS0234 and CS0246 errors:
- IdentitySample.PasskeyConformance: Added Hosting.Abstractions, Http, Http.Abstractions
- IdentitySample.PasskeyUI: Added Hosting.Abstractions, Http, Http.Abstractions
- CorsMiddlewareWebSite: Added Http, Http.Abstractions
- Microsoft.AspNetCore.Diagnostics.Tests: Added Hosting.Abstractions, Http, Http.Abstractions
- AutobahnTestApp: Added Http, Http.Abstractions
- Microsoft.AspNetCore.Mvc.Test: Added Hosting.Abstractions, Http, Http.Abstractions
- MvcFormSample: Added Hosting.Abstractions
- MvcSandbox: Added Hosting.Abstractions, Http, Http.Abstractions
- Mvc.Core.TestCommon: Added Http
- ApiExplorerWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- ApplicationModelWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
Note: Other projects in the list (Identity.DefaultUI.WebSite, various Diagnostics samples, OutputCachingSample, ResponseCachingSample, ResponseCompressionSample, RewriteSample, Rewrite.Tests, StaticFiles.FunctionalTests, ResponseCaching.Microbenchmarks, Mvc.Api.Analyzers.Test) already had comprehensive references and did not require additional changes.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing assembly references to 14 MVC test websites and Security samples
Added missing Http, Hosting.Abstractions references to fix CS1061, CS0012, CS0234 and CS0246 errors:
- HtmlGenerationWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- SimpleWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- RazorBuildWebSite.Views, RazorPagesClassLibrary: Added Http
- RazorWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- Mvc.RoutingWebSite: Added Hosting.Abstractions
- SecurityWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- SimpleWebSiteWithWebApplicationBuilder: Added Hosting.Abstractions, Http, Http.Abstractions
- VersioningWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- XmlFormattersWebSite: Added Hosting.Abstractions, Http, Http.Abstractions
- OpenApi.SourceGenerators.Tests: Added Http, Http.Abstractions
- Negotiate.Client: Added Hosting.Abstractions, Http, Http.Abstractions
- Negotiate.Server: Added Hosting.Abstractions, Http, Http.Abstractions
Note: Other projects in the list (Certificate samples, CookieSample, JwtBearerSample, NegotiateAuthSample, MinimalOpenIdConnectSample, Negotiate.FunctionalTest, Negotiate.Test) already had comprehensive references and did not require additional changes.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Add missing assembly references to 20 Security and Server projects
Added missing Http, Hosting.Abstractions references to fix CS1061, CS0012, CS0234 and CS0246 errors:
- Security samples: ClaimsTransformation, Cookies, CustomAuthorizationFailureResponse, CustomPolicyProvider, DynamicSchemes, Identity.ExternalClaims, PathSchemeSelection, StaticFilesAuth (added Hosting.Abstractions, Http, Http.Abstractions)
- Kestrel samples: Http3SampleApp, LargeResponseApp, PlaintextApp, WebTransportInteractiveSampleApp, WebTransportSampleApp, http2cat (added Http)
- IIS tests: IIS.FunctionalTests, IIS.LongTests, IIS.NewHandler.FunctionalTests, IISExpress.FunctionalTests (added Hosting.Abstractions, Http, Http.Abstractions)
Note: HttpSys.NonHelixTests, IISSample, NativeIISSample, ServerComparison.TestSites, Kestrel.Microbenchmarks, and SignalR.Client.FunctionalTestApp already had comprehensive references and did not require additional changes.
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
* Another set
* Several more
* Whoopsy
* Razor.hosting
* More CS
* More
* Auth
* Several more
* next round
* Additional
* Oopsy
* Auth in samples
* bw
* Fix building Microsoft.AspNetCore.Components.E2ETests
* Add more references to samples and tests
* Add more references to fix tests
* Fix trimming tests
* Fix Microsoft.AspNetCore.Components.E2ETests
* Fix Microsoft.AspNetCore.Components.E2ETests
* Fix IStartupInjectionAssemblyName.csproj
* Fix Microsoft.AspNetCore.Hosting.TestSites.csproj
* Fix Microsoft.AspNetCore.Components.E2ETests
* 16337 failures
* A few more
* Bit more
* TestCommon
* More mvc
* Kestrel
* More Kestrel
* Fix more trimming tests
* TODO-INVESTIGATE: Suppress IL2026/IL3050 in Microsoft.AspNetCore.OpenApi.NativeAotTests
Could be a new warning/error with ILC in 11.0, need to compare with 10.0
* Fix Microbenchmarks
* Fix more tests
* Fix more tests
* Fix more tests
* NamedPipes
* More transports
* More transports again
* few more
* Http
* fixup
* Few more
* Typo
* fixup
* Signalr & MVC
* 3 more
* Continue
* Few more
* Fix more tests
* Fix generator tests
* Fix more tests
* Improve InteropTests to capture failure during process startup
Instead of essentially hanging the test when we e.g. don't have the correct shared framework.
* Fix compilation
* Fix more tests
* Update conditions for ProjectReference handling
* DataProtection
* Undo grpc, more for identity
* More
* Identity from local
* More to website from logs
* Fix Mvc test websites
* Fix Components test websites
* Add Microsoft.AspNetCore.Mvc.TagHelpers reference to Identity.UI
* Two more
* Fix IIS.Tests
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Drew Noakes <git@drewnoakes.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Joshua Cooper <Cooperjoshua@gmail.com>
Co-authored-by: William Godbe <wigodbe@microsoft.com>
Co-authored-by: Sjoerd van der Meer <sjoerd.vandermeer@xebia.com>
Co-authored-by: Anchels <42744001+Anchels@users.noreply.github.com>
Co-authored-by: Arvin Kahbazi <akahbazi@gmail.com>
Co-authored-by: Javier Calvarro Nelson <jacalvar@microsoft.com>
Co-authored-by: javiercn <6995051+javiercn@users.noreply.github.com>
Co-authored-by: Aditya Mandaleeka <adityamandaleeka@users.noreply.github.com>
Co-authored-by: Divyesh Bhandari <79130336+divyeshio@users.noreply.github.com>
Co-authored-by: Zsolt Fehér <feher.zsolt@gmail.com>
Co-authored-by: Ondřej Roztočil <roztocil@outlook.com>
Co-authored-by: wtgodbe <14283640+wtgodbe@users.noreply.github.com>
Co-authored-by: Medha Tiwari <75640645+medhatiwari@users.noreply.github.com>
Co-authored-by: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alexander Köplinger <alex.koeplinger@outlook.com>
Co-authored-by: Stephen Halter <halter73@gmail.com>1 parent c19811d commit 107b371
451 files changed
Lines changed: 5485 additions & 1166 deletions
File tree
- .azure/pipelines
- .github/workflows
- eng
- targets
- testing/linker
- SupportFiles
- src
- Analyzers/Analyzers/test
- Antiforgery
- samples/MinimalFormSample
- test
- Azure
- AzureAppServices.HostingStartup/src
- AzureAppServicesIntegration
- src
- test
- samples
- AzureAppServicesHostingStartupSample
- AzureAppServicesSample
- Components
- Authorization/test
- Components
- src
- Routing
- test
- Endpoints
- src
- test
- Forms
- src
- test
- QuickGrid/Microsoft.AspNetCore.Components.QuickGrid/test
- Samples
- BlazorServerApp
- BlazorUnitedApp
- Server
- src
- test
- Circuits
- Web.JS/src
- Platform/Circuits
- WebAssembly
- DevServer/src
- JSInterop/src
- Samples/HostedBlazorWebassemblyApp/Server
- Server
- src
- test
- WebAssembly.Authentication
- src
- Services
- test
- WebAssembly
- src
- Infrastructure
- test
- testassets
- HostedInAspNet.Server
- ThreadingApp.Server
- Wasm.Prerendered.Server
- Web
- src
- Forms/InputFile
- Web
- test
- benchmarkapps
- BlazingPizza.Server
- Wasm.Performance/Driver
- test
- E2ETest
- ServerExecutionTests
- Tests
- testassets
- BasicTestApp/wwwroot
- Components.TestServer
- Pages
- ComponentsApp.Server
- DataProtection
- DataProtection/test/Microsoft.AspNetCore.DataProtection.Tests
- samples
- CustomEncryptorSample
- EntityFrameworkCoreSample
- KeyManagementSample
- KeyManagementSimulator
- DefaultBuilder
- samples/SampleApp
- src
- testassets
- CreateDefaultBuilderApp
- CreateDefaultBuilderOfTApp
- DependencyInjectionApp
- StartRequestDelegateUrlApp
- StartRouteBuilderUrlApp
- StartWithIApplicationBuilderUrlApp
- test
- Microsoft.AspNetCore.FunctionalTests
- Microsoft.AspNetCore.Tests
- Features
- JsonPatch.SystemTextJson/test
- JsonPatch/test
- FileProviders/Manifest.MSBuildTask/test
- Framework/AspNetCoreAnalyzers
- samples/WebAppSample
- test
- Grpc/Interop/test/InteropTests/Helpers
- HealthChecks/HealthChecks/test
- Hosting
- Abstractions/src
- Hosting
- src
- test
- TestHost
- src
- test
- WindowsServices
- src
- test
- samples
- GenericWebHost
- SampleStartups
- test/testassets
- BasicLinkedApp
- IStartupInjectionAssemblyName
- Microsoft.AspNetCore.Hosting.TestSites
- TestStartupAssembly1
- Html.Abstractions/test
- Http
- Authentication.Core
- src
- test
- Headers/test
- Http.Abstractions
- perf/Microbenchmarks
- test
- Http.Extensions/test
- Http.Results
- src
- test
- Http
- perf/Microbenchmarks
- src
- test
- Owin
- benchmarks/Microsoft.AspNetCore.Owin.Microbenchmarks
- src
- test
- Routing.Abstractions/test
- Routing
- perf/Microbenchmarks
- src/Builder
- test
- FunctionalTests
- UnitTests
- testassets
- Benchmarks
- RoutingSandbox
- RoutingWebSite
- tools/Swaggatherer
- WebUtilities/test
- samples
- MinimalSampleFSharp
- MinimalSampleOwin
- MinimalSample
- MinimalValidationSample
- SampleApp
- Identity
- Core/src
- EntityFrameworkCore/test
- EF.InMemory.Test
- EF.Test
- Specification.Tests/src
- UI/src
- samples
- IdentitySample.ApiEndpoints
- IdentitySample.DefaultUI
- IdentitySample.Mvc
- IdentitySample.PasskeyConformance
- IdentitySample.PasskeyUI
- testassets/Identity.DefaultUI.WebSite
- test
- Identity.FunctionalTests
- Identity.Test
- InMemory.Test
- JSInterop/Microsoft.JSInterop/test
- Middleware
- CORS
- src
- test
- UnitTests
- testassets/CorsMiddlewareWebSite
- Diagnostics.EntityFrameworkCore
- src
- test
- FunctionalTests
- UnitTests
- Diagnostics
- src
- DeveloperExceptionPage
- test
- FunctionalTests
- UnitTests
- testassets
- DatabaseErrorPageSample
- DeveloperExceptionPageSample
- ExceptionHandlerSample
- StatusCodePagesSample
- WelcomePageSample
- HeaderPropagation
- samples/HeaderPropagationSample
- src
- test
- HealthChecks.EntityFrameworkCore/test
- HealthChecks
- src
- test
- UnitTests
- testassets/HealthChecksSample
- HostFiltering
- sample
- src
- test
- HttpLogging
- samples
- HttpLogging.Sample
- Logging.W3C.Sample
- src
- test
- HttpOverrides
- sample
- src
- test
- HttpsPolicy
- sample
- src
- test
- Localization.Routing
- src
- test
- Localization
- sample
- src
- testassets/LocalizationWebsite
- test
- FunctionalTests
- UnitTests
- Microsoft.AspNetCore.OutputCaching.StackExchangeRedis/test
- MiddlewareAnalysis
- samples/MiddlewareAnalysisSample
- src
- test
- OutputCaching
- perf/Microbenchmarks
- samples/OutputCachingSample
- src
- test
- RateLimiting
- samples/RateLimitingSample
- test
- RequestDecompression
- perf/Microbenchmarks
- sample
- src
- test
- ResponseCaching
- samples/ResponseCachingSample
- src
- test
- ResponseCompression
- perf/Microbenchmarks
- sample
- src
- test
- Rewrite
- sample
- src
- test
- Session
- samples
- test
- Spa
- SpaProxy/src
- SpaServices.Extensions
- src
- test
- StaticFiles
- samples/StaticFileSample
- src
- test
- FunctionalTests
- UnitTests
- WebSockets
- samples/EchoApp
- src
- test
- ConformanceTests/AutobahnTestApp
- UnitTests
- perf/ResponseCaching.Microbenchmarks
- Mvc
- Mvc.Abstractions/src
- Mvc.Analyzers/test
- Mvc.Api.Analyzers/test
- Mvc.ApiExplorer
- src
- test
- Mvc.Core
- src
- test
- Mvc.Cors
- src
- test
- Mvc.DataAnnotations/src
- Mvc.Formatters.Xml/src
- Mvc.Localization
- src
- test
- Mvc.NewtonsoftJson
- src
- test
- Mvc.Razor.RuntimeCompilation
- src
- test
- Mvc.RazorPages
- src
- test
- Mvc.Razor
- src
- test
- Mvc.TagHelpers
- src
- test
- Mvc.Testing/src
- Mvc.ViewFeatures
- src
- test
- Mvc
- src
- test
- perf
- Microbenchmarks
- Microsoft.AspNetCore.Mvc.Views
- Microsoft.AspNetCore.Mvc
- benchmarkapps
- BasicApi
- BasicViews
- RazorRendering
- samples
- MvcFormSample
- MvcSandbox
- test
- Mvc.FunctionalTests
- Mvc.IntegrationTests
- WebSites
- ApiExplorerWebSite
- ApplicationModelWebSite
- BasicWebSite
- ControllersFromServicesClassLibrary
- ControllersFromServicesWebSite
- CorsWebSite
- ErrorPageMiddlewareWebSite
- FilesWebSite
- FormatterWebSite
- GenericHostWebSite
- HtmlGenerationWebSite
- RazorBuildWebSite.PrecompiledViews
- RazorBuildWebSite.Views
- RazorBuildWebSite
- RazorPagesClassLibrary
- RazorPagesWebSite
- RazorWebSite
- RoutingWebSite
- SecurityWebSite
- SimpleWebSiteWithWebApplicationBuilderException
- Properties
- SimpleWebSiteWithWebApplicationBuilder
- Properties
- SimpleWebSite
- TagHelpersWebSite
- VersioningWebSite
- XmlFormattersWebSite
- OpenApi
- sample
- src
- Extensions
- Schemas
- Services
- Schemas
- test
- Microsoft.AspNetCore.OpenApi.NativeAotTests
- Microsoft.AspNetCore.OpenApi.SourceGenerators.Tests
- Microsoft.AspNetCore.OpenApi.Tests
- Services/OpenApiSchemaService
- Transformers/Implementations
- ProjectTemplates
- Web.ProjectTemplates/content
- BlazorWeb-CSharp/BlazorWebCSharp.1/Components/Layout
- RazorClassLibrary-CSharp/.template.config
- test
- Templates.Blazor.Tests
- Templates.Blazor.WebAssembly.Auth.Tests
- Templates.Blazor.WebAssembly.Tests
- Templates.Mvc.Tests
- Templates.Tests
- Razor
- Razor.Runtime/test
- Razor/test
- Security
- Authentication
- BearerToken/src
- Certificate
- samples
- Certificate.Optional.Sample
- Certificate.Sample
- src
- Cookies
- samples
- CookieSample
- CookieSessionSample
- src
- Core/src
- Facebook/src
- Google/src
- JwtBearer
- samples
- JwtBearerSample
- MinimalJwtBearerSample
- src
- MicrosoftAccount/src
- Negotiate
- samples/NegotiateAuthSample
- src
- test
- Negotiate.FunctionalTest
- Negotiate.Test
- testassets
- Negotiate.Client
- Negotiate.Server
- OAuth/src
- OpenIdConnect
- samples
- MinimalOpenIdConnectSample
- OpenIdConnectSample
- src
- Twitter/src
- WsFederation
- samples/WsFedSample
- src
- samples/SocialSample
- test
- Authorization
- Policy/src
- test
- CookiePolicy
- samples/CookiePolicySample
- src
- test
- perf/Microbenchmarks
- samples
- ClaimsTransformation
- Cookies
- CustomAuthorizationFailureResponse
- CustomPolicyProvider
- DynamicSchemes
- Identity.ExternalClaims
- PathSchemeSelection
- StaticFilesAuth
- test/AuthSamples.FunctionalTests
- Servers
- HttpSys
- samples
- HotAddSample
- QueueSharing
- SelfHostServer
- TlsFeaturesObserve
- src
- test
- FunctionalTests
- NonHelixTests
- Tests
- testassets/DelegationSite
- IIS
- IISIntegration
- samples/IISSample
- src
- test/Tests
- IIS
- samples/NativeIISSample
- src
- test
- IIS.FunctionalTests
- IIS.LongTests
- IIS.NewHandler.FunctionalTests
- IIS.NewShim.FunctionalTests
- IIS.ShadowCopy.Tests
- IIS.Tests
- IISExpress.FunctionalTests
- testassets
- IIS.Common.TestLib
- InProcessWebSite
- Kestrel
- Core
- src
- test
- Kestrel
- src
- test
- Transport.NamedPipes/test
- Transport.Quic
- src
- test
- perf/Microbenchmarks
- samples
- Http2SampleApp
- Http3SampleApp
- LargeResponseApp
- PlaintextApp
- SampleApp
- SystemdTestApp
- WebTransportInteractiveSampleApp
- WebTransportSampleApp
- http2cat
- stress
- test
- InMemory.FunctionalTests
- Interop.FunctionalTests
- Sockets.BindTests
- Sockets.FunctionalTests
- tools/CodeGenerator
- testassets/ServerComparison.TestSites
- SignalR
- clients
- csharp/Client/test
- FunctionalTests
- UnitTests
- ts/FunctionalTests
- common
- Http.Connections
- src
- test
- SignalR.Common/test
- testassets/Tests.Utils
- perf/Microbenchmarks
- samples
- JwtSample
- SignalRSamples
- SocialWeather
- server
- Core/src
- SignalR
- src
- test/Microsoft.AspNetCore.SignalR.Tests
- Specification.Tests/src
- StackExchangeRedis/test
- StaticAssets
- src
- test
- Tools
- GetDocumentInsider
- sample
- src
- tests
- dotnet-user-jwts/test
- dotnet-user-secrets/src/Internal
- Validation/test
- Microsoft.Extensions.Validation.GeneratorTests
- Microsoft.Extensions.Validation.Tests
- submodules
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
322 | 322 | | |
323 | 323 | | |
324 | 324 | | |
325 | | - | |
326 | | - | |
327 | | - | |
328 | | - | |
329 | | - | |
330 | | - | |
331 | | - | |
332 | | - | |
333 | | - | |
334 | | - | |
335 | | - | |
336 | | - | |
337 | | - | |
338 | | - | |
339 | | - | |
340 | | - | |
341 | | - | |
342 | | - | |
343 | | - | |
344 | | - | |
345 | | - | |
346 | | - | |
347 | | - | |
348 | | - | |
349 | | - | |
350 | | - | |
| 325 | + | |
| 326 | + | |
351 | 327 | | |
352 | | - | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
353 | 349 | | |
354 | | - | |
355 | | - | |
356 | | - | |
357 | | - | |
358 | | - | |
359 | | - | |
360 | | - | |
361 | | - | |
362 | | - | |
363 | | - | |
364 | | - | |
365 | | - | |
366 | | - | |
367 | | - | |
368 | | - | |
369 | | - | |
370 | | - | |
371 | | - | |
372 | | - | |
373 | | - | |
374 | | - | |
375 | | - | |
376 | | - | |
377 | | - | |
378 | | - | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
379 | 354 | | |
380 | | - | |
381 | | - | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
382 | 358 | | |
383 | | - | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
384 | 381 | | |
385 | | - | |
386 | | - | |
387 | | - | |
388 | | - | |
389 | | - | |
390 | | - | |
391 | | - | |
392 | | - | |
393 | | - | |
394 | | - | |
395 | | - | |
396 | | - | |
397 | | - | |
398 | | - | |
399 | | - | |
400 | | - | |
401 | | - | |
402 | | - | |
403 | | - | |
404 | | - | |
405 | | - | |
406 | | - | |
407 | | - | |
408 | | - | |
409 | | - | |
410 | | - | |
411 | | - | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
412 | 386 | | |
413 | | - | |
414 | | - | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
415 | 390 | | |
416 | | - | |
| 391 | + | |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + | |
| 398 | + | |
| 399 | + | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
| 403 | + | |
| 404 | + | |
| 405 | + | |
| 406 | + | |
| 407 | + | |
| 408 | + | |
| 409 | + | |
| 410 | + | |
| 411 | + | |
| 412 | + | |
| 413 | + | |
| 414 | + | |
417 | 415 | | |
418 | | - | |
419 | | - | |
420 | | - | |
421 | | - | |
422 | | - | |
423 | | - | |
424 | | - | |
425 | | - | |
426 | | - | |
427 | | - | |
428 | | - | |
429 | | - | |
430 | | - | |
431 | | - | |
432 | | - | |
433 | | - | |
434 | | - | |
435 | | - | |
436 | | - | |
437 | | - | |
438 | | - | |
439 | | - | |
440 | | - | |
441 | | - | |
442 | | - | |
443 | | - | |
444 | | - | |
| 416 | + | |
| 417 | + | |
| 418 | + | |
| 419 | + | |
445 | 420 | | |
446 | | - | |
447 | | - | |
| 421 | + | |
| 422 | + | |
| 423 | + | |
448 | 424 | | |
449 | | - | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
| 428 | + | |
| 429 | + | |
| 430 | + | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
450 | 449 | | |
451 | | - | |
452 | | - | |
453 | | - | |
454 | | - | |
455 | | - | |
456 | | - | |
457 | | - | |
458 | | - | |
459 | | - | |
460 | | - | |
461 | | - | |
462 | | - | |
463 | | - | |
464 | | - | |
465 | | - | |
466 | | - | |
467 | | - | |
468 | | - | |
469 | | - | |
470 | | - | |
471 | | - | |
472 | | - | |
473 | | - | |
474 | | - | |
475 | | - | |
476 | | - | |
477 | | - | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
478 | 454 | | |
479 | | - | |
480 | | - | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
481 | 458 | | |
482 | | - | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
483 | 488 | | |
484 | 489 | | |
485 | 490 | | |
| |||
0 commit comments