File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 13
13
<EngRoot >$(RepoRoot)eng/</EngRoot >
14
14
</PropertyGroup >
15
15
16
+ <PropertyGroup >
17
+ <ContinuousIntegrationBuild >false</ContinuousIntegrationBuild >
18
+ <ContinuousIntegrationBuild Condition =" '$(TF_BUILD)' == 'true'" >true</ContinuousIntegrationBuild >
19
+ <CI >$(ContinuousIntegrationBuild)</CI >
20
+ </PropertyGroup >
21
+
22
+ <PropertyGroup >
23
+ <!-- Nuget audit as warnings only, even in TreatWarningsAsErrors. -->
24
+ <!-- Except for in CI, critical will fail the build. -->
25
+ <WarningsNotAsErrors >$(WarningsNotAsErrors);NU1901;NU1902;NU1903</WarningsNotAsErrors >
26
+ <WarningsNotAsErrors Condition =" '$(CI)' == 'false'" >$(WarningsNotAsErrors)NU1904</WarningsNotAsErrors >
27
+ <WarningsAsErrors Condition =" '$(CI)' == 'true'" >$(WarningsAsErrors)NU1904</WarningsAsErrors >
28
+ <NuGetAuditLevel >moderate</NuGetAuditLevel > <!-- warn on moderate severity only. -->
29
+ <NuGetAuditMode >all</NuGetAuditMode > <!-- audit transitive dependencies. -->
30
+ </PropertyGroup >
31
+
16
32
</Project >
Original file line number Diff line number Diff line change 21
21
<CodeAnalysisRuleSet >$(MSBuildThisFileDirectory)..\src.ruleset</CodeAnalysisRuleSet >
22
22
<NoWarn >$(NoWarn);NU1701</NoWarn >
23
23
24
- <ContinuousIntegrationBuild Condition =" '$(TF_BUILD)' == 'true'" >true</ContinuousIntegrationBuild >
25
24
<DebugType >embedded</DebugType >
26
25
<GenerateRuntimeConfigDevFile >true</GenerateRuntimeConfigDevFile ><!-- https://github.com/dotnet/runtime/issues/54684 -->
27
26
<DisableImplicitNamespaceImports >true</DisableImplicitNamespaceImports >
Original file line number Diff line number Diff line change 20
20
<ItemGroup >
21
21
<PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.Http" Version =" 3.2.0" />
22
22
<PackageReference Include =" Newtonsoft.Json" Version =" 13.0.3" />
23
+ <PackageReference Include =" System.Text.Encodings.Web" Version =" 4.7.2" />
23
24
</ItemGroup >
24
25
25
26
</Project >
You can’t perform that action at this time.
0 commit comments