Skip to content
Merged
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
14 changes: 12 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,18 @@
<PropertyGroup Condition="'$(BuildSimulator)' == 'true'">
<DefineConstants>$(DefineConstants);ENCLAVE_SIMULATOR</DefineConstants>
</PropertyGroup>

<!-- Audit Settings -->

<!-- NuGet Audit Settings -->
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<!--
ADO does not support audit/vulnerability feeds, so the audit feed is specified (in
nuget.config) as nuget.org. OneBranch default network isolation does not allow connections
to nuget.org. To avoid this issue, we will disable auditing for official builds, but leave it
enabled for local builds.
@TODO: If/when auditing is enabled for central feeds services, this can be removed.
-->
<NuGetAudit>false</NuGetAudit>
</PropertyGroup>
<PropertyGroup>
<NuGetAuditMode>all</NuGetAuditMode>
</PropertyGroup>
Expand Down
Loading