File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed
src/BuiltInTools/BrowserRefresh Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 506
506
<SourceBuild RepoName =" source-build-externals" ManagedOnly =" true" />
507
507
</Dependency >
508
508
<!-- Intermediate is necessary for source build. -->
509
- <Dependency Name =" Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version =" 10.0.616001 " >
509
+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version =" 10.0.616401 " >
510
510
<Uri >https://github.com/dotnet/source-build-reference-packages</Uri >
511
- <Sha >8f9f6fa14523b2f2475ea0a86be1cf60b5de5336 </Sha >
511
+ <Sha >c3d4c372a15c2de79a2f26fe2b6b3644996d8550 </Sha >
512
512
<SourceBuild RepoName =" source-build-reference-packages" ManagedOnly =" true" />
513
513
</Dependency >
514
514
<Dependency Name =" Microsoft.Deployment.DotNet.Releases" Version =" 2.0.0-preview.1.25124.1" >
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ private void AttachWebAssemblyHeaders(HttpContext context)
82
82
{
83
83
if ( _dotnetModifiableAssemblies != null )
84
84
{
85
- context . Response . Headers . Add ( "DOTNET-MODIFIABLE-ASSEMBLIES" , _dotnetModifiableAssemblies ) ;
85
+ context . Response . Headers . Append ( "DOTNET-MODIFIABLE-ASSEMBLIES" , _dotnetModifiableAssemblies ) ;
86
86
}
87
87
else
88
88
{
@@ -98,7 +98,7 @@ private void AttachWebAssemblyHeaders(HttpContext context)
98
98
{
99
99
if ( _aspnetcoreBrowserTools != null )
100
100
{
101
- context . Response . Headers . Add ( "ASPNETCORE-BROWSER-TOOLS" , _aspnetcoreBrowserTools ) ;
101
+ context . Response . Headers . Append ( "ASPNETCORE-BROWSER-TOOLS" , _aspnetcoreBrowserTools ) ;
102
102
}
103
103
else
104
104
{
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <!-- Intentionally pinned. This feature is supported in projects targeting 6.0 or newer.-->
4
- <TargetFramework >net6.0</TargetFramework >
3
+ <!-- Intentionally pinned. This feature is supported in projects targeting 8.0 or newer.-->
4
+ <!-- This should always use the oldest supported TFM -->
5
+ <TargetFramework >net8.0</TargetFramework >
5
6
<StrongNameKeyId >MicrosoftAspNetCore</StrongNameKeyId >
6
7
7
8
<IsPackable >false</IsPackable >
16
17
</ItemGroup >
17
18
18
19
<ItemGroup Condition =" '$(DotNetBuildSourceOnly)' == 'true'" >
19
- <!-- Reference 6 .0.2 targeting packs in Source Build - this was the earliest version after the API surface stabilized -->
20
- <FrameworkReference Update =" Microsoft.AspNetCore.App" TargetingPackVersion =" 6 .0.2 " />
21
- <FrameworkReference Update =" Microsoft.NETCore.App" TargetingPackVersion =" 6 .0.2 " />
20
+ <!-- Reference 8 .0.0 targeting packs in Source Build -->
21
+ <FrameworkReference Update =" Microsoft.AspNetCore.App" TargetingPackVersion =" 8 .0.0 " />
22
+ <FrameworkReference Update =" Microsoft.NETCore.App" TargetingPackVersion =" 8 .0.0 " />
22
23
</ItemGroup >
23
24
24
25
<ItemGroup >
You can’t perform that action at this time.
0 commit comments