Directory.Build.props 878 B

1234567891011121314151617181920212223
  1. <Project>
  2. <PropertyGroup>
  3. <Nullable>enable</Nullable>
  4. <AnalysisLevel>latest-recommended</AnalysisLevel>
  5. <WarningLevel>7</WarningLevel>
  6. <CharacterSet>UTF-8</CharacterSet>
  7. <Deterministic>true</Deterministic>
  8. <UTF8OutPut>true</UTF8OutPut>
  9. <DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS;CONTRACTS_FULL;CODE_ANALYSIS</DefineConstants>
  10. <NoLogo>True</NoLogo>
  11. <DefineTrace>True</DefineTrace>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
  15. <PackageReference Include="JetBrains.ExternalAnnotations" Version="10.2.147" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Using Include="System.Buffers" />
  19. <Using Include="System.Collections.Specialized" />
  20. <Using Include="System.Numerics" />
  21. <Using Include="System.Runtime.CompilerServices" />
  22. </ItemGroup>
  23. </Project>