Skip to content

Commit

Permalink
Remove redundant commands from build script
Browse files Browse the repository at this point in the history
  • Loading branch information
stakx committed Oct 14, 2017
1 parent 03e05c1 commit fd51023
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,12 @@
<MSBuild Projects="@(Solution)" Properties="$(CommonBuildProperties)" Targets="Clean" />
<Exec Command="rmdir $(Out) /S /Q" ContinueOnError="true" />
<Exec Command="rmdir $(PackagesPath) /S /Q" ContinueOnError="true" />
<Exec Command="rmdir src\packages /S /Q" ContinueOnError="true" />
</Target>

<Target Name="Rebuild" DependsOnTargets="Clean;Build" />

<Target Name="Build" DependsOnTargets="GitVersion">
<MSBuild Projects="@(Solution)" Properties="$(CommonBuildProperties)" />

<Exec Command="xcopy &quot;Source\bin\$(Configuration)\net45\Moq.*&quot; &quot;$(DropDirectory)lib\net45\&quot; /Y" ContinueOnError="false" />
<Exec Command="xcopy &quot;Source\bin\$(Configuration)\netstandard1.3\Moq.*&quot; &quot;$(DropDirectory)lib\netstandard1.3\&quot; /Y" ContinueOnError="false" />
</Target>

<Target Name="Test" DependsOnTargets="Build">
Expand Down

0 comments on commit fd51023

Please sign in to comment.