mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-16 16:02:50 +08:00
51 lines
1.7 KiB
XML
51 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Authors>FreeSql;ncc;YeXiangQin</Authors>
|
|
<Description>FreeSql 数据库实现,基于 人大金仓数据库 V008R003/V008R006 Ado.Net (Kdbndp)</Description>
|
|
<PackageProjectUrl>https://github.com/2881099/FreeSql</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/2881099/FreeSql</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageTags>FreeSql;ORM;人大金仓;金仓;Kdbndp</PackageTags>
|
|
<PackageId>$(AssemblyName)</PackageId>
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
<Title>$(AssemblyName)</Title>
|
|
<IsPackable>true</IsPackable>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<Version>3.2.833</Version>
|
|
<PackageReadmeFile>readme.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../../readme.md" Pack="true" PackagePath="\"/>
|
|
<None Include="../../logo.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="lib\Kdbndp.dll" Pack="true" PackagePath="\lib\netstandard2.0\" />
|
|
<None Include="lib\Kdbndp.dll" Pack="true" PackagePath="\lib\net461\" />
|
|
<None Include="lib/**/*.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\FreeSql\FreeSql.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Kdbndp">
|
|
<HintPath>lib\Kdbndp.dll</HintPath>
|
|
<Private>false</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
|
<DefineConstants>ns20;netstandard20</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|