From e256b9b03e46e4fec588dd7b2804a9e8ac4bb04c Mon Sep 17 00:00:00 2001 From: "Atsuta, Ivan" Date: Wed, 3 Jun 2026 11:22:50 +0200 Subject: [PATCH] move-ExpandPathProjectionSource-up --- .../Lambda/ProjectionLambdaEnvironment.cs | 4 ++-- src/__SolutionItems/CommonAssemblyInfo.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Projection/Framework.Projection.Runtime/Lambda/ProjectionLambdaEnvironment.cs b/src/Projection/Framework.Projection.Runtime/Lambda/ProjectionLambdaEnvironment.cs index c94829a56..300d75d9a 100644 --- a/src/Projection/Framework.Projection.Runtime/Lambda/ProjectionLambdaEnvironment.cs +++ b/src/Projection/Framework.Projection.Runtime/Lambda/ProjectionLambdaEnvironment.cs @@ -42,8 +42,8 @@ private ITypeResolver CreateProjectionTypeResolver(IProjectionSourc this.projections = [ - ..projectionSource.Pipe(v => new ExpandPathProjectionSource(this, v)) - .Pipe(v => new LinkAllProjectionSource(v)) + ..projectionSource.Pipe(v => new LinkAllProjectionSource(v)) + .Pipe(v => new ExpandPathProjectionSource(this, v)) .Pipe(v => new VerifyUniqueProjectionSource(v)) .Pipe(v => this.UseDependencySecurity ? (IProjectionSource)v : new CreateSecurityNodesProjectionSource(this, v)) .Pipe(v => new CreateAutoNodesProjectionSource(this, v)) diff --git a/src/__SolutionItems/CommonAssemblyInfo.cs b/src/__SolutionItems/CommonAssemblyInfo.cs index 5f39fae91..1d32b0082 100644 --- a/src/__SolutionItems/CommonAssemblyInfo.cs +++ b/src/__SolutionItems/CommonAssemblyInfo.cs @@ -4,7 +4,7 @@ [assembly: AssemblyCompany("Luxoft")] [assembly: AssemblyCopyright("Copyright © Luxoft 2009-2026")] -[assembly: AssemblyVersion("27.2.7.0")] +[assembly: AssemblyVersion("27.2.8.0")] #if DEBUG [assembly: AssemblyConfiguration("Debug")]