Added Rebuild target.

This commit is contained in:
the_fiddler 2010-10-04 21:28:58 +00:00
parent 5bf9631f7b
commit 173aa0fb1b
2 changed files with 8 additions and 0 deletions

View file

@ -48,4 +48,8 @@
<RemoveDir Directories="$(OutputPath)" Condition="'$(OS)' == 'Windows_NT'" />
<Exec Command="rm -rf $(OutputPath)" Condition="'$(OS)' != 'Windows_NT'" />
</Target>
<Target Name="Rebuild">
<CallTarget Targets="Clean" />
<CallTarget Targets="Build" />
</Target>
</Project>

View file

@ -38,4 +38,8 @@
<Exec Command="rm .\opentk.exe" Condition="'$(OS)' != 'Windows_NT'" />
<Exec Command="rm ..\..\opentk-1.0.*.exe" Condition="'$(OS)' != 'Windows_NT'" />
</Target>
<Target Name="Rebuild">
<CallTarget Targets="Clean" />
<CallTarget Targets="Build" />
</Target>
</Project>