-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor official build to use arcade templates (#6412)
- Loading branch information
Showing
8 changed files
with
296 additions
and
376 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<PublishingVersion>3</PublishingVersion> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,10 @@ | ||
<Project> | ||
<ItemGroup Condition="'$(SignBinaries)' == 'true'"> | ||
<ItemsToSign Remove="@(ItemsToSign)" /> | ||
<ItemsToSign Include="$(ArtifactsDir)pkgassets\**\*.dll" /> | ||
<FileExtensionSignInfo Include="*.dll" CertificateName="MicrosoftDotNet500" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(SignNugetPackages)' == 'true'"> | ||
<ItemsToSign Remove="@(ItemsToSign)" /> | ||
<ItemsToSign Include="$(ArtifactsDir)packages\**\*.nupkg" /> | ||
<ItemsToSign Include="$(ArtifactsDir)packages\**\*.snupkg" /> | ||
<FileExtensionSignInfo Include="*.nupkg" CertificateName="NuGet" /> | ||
<FileExtensionSignInfo Include="*.snupkg" CertificateName="NuGet" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ItemsToSign Include="$(ArtifactsPackagesDir)**\*.snupkg" /> | ||
<FileExtensionSignInfo Include="*.snupkg" CertificateName="NuGet" /> | ||
</ItemGroup> | ||
|
||
<!-- Since this repo isn't on Arcade 6, the UseDotNetCertificate optionis not available. Do the update here instead. --> | ||
<ItemGroup> | ||
<FileExtensionSignInfo Update="@(FileExtensionSignInfo->WithMetadataValue('CertificateName','Microsoft400'))" CertificateName="MicrosoftDotNet500" /> | ||
<StrongNameSignInfo Update="@(StrongNameSignInfo->WithMetadataValue('CertificateName','Microsoft400'))" CertificateName="MicrosoftDotNet500" /> | ||
<FileSignInfo Update="@(FileSignInfo->WithMetadataValue('CertificateName','Microsoft400'))" CertificateName="MicrosoftDotNet500" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<UseDotNetCertificate>true</UseDotNetCertificate> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
variables: | ||
- group: SDL_Settings | ||
- name: BuildConfig | ||
value: Release | ||
- name: OfficialBuildId | ||
value: $(BUILD.BUILDNUMBER) | ||
- name: DOTNET_CLI_TELEMETRY_OPTOUT | ||
value: 1 | ||
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE | ||
value: 1 | ||
- name: DOTNET_MULTILEVEL_LOOKUP | ||
value: 0 | ||
- name: Codeql.Enabled | ||
value: true | ||
- name: Codeql.SkipTaskAutoInjection | ||
value: True #default to not inject CodeQL tasks, we'll enable it in a single job. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters