46 lines
1.9 KiB
XML
46 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Configurations>Debug;Release;DebugLocal</Configurations>
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
|
<LangVersion>10.0</LangVersion>
|
|
|
|
<AssemblyName>AMWD.Common.EntityFrameworkCore</AssemblyName>
|
|
<RootNamespace>AMWD.Common.EntityFrameworkCore</RootNamespace>
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>AMWD.Common.EntityFrameworkCore</PackageId>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
|
|
<Product>AM.WD Common Library for EntityFramework Core</Product>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(GITLAB_CI)' == 'true'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(GITLAB_CI)' == 'true'">
|
|
<SourceLinkGitLabHost Include="git.am-wd.de" Version="$(CI_SERVER_VERSION)" />
|
|
<PackageReference Include="Microsoft.SourceLink.GitLab" Version="1.1.1" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../icon.png" Pack="true" PackagePath="/" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.20" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.20" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|