Skip to content

Commit 9065607

Browse files
committed
Target 4.5.1, not 4.6
1 parent a266518 commit 9065607

28 files changed

Lines changed: 198 additions & 177 deletions

File tree

SharpRepository.AzureBlobRepository/SharpRepository.AzureBlobRepository.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.3;net451</TargetFrameworks>
44
<Product>SharpRepository for AzureBlob</Product>
55
<Authors>Ben Griswold, Jeff Treuting</Authors>
66
<Description>SharpRepository is a generic repository, AzureBlob implementation</Description>

SharpRepository.AzureTableRepository/SharpRepository.AzureTableRepository.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.5</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.5;net452</TargetFrameworks>
44
<Product>SharpRepository for AzureTable</Product>
55
<Authors>Ben Griswold, Jeff Treuting</Authors>
66
<Description>SharpRepository is a generic repository, Azure Table implementation</Description>

SharpRepository.CacheRepository/SharpRepository.CacheRepository.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.3;net451</TargetFrameworks>
44
<Product>SharpRepository for a Cache Repository</Product>
55
<Authors>Ben Griswold, Jeff Treuting</Authors>
66
<Description>SharpRepository is a generic repository, SharpRepository Cache Provider implementation</Description>
@@ -25,6 +25,8 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
28+
</ItemGroup>
29+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
2830
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
2931
</ItemGroup>
3032
<ItemGroup>

SharpRepository.Caching.AppFabric/SharpRepository.Caching.AppFabric.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFramework>net46</TargetFramework>
3+
<TargetFramework>net451</TargetFramework>
44
<Authors>Ben Griswold, Jeff Treuting</Authors>
55
<Description>SharpRepository is a generic repository, adds AppFabric as cache provider</Description>
66
<Summary>Written in C#, includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits!</Summary>

SharpRepository.Caching.Memcached/SharpRepository.Caching.Memcached.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFramework>net46</TargetFramework>
3+
<TargetFramework>net451</TargetFramework>
44
<Authors>Ben Griswold, Jeff Treuting</Authors>
55
<Description>SharpRepository is a generic repository, add memcached as caching provider</Description>
66
<Summary>Written in C#, includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits!</Summary>

SharpRepository.Caching.Redis/SharpRepository.Caching.Redis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.5;net46</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.5;net451</TargetFrameworks>
44
<Authors>Ben Griswold, Jeff Treuting</Authors>
55
<Description>SharpRepository is a generic repository, add redis as caching provider</Description>
66
<Summary>Written in C#, includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits!</Summary>

SharpRepository.Caching.WindowsAzure/SharpRepository.Caching.WindowsAzure.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFramework>net46</TargetFramework>
3+
<TargetFramework>net451</TargetFramework>
44
<Product>SharpRepository WebApi</Product>
55
<Authors>Ben Griswold, Jeff Treuting</Authors>
66
<Description>SharpRepository is a generic repository, adds windows Azure Cache as cache provider</Description>

SharpRepository.CouchDbRepository/SharpRepository.CouchDbRepository.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<RootNamespace>SharpRepository.CouchDbRepository</RootNamespace>
55
</PropertyGroup>
66
<PropertyGroup>
7-
<TargetFrameworks>netstandard1.5</TargetFrameworks>
7+
<TargetFrameworks>netstandard1.3;net451</TargetFrameworks>
88
<Product>SharpRepository for CouchDb</Product>
99
<Authors>Ben Griswold, Jeff Treuting</Authors>
1010
<Description>SharpRepository is a generic repository, implementation for CouchDb</Description>

SharpRepository.Db4oRepository/SharpRepository.Db4oRepository.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net46</TargetFramework>
3+
<TargetFramework>net451</TargetFramework>
44
<Authors>Ben Griswold, Jeff Treuting</Authors>
55
<Description>SharpRepository is a generic repository</Description>
66
<Summary>Written in C#, includes support for various relational, document and object databases including Entity Framework, RavenDB, MongoDB, CouchDB and Db4o. SharpRepository includes Xml and InMemory repository implementations as well. SharpRepository offers built-in caching options for AppFabric, memcached and the standard System.Runtime.Caching. SharpRepository also supports Specifications, FetchStrategies, Batches and Traits!</Summary>

SharpRepository.EfCoreRepository/SharpRepository.EfCoreRepository.csproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackageId>SharpRepository.EfCoreRepository</PackageId>
88
<PackageVersion>2.0.1-beta1</PackageVersion>
99
<PackageReleaseNotes>2.0.1-beta1: Configurable via appsettings.json</PackageReleaseNotes>
10-
<PackageTags>SharpRepository Repository EfRepository EntityFramework Entity Framework EF6</PackageTags>
10+
<PackageTags>SharpRepository Repository EfCoreRepository EntityFrameworkCore Entity Framework Core 2</PackageTags>
1111
<PackageIconUrl>https://user-images.githubusercontent.com/6349515/28491142-7b6350c4-6eeb-11e7-9c5b-e3b8ef1e73b8.png</PackageIconUrl>
1212
<PackageProjectUrl>https://github.com/SharpRepository/SharpRepository</PackageProjectUrl>
1313
<PackageLicenseUrl>https://raw.githubusercontent.com/SharpRepository/SharpRepository/master/license.txt</PackageLicenseUrl>
@@ -17,18 +17,20 @@
1717
<Version>2.0.1-beta1</Version>
1818
</PropertyGroup>
1919
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
20-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
20+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.3" />
2121
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.2" />
2222
</ItemGroup>
2323
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
2424
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0" />
2525
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
2626
</ItemGroup>
27-
<ItemGroup>
28-
<PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
27+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3' Or '$(TargetFramework)' == 'netstandard2.0'">
2928
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
3029
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.0" />
3130
</ItemGroup>
31+
<ItemGroup>
32+
<PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
33+
</ItemGroup>
3234
<ItemGroup>
3335
<ProjectReference Include="..\SharpRepository.Repository\SharpRepository.Repository.csproj" />
3436
</ItemGroup>

0 commit comments

Comments
 (0)