Skip to content

Commit 926ad9b

Browse files
authored
Merge branch 'main' into merge/release/6.0-preview4-to-main
2 parents 93fd8ba + 228d8de commit 926ad9b

File tree

210 files changed

+4866
-3543
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+4866
-3543
lines changed

.azure/pipelines/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,10 +772,16 @@ stages:
772772
pool:
773773
vmImage: 'ubuntu-18.04'
774774
variables:
775+
LC_ALL: 'en_US.UTF-8'
776+
LANG: 'en_US.UTF-8'
777+
LANGUAGE: 'en_US.UTF-8'
775778
DotNetCoreSdkDir: $(Agent.ToolsDirectory)/dotnet
776779
# This isn't needed in the path because build does not need to _use_ global tools.
777780
DOTNET_CLI_HOME: $(System.DefaultWorkingDirectory)
778781
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: true
782+
LC_ALL: 'en_US.UTF-8'
783+
LANG: 'en_US.UTF-8'
784+
LANGUAGE: 'en_US.UTF-8'
779785
steps:
780786
- script: |
781787
source eng/common/native/common-library.sh

.azure/pipelines/jobs/default-build.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,22 @@ jobs:
138138
- DOTNET_CLI_HOME: $(System.DefaultWorkingDirectory)
139139
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
140140
- TeamName: AspNetCore
141+
- ${{ if eq(parameters.agentOs, 'Linux') }}:
142+
- LC_ALL: 'en_US.UTF-8'
143+
- LANG: 'en_US.UTF-8'
144+
- LANGUAGE: 'en_US.UTF-8'
145+
- ${{ if and(eq(parameters.installJdk, 'true'), eq(parameters.agentOs, 'Windows')) }}:
146+
- JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk\win-x64
141147
- ${{ if or(ne(parameters.codeSign, true), ne(variables['System.TeamProject'], 'internal')) }}:
142148
- _SignType: ''
143149
- ${{ if and(eq(parameters.codeSign, true), eq(variables['System.TeamProject'], 'internal')) }}:
144150
- ${{ if notin(variables['Build.Reason'], 'PullRequest') }}:
145151
- _SignType: real
146152
- ${{ if in(variables['Build.Reason'], 'PullRequest') }}:
147153
- _SignType: test
154+
- LC_ALL: 'en_US.UTF-8'
155+
- LANG: 'en_US.UTF-8'
156+
- LANGUAGE: 'en_US.UTF-8'
148157
steps:
149158
- ${{ if ne(parameters.agentOs, 'Windows') }}:
150159
- script: df -h

AspNetCore.sln

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "http2cat", "src\Servers\Kes
13581358
EndProject
13591359
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Transport.Quic", "Transport.Quic", "{EE9D0952-6060-4723-B329-94A2950A6762}"
13601360
EndProject
1361-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic", "src\Servers\Kestrel\Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Experimental.Quic.csproj", "{132D43A2-067A-4E24-A520-45B9F14DCB8E}"
1361+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic", "src\Servers\Kestrel\Transport.Quic\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.csproj", "{132D43A2-067A-4E24-A520-45B9F14DCB8E}"
13621362
EndProject
13631363
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Http3SampleApp", "src\Servers\Kestrel\samples\Http3SampleApp\Http3SampleApp.csproj", "{2EC4E939-513F-44CD-A956-498966EAC929}"
13641364
EndProject
@@ -1634,6 +1634,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.HttpLo
16341634
EndProject
16351635
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HttpLogging.Sample", "src\Middleware\HttpLogging\samples\HttpLogging.Sample\HttpLogging.Sample.csproj", "{908B2263-B58B-4261-A125-B5F2DFF92799}"
16361636
EndProject
1637+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests", "src\Servers\Kestrel\Transport.Quic\test\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests.csproj", "{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}"
1638+
EndProject
16371639
Global
16381640
GlobalSection(SolutionConfigurationPlatforms) = preSolution
16391641
Debug|Any CPU = Debug|Any CPU
@@ -7753,6 +7755,18 @@ Global
77537755
{908B2263-B58B-4261-A125-B5F2DFF92799}.Release|x64.Build.0 = Release|Any CPU
77547756
{908B2263-B58B-4261-A125-B5F2DFF92799}.Release|x86.ActiveCfg = Release|Any CPU
77557757
{908B2263-B58B-4261-A125-B5F2DFF92799}.Release|x86.Build.0 = Release|Any CPU
7758+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7759+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|Any CPU.Build.0 = Debug|Any CPU
7760+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|x64.ActiveCfg = Debug|Any CPU
7761+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|x64.Build.0 = Debug|Any CPU
7762+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|x86.ActiveCfg = Debug|Any CPU
7763+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Debug|x86.Build.0 = Debug|Any CPU
7764+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|Any CPU.ActiveCfg = Release|Any CPU
7765+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|Any CPU.Build.0 = Release|Any CPU
7766+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|x64.ActiveCfg = Release|Any CPU
7767+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|x64.Build.0 = Release|Any CPU
7768+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|x86.ActiveCfg = Release|Any CPU
7769+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52}.Release|x86.Build.0 = Release|Any CPU
77567770
EndGlobalSection
77577771
GlobalSection(SolutionProperties) = preSolution
77587772
HideSolutionNode = FALSE
@@ -8562,6 +8576,7 @@ Global
85628576
{FF413F1C-A998-4FA2-823F-52AC0916B35C} = {022B4B80-E813-4256-8034-11A68146F4EF}
85638577
{3A1EC883-EF9C-43E8-95E5-6B527428867B} = {022B4B80-E813-4256-8034-11A68146F4EF}
85648578
{908B2263-B58B-4261-A125-B5F2DFF92799} = {022B4B80-E813-4256-8034-11A68146F4EF}
8579+
{E3DAEBD3-CD36-493F-877F-460E8FFEAC52} = {EE9D0952-6060-4723-B329-94A2950A6762}
85658580
EndGlobalSection
85668581
GlobalSection(ExtensibilityGlobals) = postSolution
85678582
SolutionGuid = {3E8720B3-DBDD-498C-B383-2CC32A054E8F}

0 commit comments

Comments
 (0)