Skip to content

Commit

Permalink
Merge branch 'introduce-directory-build-props-file' of github.com:nms…
Browse files Browse the repository at this point in the history
…hd/backbone into introduce-directory-build-props-file
  • Loading branch information
tnotheis committed Oct 23, 2023
2 parents fbadc9b + 2809942 commit 9f13eb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions Backbone.Tests.ArchUnit/BackboneArchitecture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ private static Assembly[] GetSolutionAssemblies()
var assemblies = Directory
.GetFiles(AppDomain.CurrentDomain.BaseDirectory, "*.dll")
.Select(x => Assembly.Load(AssemblyName.GetAssemblyName(x)))
.Where(x =>
x.FullName.StartsWith("Backbone") ||
x.FullName.StartsWith("BuildingBlocks"));
.Where(x => x.FullName.StartsWith("Backbone"));
return assemblies.ToArray();
}
}
1 change: 1 addition & 0 deletions Modules/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<PropertyGroup>
<AssemblyName>Backbone.Modules.$(MSBuildProjectName)</AssemblyName>
</PropertyGroup>
Expand Down

0 comments on commit 9f13eb1

Please sign in to comment.