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
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ private ITypeResolver<IProjection> 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))
Expand Down
2 changes: 1 addition & 1 deletion src/__SolutionItems/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down
Loading