52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Configurations>Debug;Release;DebugLocal</Configurations>
|
|
<TargetFrameworks>netcoreapp3.1;net6.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)' == 'netcoreapp3.1'">
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.29" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="3.1.29" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.29" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.4.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|