ET.Analyzer.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <IncludeBuildOutput>false</IncludeBuildOutput>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>12</LangVersion>
  7. <RootNamespace>ET</RootNamespace>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  14. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  15. <NoWarn>1701;1702;RS2008</NoWarn>
  16. <OutputPath>./obj</OutputPath>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  19. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  20. <NoWarn>1701;1702;RS2008</NoWarn>
  21. <OutputPath>./obj</OutputPath>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <Compile Include="../StringHashHelper.cs" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.0.1" PrivateAssets="all" />
  28. <PackageReference Update="NETStandard.Library" PrivateAssets="all" />
  29. </ItemGroup>
  30. </Project>