Skip to content

Commit

Permalink
URF.Core rc1 release, with bug fixes on state sync after refactor of …
Browse files Browse the repository at this point in the history
…TrackableRespository.
  • Loading branch information
lelong37 committed Mar 16, 2018
1 parent 80d80fb commit 74bed7b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion URF.Core.Abstractions/URF.Core.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down
4 changes: 2 additions & 2 deletions URF.Core.EF.Trackable/TrackableRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ public override void Insert(TEntity item)
public override void Update(TEntity item)
{
item.TrackingState = TrackingState.Modified;
base.Insert(item);
base.Update(item);
}

public override void Delete(TEntity item)
{
item.TrackingState = TrackingState.Deleted;
base.Insert(item);
base.Delete(item);
}

public override async Task<bool> DeleteAsync(object[] keyValues, CancellationToken cancellationToken = default)
Expand Down
2 changes: 1 addition & 1 deletion URF.Core.EF.Trackable/URF.Core.EF.Trackable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion URF.Core.EF/URF.Core.EF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down
2 changes: 1 addition & 1 deletion URF.Core.Services/URF.Core.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Version>1.0.0-beta3</Version>
<Version>1.0.0-rc1</Version>
<Authors>Long Le, Tony Sneed</Authors>
<PackageLicenseUrl>https://github.com/urfnet/URF.Core/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/urfnet/URF.Core</PackageProjectUrl>
Expand Down

0 comments on commit 74bed7b

Please sign in to comment.