Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -245,3 +245,4 @@ ModelManifest.xml
# Javascript files and source maps
*.js.map
*.js
/.github/copilot-instructions.md
3 changes: 1 addition & 2 deletions src/Database/Framework.Database.NHibernate.Legacy/NHibDal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using CommonFramework;
using CommonFramework.ExpressionEvaluate;

using Framework.Application.Domain;
using Framework.Core;
using Framework.Database.Domain;
using Framework.Database.NHibernate.DAL.Revisions;
Expand All @@ -22,7 +21,7 @@
namespace Framework.Database.NHibernate;

public class NHibDal<TDomainObject, TIdent>(INHibSession session, IAsyncDal<TDomainObject, TIdent> asyncDal) : IDAL<TDomainObject, TIdent>
where TDomainObject : class, IIdentityObject<TIdent>
where TDomainObject : class
{
private static readonly LambdaCompileCache LambdaCompileCache = new(LambdaCompileMode.None);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Framework.DependencyInjection\Framework.DependencyInjection.csproj" />
<ProjectReference Include="..\Framework.Database.NHibernate.Runtime\Framework.Database.NHibernate.Runtime.csproj" />

<ProjectReference Include="..\..\Infrastructure\Framework.Infrastructure.Abstractions\Framework.Infrastructure.Abstractions.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>false</CentralPackageTransitivePinningEnabled>
<IvAt>3.3.1.0</IvAt>
<IvAt>3.3.2.0</IvAt>
<BssPlatform>[1.6.2]</BssPlatform>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Application\Framework.Application\Framework.Application.csproj" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

<ItemGroup>
<ProjectReference Include="..\..\Application\Framework.Application\Framework.Application.csproj" />
<ProjectReference Include="..\..\Database\Framework.Database.Runtime\Framework.Database.Runtime.csproj" />
<ProjectReference Include="..\..\Database\Framework.Database\Framework.Database.csproj" />
<ProjectReference Include="..\Framework.Infrastructure.Abstractions\Framework.Infrastructure.Abstractions.csproj" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ protected override IEnumerable<ExtendedAttributeSource> GetExtendedAttributeSour
.Add<BusinessRole>(tb =>
tb.AddAttribute(new BLLViewRoleAttribute())
.AddProperty(v => v.Permissions, pb => pb.AddAttribute(new CustomSerializationAttribute(CustomSerializationMode.Ignore)))
.AddProperty(v => v.Description, pb => pb.AddAttribute(new CustomSerializationAttribute(CustomSerializationMode.ReadOnly)))
)
.AddProperty(v => v.Description, pb => pb.AddAttribute(new CustomSerializationAttribute(CustomSerializationMode.ReadOnly))))

.Add<Principal>(tb =>
tb.AddAttribute(new BLLViewRoleAttribute())
Expand Down
6 changes: 3 additions & 3 deletions src/__SolutionItems/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[assembly: AssemblyCompany("Luxoft")]
[assembly: AssemblyCopyright("Copyright © Luxoft 2009-2026")]

[assembly: AssemblyVersion("27.0.2.0")]
[assembly: AssemblyFileVersion("27.0.2.0")]
[assembly: AssemblyInformationalVersion("27.0.2.0")]
[assembly: AssemblyVersion("27.0.3.0")]
[assembly: AssemblyFileVersion("27.0.3.0")]
[assembly: AssemblyInformationalVersion("27.0.3.0")]

#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
Expand Down
Loading