mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 11:32:59 +00:00
34 lines
973 B
XML
34 lines
973 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AssemblyName>Esiur.Stores.EntityCore</AssemblyName>
|
|
<Authors>Ahmed Kh. Zamil</Authors>
|
|
<Company>Esiur Foundation</Company>
|
|
<Description>Esiur for Entity Framework Core</Description>
|
|
<Product>Esiur Entity Framework Extension</Product>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>Esiur.Stores.EntityCore</PackageId>
|
|
<Version>1.2.5</Version>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="EntityResource.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="EntityResource.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
|
|
<PackageReference Include="System.Collections" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Esiur\Esiur.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|