Skip to content

Commit

Permalink
Update version of Services package.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Sneed committed Feb 15, 2018
1 parent 69ed1f8 commit a2a5744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion URF.Core.EF.Tests/Models/MyProductComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace URF.Core.EF.Tests.Models
internal class MyProductComparer : IEqualityComparer<MyProduct>
{
public bool Equals(MyProduct x, MyProduct y)
=> x.Id == y.Id && (string.Compare(x.Name, y.Name, StringComparison.InvariantCulture)) && x.Price == y.Price && x.Category == y.Category;
=> x.Id == y.Id && (string.Compare(x.Name, y.Name, StringComparison.InvariantCulture) == 0) && x.Price == y.Price && x.Category == y.Category;

public int GetHashCode(MyProduct x)
=> x.Id.GetHashCode()
Expand Down
6 changes: 3 additions & 3 deletions URF.Core.Services/URF.Core.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta</Version>
<Authors>Long Le, Tony Sneed</Authors>
<Company>Long Le, Tony Sneed</Company>
<Description>This official URF framework minimizes the surface area of your ORM technlogy from disseminating in your application. Framework provides an elegant way to implement a reusable and extensible Unit of Work and Repository pattern.</Description>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
<PackageIconUrl>https://user-images.githubusercontent.com/2836367/36162252-7ec8dd8a-10ab-11e8-936c-11bbb77ef574.png</PackageIconUrl>
<RepositoryUrl>https://github.com/urfnet/URF.Core</RepositoryUrl>
<Title>URF - Unit of Work and Repositories Framework for .NET Standard and .NET Core (Official): Trackable Entities Core</Title>
<Description>This official URF framework minimizes the surface area of your ORM technlogy from disseminating in your application. Framework provides an elegant way to implement a reusable and extensible Unit of Work and Repository pattern.</Description>
<PackageTags>repository unitofwork service patterns</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
Expand Down

0 comments on commit a2a5744

Please sign in to comment.