Csproj after clean up and simplifying
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>netcoreapp2.2</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<Content Include="**/*.dothtml;**/*.dotmaster;**/*.dotcontrol" Exclude="obj/**/*.*;bin/**/*.*" CopyToPublishDirectory="Always" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Remove="dotvvm_serialized_config.json.tmp" /> | |
<None Remove="**/*.dothtml;**/*.dotmaster;**/*.dotcontrol" /> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" /> | |
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" /> | |
<PackageReference Include="DotVVM.AspNetCore" Version="2.2.0.2" /> | |
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" /> | |
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" /> | |
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.0.0" /> | |
</ItemGroup> | |
<ItemGroup> | |
<EmbeddedResource Update="Resources\Texts.resx"> | |
<Generator>PublicResXFileCodeGenerator</Generator> | |
</EmbeddedResource> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment