We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4e98c commit d043e49Copy full SHA for d043e49
buildAllSlns.proj
@@ -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
11
+ <Target Name="clean">
12
+ <MSBuild Projects="@(Solution)" Targets="clean" />
13
14
+</Project>
0 commit comments