12345678910111213141516171819202122232425262728293031 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- </PropertyGroup>
- <ItemGroup>
- <None Remove="CtorParamsJsonSchema\appCtorParamsJsonSchema.json" />
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="CtorParamsJsonSchema\appCtorParamsJsonSchema.json" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\..\Framework\Edge.Core\Edge.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="doc\" />
- <Folder Include="Migrations\" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.5">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </ItemGroup>
- </Project>
|