Skip to content

Commit def9419

Browse files
fix(internal): minor project fixes
1 parent e7a5617 commit def9419

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

scripts/lint

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7+
echo "==> Running dotnet csharpier check"
8+
dotnet csharpier check .
9+
710
echo "==> Running dotnet format"
811
dotnet format style --severity info --verify-no-changes
912
dotnet format analyzers --severity info --verify-no-changes

src/Orb/Orb.csproj

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,7 @@
2121
<NoWarn>$(NoWarn),1570,1573,1574,1591</NoWarn>
2222
<!-- Disable deprecation warnings since we may reference our own deprecated symbols -->
2323
<NoWarn>$(NoWarn),0618</NoWarn>
24-
<!-- Disable JSON warnings (beta) -->
25-
<NoWarn>$(NoWarn),IL2026,IL3050</NoWarn>
2624
<Configurations>Debug;Release</Configurations>
27-
<IsTrimmable
28-
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"
29-
>true</IsTrimmable
30-
>
31-
<IsAotCompatible
32-
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))"
33-
>true</IsAotCompatible
34-
>
3525
<ImplicitUsings>disable</ImplicitUsings>
3626
</PropertyGroup>
3727
<ItemGroup>

0 commit comments

Comments
 (0)