-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRelationshipsExtendedBase.csproj
44 lines (38 loc) · 1.77 KB
/
RelationshipsExtendedBase.csproj
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
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>RelationshipsExtendedBase</AssemblyName>
<RootNamespace>RelationshipsExtended</RootNamespace>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Version>13.0.10</Version>
<Description>This is the Base module that contains libraries and interfaces used both in the Admin and MVC Site.</Description>
<Authors>Trevor Fayas</Authors>
<Company>Heartland Business Systems</Company>
<Product>RelationshipsExtended</Product>
<RepositoryUrl>https://github.com/KenticoDevTrev/RelationshipsExtended</RepositoryUrl>
<PackageIcon>hbs-favicon-96x96.png</PackageIcon>
<PackageProjectUrl>https://github.com/KenticoDevTrev/RelationshipsExtended</PackageProjectUrl>
<RepositoryType>GIT</RepositoryType>
<PackageTags>Kentico, Xperience, Relationships</PackageTags>
<Copyright>Heartland Business Systems 2020</Copyright>
<PackageId>RelationshipsExtended.Base</PackageId>
<PackageReleaseNotes>Fixed queries that were not properly closed, which lead to Open DataReader errors.
Added some extension methods to make type casting to object or IEnumerable<object> easier
</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIconUrl>https://www.kentico.com/icons/icon-48x48.png</PackageIconUrl>
<FileVersion>13.0.10.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Kentico.Xperience.Libraries" Version="13.0.13" />
</ItemGroup>
<ItemGroup>
<Folder Include="Classes\QueryExtensions\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\hbs-favicon-96x96.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>