22 lines
473 B
XML
22 lines
473 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Egw.Core.Razor.Comp\Egw.Core.Razor.Comp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|