Skip to content

Commit

Permalink
Updated packages. (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgernand authored Feb 17, 2022
1 parent 99f518b commit 698c89f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ trigger:

variables:
BuildConfiguration: Release
DotNetCoreVersion: 6.0.101
DotNetCoreVersion: 6.0.200

stages:
- stage: BuildAndTest
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "6.0.100"
"version": "6.0.200"
}
}
3 changes: 0 additions & 3 deletions src/Fluxera.Entity/Entity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Runtime.CompilerServices;
using Fluxera.ComponentModel.Annotations;
using Fluxera.Entity.DomainEvents;
using JetBrains.Annotations;

Expand Down Expand Up @@ -45,13 +44,11 @@ protected Entity()
/// <summary>
/// The domain events of this entity.
/// </summary>
[Ignore]
public ICollection<IDomainEvent> DomainEvents { get; } = new List<IDomainEvent>();

/// <summary>
/// Gets a flag, if the entity instance is transient (not stored to the storage).
/// </summary>
[Ignore]
public virtual bool IsTransient
{
get
Expand Down
6 changes: 3 additions & 3 deletions src/Fluxera.Entity/Fluxera.Entity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Fluxera.ComponentModel.Annotations" Version="6.0.5" />
<PackageReference Include="Fluxera.Guards" Version="6.0.7" />
<PackageReference Include="GitVersion.MsBuild" Version="5.8.1">
<PackageReference Include="Fluxera.Guards" Version="6.0.10" />
<PackageReference Include="GitVersion.MsBuild" Version="5.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>

</Project>
11 changes: 7 additions & 4 deletions tests/Fluxera.Entity.UnitTests/Fluxera.Entity.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Include="FluentAssertions" Version="6.5.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
<PackageReference Include="coverlet.collector" Version="3.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 698c89f

Please sign in to comment.