Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"powershell": {
"version": "7.6.4",
"version": "7.6.5",
"commands": [
"pwsh"
],
Expand Down Expand Up @@ -31,7 +31,7 @@
"rollForward": false
},
"nerdbank.dotnetrepotools": {
"version": "1.5.15",
"version": "1.5.42",
"commands": [
"repo"
],
Expand Down
7 changes: 5 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,11 @@ Having previously used `nbgv tag` and pushing the tag will help you identify the
After publishing the release, the `.github/workflows/release.yml` workflow will be automatically triggered, which will:

1. Find the most recent `.github/workflows/build.yml` GitHub workflow run of the tagged release.
1. Upload the `deployables` artifact from that workflow run to your GitHub Release.
1. If you have `NUGET_API_KEY` defined as a secret variable for your repo or org, any nuget packages in the `deployables` artifact will be pushed to nuget.org.
1. Upload the `deployables-Linux` artifact from that workflow run to your GitHub Release.
1. Any nuget packages in the `deployables-Linux` artifact will be pushed to nuget.org.

The workflow is written to leverage NuGet.org Trusted Publishing.
You should set `NUGET_USER` as a repo secret to satisfy Trusted Publishing requirements.
Comment thread
AArnott marked this conversation as resolved.

### Azure Pipelines

Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<MicrosoftTestingPlatformVersion>2.3.3</MicrosoftTestingPlatformVersion>
<MicroBuildVersion>2.0.226</MicroBuildVersion>
<MicroBuildVersion>2.0.257</MicroBuildVersion>
<CodeAnalysisVersion>5.9.0</CodeAnalysisVersion>
<CodefixTestingVersion>1.1.4</CodefixTestingVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/archive-sourcecode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/libtemplate-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Unofficial.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool:
name: AzurePipelines-EO
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable
codeSignValidation:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/unofficial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Unofficial.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable
credscan:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/vs-insertion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Official.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable
sbom:
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/vs-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extends:
template: azure-pipelines/MicroBuild.1ES.Unofficial.yml@MicroBuildTemplate
parameters:
settings:
networkIsolationPolicy: Permissive,CFSClean2
networkIsolationPolicy: DefaultDeny,CFSClean3
sdl:
sourceAnalysisPool: VSEng-MicroBuildVSStable
credscan:
Expand Down
Loading