Skip to content

Commit d043e49

Browse files
author
Tiago Brenck
committed
adding buildAllSlns.proj back
1 parent 9d4e98c commit d043e49

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

buildAllSlns.proj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Project DefaultTargets="Build">
2+
<ItemGroup>
3+
<Solution Include="**\*.sln" />
4+
</ItemGroup>
5+
<Target Name="Build">
6+
<MSBuild Projects="@(Solution)" Targets="Build" Properties="Configuration=Release" />
7+
</Target>
8+
<Target Name="restore">
9+
<MSBuild Projects="@(Solution)" Targets="restore" />
10+
</Target>
11+
<Target Name="clean">
12+
<MSBuild Projects="@(Solution)" Targets="clean" />
13+
</Target>
14+
</Project>

0 commit comments

Comments
 (0)