1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.0</TargetFramework>
- <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
- <RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>
- <LangVersion>8.0</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <CodeAnalysisRuleSet />
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <CodeAnalysisRuleSet />
- </PropertyGroup>
- <ItemGroup>
- <Folder Include="wwwroot\" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Masuit.Tools.Core\Masuit.Tools.Core.csproj" />
- </ItemGroup>
- </Project>
|