NetCoreTest.csproj 815 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net5.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. <ProjectReference Include="..\Masuit.Tools.Excel\Masuit.Tools.Excel.csproj" />
  20. </ItemGroup>
  21. </Project>