Share.Analyzer.csproj 885 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <IncludeBuildOutput>false</IncludeBuildOutput>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>default</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  9. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  10. <NoWarn>1701;1702;RS2008</NoWarn>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  13. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  14. <NoWarn>1701;1702;RS2008</NoWarn>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.0.1" PrivateAssets="all" />
  18. <PackageReference Update="NETStandard.Library" PrivateAssets="all" />
  19. </ItemGroup>
  20. </Project>