12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DocumentationFile>bin\Debug\netcoreapp2.1\netcoreapp2.1\DllUfpBll.xml</DocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.1.0" />
- <PackageReference Include="NLog" Version="4.7.10" />
- <PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
- <PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\DllEapCommon\DllEapCommon.csproj" />
- <ProjectReference Include="..\..\DllEapEntity\DllEapEntity.csproj" />
- <ProjectReference Include="..\DllUfpDal\DllUfpDal.csproj" />
- <ProjectReference Include="..\DllUfpEntity\DllUfpEntity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Cksoft.Data">
- <HintPath>..\..\Dll\Cksoft.Data.dll</HintPath>
- </Reference>
- <Reference Include="Cksoft.Data.Dapper">
- <HintPath>..\..\Dll\Cksoft.Data.Dapper.dll</HintPath>
- </Reference>
- <Reference Include="CkSoft.Data.Repository">
- <HintPath>..\..\Dll\CkSoft.Data.Repository.dll</HintPath>
- </Reference>
- <Reference Include="Cksoft.Unity">
- <HintPath>..\..\Dll\Cksoft.Unity.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|