123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>netcoreapp2.1</TargetFramework>
- <UserSecretsId>aa0e9bf1-6bac-4c97-a914-7dd2f666831a</UserSecretsId>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore" Version="2.1.0" />
- <PackageReference Include="Microsoft.AspNetCore.CookiePolicy" Version="2.1.0" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.0" />
- <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
- <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DllEapBll\DllEapBll.csproj" />
- <ProjectReference Include="..\DllEapEntity\DllEapEntity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Cksoft.Data">
- <HintPath>..\Dll\Cksoft.Data.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>
|