NetCoreTest.csproj 739 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
  5. <RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
  6. <LangVersion>8.0</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <CodeAnalysisRuleSet />
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <CodeAnalysisRuleSet />
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <Folder Include="wwwroot\" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\Masuit.Tools.Core\Masuit.Tools.Core.csproj" />
  19. </ItemGroup>
  20. </Project>