Skip to content

Commit 0526ef4

Browse files
committed
Exclude non csproj
1 parent 2a8440c commit 0526ef4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/repo.targets

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,11 @@
296296
</PropertyGroup>
297297

298298
<Target Name="Helix" DependsOnTargets="GetTestAssemblies;Restore">
299+
<ItemGroup>
300+
<CsProjects Include="@(ProjectToBuild)" Condition="'%(Extension)' == '.csproj'" />
301+
</ItemGroup>
299302
<PropertyGroup>
300-
<HelixTestProjects>@(ProjectToBuild)</HelixTestProjects>
303+
<HelixTestProjects>@(CsProjects)</HelixTestProjects>
301304
</PropertyGroup>
302305
<Message Text="Projects=$(HelixTestProjects)" />
303306
<MSBuild Projects="$(MSBuildThisFileDirectory)..\test\helix.proj"

0 commit comments

Comments
 (0)