Skip to content

Commit bdcd9d0

Browse files
chore(client): deprecate some symbols
1 parent ae85584 commit bdcd9d0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/ArcadeDotnet.Tests/ArcadeDotnet.Tests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<ImplicitUsings>disable</ImplicitUsings>
88
<!-- Disable skipped tests warnings -->
99
<NoWarn>$(NoWarn),xUnit1004</NoWarn>
10+
<!-- Disable deprecation warnings since we may reference our own deprecated symbols -->
11+
<NoWarn>$(NoWarn),0618</NoWarn>
1012
</PropertyGroup>
1113
<ItemGroup>
1214
<PackageReference Include="coverlet.collector" Version="6.0.0" />

src/ArcadeDotnet/ArcadeDotnet.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
2020
<!-- Disable missing XML documentation warnings -->
2121
<NoWarn>$(NoWarn),1570,1573,1574,1591</NoWarn>
22+
<!-- Disable deprecation warnings since we may reference our own deprecated symbols -->
23+
<NoWarn>$(NoWarn),0618</NoWarn>
2224
<!-- Disable JSON warnings (beta) -->
2325
<NoWarn>$(NoWarn),IL2026,IL3050</NoWarn>
2426
<Configurations>Debug;Release</Configurations>

0 commit comments

Comments
 (0)