mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-05-04 16:12:50 +08:00

- 增加 FreeSql.Extensions.EFCoreModelBuilder 扩展库,现实与 EFCore 实体共存; - 增加 FreeSql.RESTful.Demo 示例项目;
22 lines
745 B
XML
22 lines
745 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Version>0.0.12</Version>
|
|
<Authors>FreeSql</Authors>
|
|
<Product>FreeSql</Product>
|
|
<Description>FreeSql ICodeFirst 扩展库,现实从 EFCore FluentAPI/Attribute 读取,从而做到无缝接入已使用 EFCore 项目开发。</Description>
|
|
<PackageProjectUrl>https://github.com/2881099/FreeSql</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/2881099/FreeSql</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\FreeSql\FreeSql.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|