-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNop.Services.csproj
More file actions
42 lines (36 loc) · 1.73 KB
/
Nop.Services.csproj
File metadata and controls
42 lines (36 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<Copyright>Copyright © Nop Solutions, Ltd</Copyright>
<Company>Nop Solutions, Ltd</Company>
<Authors>Nop Solutions, Ltd</Authors>
<Version>4.1.0.0</Version>
<Description>This project contains a set of core services, business logic, validations or calculations related with the data, if needed. Some people call it Business Access Layer (BAL).</Description>
<PackageLicenseUrl>http://www.nopcommerce.com/licensev3.aspx</PackageLicenseUrl>
<PackageProjectUrl>http://www.nopcommerce.com/</PackageProjectUrl>
<RepositoryUrl>https://github.com/nopSolutions/nopCommerce</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EPPlus" Version="4.5.2.1" />
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="1.4.4" />
<PackageReference Include="MaxMind.GeoIP2" Version="3.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0004" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.3.0" />
<PackageReference Include="System.ServiceModel.Http" Version="4.5.3" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nop.Core\Nop.Core.csproj" />
<ProjectReference Include="..\Nop.Data\Nop.Data.csproj" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services" />
</ItemGroup>
<ItemGroup>
<Compile Update="Security\AclService.cs">
<ExcludeFromSourceAnalysis>False</ExcludeFromSourceAnalysis>
<ExcludeFromStyleCop>False</ExcludeFromStyleCop>
</Compile>
</ItemGroup>
</Project>