Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0ed6e62
Enable NuGet Audit for security vulnerability scanning
Copilot Nov 7, 2025
aa16f09
Remove NuGet Audit TODO comments and configuration
marcpopMSFT Apr 3, 2026
0e03a9e
[release/8.0.4xx] Enable NuGet Audit for security vulnerability scann…
marcpopMSFT Apr 16, 2026
4a7d5be
Enable NuGet Audit for security vulnerability scanning
Copilot Nov 7, 2025
fc5d5f2
Remove NuGet Audit TODO comments and configuration
marcpopMSFT Apr 3, 2026
4c56fd7
Update dependencies from https://github.com/dotnet/source-build-exter…
dotnet-maestro[bot] Apr 17, 2026
55801ad
[release/8.0.4xx] Update dependencies from dotnet/source-build-extern…
DonnaChen888 Apr 17, 2026
cddda2e
[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#53932)
DonnaChen888 Apr 17, 2026
68f1081
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] Apr 17, 2026
2797529
Replace ubuntu22 VM and Helix images with Azure Linux 3 (#53931)
ellahathaway Apr 17, 2026
2de5190
[release/9.0.1xx] Update dependencies from dotnet/templating (#53941)
MiYanni Apr 17, 2026
ed18571
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] Apr 18, 2026
5f1e525
[release/8.0.4xx] Update dependencies from dotnet/templating (#53983)
DonnaChen888 Apr 20, 2026
cf39b68
Reset files to release/9.0.1xx
github-actions[bot] Apr 20, 2026
4e41309
Merge branch 'release/9.0.1xx' into merge/release/8.0.4xx-to-release/…
DonnaChen888 Apr 20, 2026
c51a252
[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#53986)
DonnaChen888 Apr 20, 2026
eb700d9
Update dependencies from https://github.com/dotnet/arcade build 20260…
dotnet-maestro[bot] Apr 21, 2026
b982448
[release/9.0.1xx] Update dependencies from dotnet/arcade (#54006)
DonnaChen888 Apr 21, 2026
ac083a5
Reset files to release/9.0.3xx
github-actions[bot] Apr 21, 2026
0638688
[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx' (#54008)
dsplaisted Apr 21, 2026
bb8718a
Reset files to release/10.0.1xx
github-actions[bot] Apr 21, 2026
a13adc4
Merge branch 'release/10.0.1xx' of https://github.com/dotnet/sdk into…
DonnaChen888 Apr 22, 2026
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
2 changes: 1 addition & 1 deletion .vsts-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ extends:
parameters:
pool:
name: $(DncEngInternalBuildPool)
image: 1es-ubuntu-2204
image: build.azurelinux.3.amd64
os: linux
helixTargetQueue: ubuntu.2204.amd64
oneESCompat:
Expand Down
2 changes: 1 addition & 1 deletion .vsts-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ stages:
parameters:
pool:
name: $(DncEngPublicBuildPool)
demands: ImageOverride -equals build.ubuntu.2204.amd64.open
demands: ImageOverride -equals build.azurelinux.3.amd64.open
os: linux
helixTargetQueue: ubuntu.2204.amd64.open

Expand Down
10 changes: 5 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@

<!-- https://github.com/dotnet/source-build/issues/4115. -->
<PublishWindowsPdb>false</PublishWindowsPdb>

<!-- Enable NuGet Audit to check for security vulnerabilities -->
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>low</NuGetAuditLevel>
<NuGetAuditMode>all</NuGetAuditMode>
</PropertyGroup>

<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
Expand All @@ -82,11 +87,6 @@
<!-- <TestRunnerAdditionalArguments>-parallel none</TestRunnerAdditionalArguments> -->
</PropertyGroup>

<!-- TODO: Re-enable NuGet Audit and fix alerts: https://github.com/dotnet/sdk/issues/51465 -->
<PropertyGroup>
<NuGetAudit>false</NuGetAudit>
</PropertyGroup>

<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
Expand Down
Loading