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