NetCoreTest.csproj 658 B

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