diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 574b1b7..469919b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: variables: BuildConfiguration: Release - DotNetCoreVersion: 6.0.101 + DotNetCoreVersion: 6.0.200 stages: - stage: BuildAndTest diff --git a/global.json b/global.json index ed3fdea..403171d 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "6.0.100" + "version": "6.0.200" } } \ No newline at end of file diff --git a/src/Fluxera.Entity/Entity.cs b/src/Fluxera.Entity/Entity.cs index 1296c1b..c584f7b 100644 --- a/src/Fluxera.Entity/Entity.cs +++ b/src/Fluxera.Entity/Entity.cs @@ -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; @@ -45,13 +44,11 @@ protected Entity() /// /// The domain events of this entity. /// - [Ignore] public ICollection DomainEvents { get; } = new List(); /// /// Gets a flag, if the entity instance is transient (not stored to the storage). /// - [Ignore] public virtual bool IsTransient { get diff --git a/src/Fluxera.Entity/Fluxera.Entity.csproj b/src/Fluxera.Entity/Fluxera.Entity.csproj index 161d691..612d99b 100644 --- a/src/Fluxera.Entity/Fluxera.Entity.csproj +++ b/src/Fluxera.Entity/Fluxera.Entity.csproj @@ -22,15 +22,15 @@ - - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive + \ No newline at end of file diff --git a/tests/Fluxera.Entity.UnitTests/Fluxera.Entity.UnitTests.csproj b/tests/Fluxera.Entity.UnitTests/Fluxera.Entity.UnitTests.csproj index cbcdf77..e6368e2 100644 --- a/tests/Fluxera.Entity.UnitTests/Fluxera.Entity.UnitTests.csproj +++ b/tests/Fluxera.Entity.UnitTests/Fluxera.Entity.UnitTests.csproj @@ -8,11 +8,14 @@ - - + + - - + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive +