Merge in 'release/6.0.4xx' changes

This commit is contained in:
dotnet-bot 2024-06-04 03:09:03 +00:00
commit 3d977c25bd
7 changed files with 154 additions and 39 deletions

View file

@ -63,8 +63,8 @@ extends:
template: v1/1ES.Unofficial.PipelineTemplate.yml@1esPipelines
parameters:
containers:
fedora38:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38
fedora39:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-39
sdl:
sourceAnalysisPool:
name: $(DncEngInternalBuildPool)

View file

@ -2,7 +2,7 @@
jobs:
- job: Source_Build_Create_Tarball
container: fedora38
container: fedora39
displayName: Source-Build Create Tarball
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:

View file

@ -12,9 +12,8 @@ parameters:
alpine317Container: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.17
centOS7Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-source-build
centOSStream9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9
debian11Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-arm64v8
fedora38Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38
ubuntu1804Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04
fedora39Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-39
ubuntu2004Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04-arm64
poolInternalAmd64:
name: NetCore1ESPool-Svc-Internal
demands: ImageOverride -equals Build.Ubuntu.1804.Amd64
@ -64,20 +63,13 @@ jobs:
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: true
_RunOnline: false
Fedora38-Offline:
Fedora39-Offline:
_BootstrapPrep: false
_Container: ${{ parameters.fedora38Container }}
_Container: ${{ parameters.fedora39Container }}
_EnablePoison: true
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
_RunOnline: false
Ubuntu1804-Offline:
_BootstrapPrep: false
_Container: ${{ parameters.ubuntu1804Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
_RunOnline: false
name: Build_Tarball_x64
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
@ -95,9 +87,9 @@ jobs:
dependsOn: ${{ parameters.dependsOn }}
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
Debian11-Offline:
Ubuntu2004-Offline:
_BootstrapPrep: true
_Container: ${{ parameters.debian11Arm64Container }}
_Container: ${{ parameters.ubuntu2004Arm64Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
@ -116,9 +108,9 @@ jobs:
excludeSdkContentTests: true
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
Fedora38-Offline:
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora38-Offline_Artifacts
_Container: ${{ parameters.fedora38Container }}
Fedora39-Offline:
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora39-Offline_Artifacts
_Container: ${{ parameters.fedora39Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false

View file

@ -12,9 +12,8 @@ parameters:
alpine317Container: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.17
centOS7Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7-source-build
centOSStream9Container: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9
debian11Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-arm64v8
fedora38Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-38
ubuntu1804Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04
fedora39Container: mcr.microsoft.com/dotnet-buildtools/prereqs:fedora-39
ubuntu2004Arm64Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04-arm64
poolInternalAmd64:
name: NetCore1ESPool-Svc-Internal
image: 1es-ubuntu-2004
@ -70,20 +69,13 @@ jobs:
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: true
_RunOnline: false
Fedora38-Offline:
Fedora39-Offline:
_BootstrapPrep: false
_Container: ${{ parameters.fedora38Container }}
_Container: ${{ parameters.fedora39Container }}
_EnablePoison: true
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
_RunOnline: false
Ubuntu1804-Offline:
_BootstrapPrep: false
_Container: ${{ parameters.ubuntu1804Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
_RunOnline: false
name: Build_Tarball_x64
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
@ -101,9 +93,9 @@ jobs:
dependsOn: ${{ parameters.dependsOn }}
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
Debian11-Offline:
Ubuntu2004-Offline:
_BootstrapPrep: true
_Container: ${{ parameters.debian11Arm64Container }}
_Container: ${{ parameters.ubuntu2004Arm64Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false
@ -122,9 +114,9 @@ jobs:
excludeSdkContentTests: true
installerBuildResourceId: ${{ parameters.installerBuildResourceId }}
matrix:
Fedora38-Offline:
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora38-Offline_Artifacts
_Container: ${{ parameters.fedora38Container }}
Fedora39-Offline:
_PreviousSourceBuildArtifact: Build_Tarball_x64 Fedora39-Offline_Artifacts
_Container: ${{ parameters.fedora39Container }}
_EnablePoison: false
_ExcludeOmniSharpTests: false
_OverrideDistroDisablingSha1: false

View file

@ -37,9 +37,9 @@ extends:
architecture: x64
excludeSdkContentTests: true
matrix:
Ubuntu1804-Offline:
Ubuntu2004-Offline:
_BootstrapPrep: false
_Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04
_Container: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04
_EnablePoison: false
_ExcludeOmniSharpTests: false
_RunOnline: false

View file

@ -14,7 +14,20 @@ index ------------
./packs/Microsoft.AspNetCore.App.Ref/
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/
@@ ------------ @@
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.JSInterop.xml
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.Net.Http.Headers.dll
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/Microsoft.Net.Http.Headers.xml
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Diagnostics.DiagnosticSource.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Diagnostics.DiagnosticSource.xml
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Diagnostics.EventLog.dll
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Diagnostics.EventLog.xml
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Formats.Asn1.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Formats.Asn1.xml
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.IO.Pipelines.dll
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.IO.Pipelines.xml
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Runtime.CompilerServices.Unsafe.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.AccessControl.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.AccessControl.xml
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.Cryptography.Xml.dll
./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Security.Cryptography.Xml.xml
-./packs/Microsoft.NETCore.App.Host.portable-rid/
@ -29,6 +42,10 @@ index ------------
-./packs/Microsoft.NETCore.App.Host.portable-rid/x.y.z/runtimes/portable-rid/native/libnethost.so
-./packs/Microsoft.NETCore.App.Host.portable-rid/x.y.z/runtimes/portable-rid/native/nethost.h
-./packs/Microsoft.NETCore.App.Host.portable-rid/x.y.z/runtimes/portable-rid/native/singlefilehost
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Text.Encodings.Web.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Text.Encodings.Web.xml
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Text.Json.dll
+./packs/Microsoft.AspNetCore.App.Ref/x.y.z/ref/netx.y/System.Text.Json.xml
+./packs/Microsoft.NETCore.App.Host.banana-rid/
+./packs/Microsoft.NETCore.App.Host.banana-rid/x.y.z/
+./packs/Microsoft.NETCore.App.Host.banana-rid/x.y.z/runtimes/

View file

@ -107,6 +107,12 @@
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/NuGet.Versioning.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/System.Reflection.Metadata.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -119,6 +125,12 @@
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/System.Runtime.CompilerServices.Unsafe.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Arcade.Sdk.x.y.z/tools/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Installers.x.y.z/tools/netx.y/Newtonsoft.Json.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -251,12 +263,30 @@
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/runtimes/browser/lib/netx.y/System.Text.Encodings.Web.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Collections.Immutable.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Collections.Immutable.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Reflection.Metadata.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -269,6 +299,18 @@
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Runtime.CompilerServices.Unsafe.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Security.AccessControl.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Packaging.x.y.z/tools/netx.y/System.Text.Encodings.Web.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -317,6 +359,24 @@
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/NuGet.Versioning.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/cs/Microsoft.Deployment.DotNet.Releases.resources.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -491,12 +551,24 @@
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/runtimes/browser/lib/netx.y/System.Text.Encodings.Web.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Collections.Immutable.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Collections.Immutable.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Reflection.Metadata.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -509,6 +581,12 @@
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Runtime.CompilerServices.Unsafe.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.Build.Tasks.Workloads.x.y.z/tools/netx.y/System.Text.Encodings.Web.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -911,6 +989,12 @@
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/ru/Microsoft.CodeAnalysis.resources.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Text.Encoding.CodePages.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -923,6 +1007,12 @@
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Collections.Immutable.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Reflection.Metadata.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -935,6 +1025,12 @@
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Runtime.CompilerServices.Unsafe.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.PackageTesting.x.y.z/tools/netx.y/System.Text.Encoding.CodePages.dll">
<Type>AssemblyAttribute</Type>
</File>
@ -1259,6 +1355,24 @@
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/NuGet.Versioning.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/runtimes/win/lib/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/System.Formats.Asn1.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.DotNet.SourceBuild.Tasks.x.y.z/tools/netx.y/System.Security.Cryptography.Pkcs.dll">
<Type>AssemblyAttribute</Type>
</File>
<File Path="Microsoft.Net.Compilers.Toolset.x.y.z/tasks/netcoreapp3.1/bincore/runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll">
<Type>AssemblyAttribute</Type>
</File>