Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3859 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
6 changed files with 55 additions and 17 deletions
@ -0,0 +1,12 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTarget="Build"> |
||||||
|
<PropertyGroup> |
||||||
|
<PrepareForRunDependsOn>$(PrepareForRunDependsOn);MyPostBuildTarget</PrepareForRunDependsOn> |
||||||
|
</PropertyGroup> |
||||||
|
<ItemGroup> |
||||||
|
<CopyHook Include="..\..\bin\Hook*" /> |
||||||
|
</ItemGroup> |
||||||
|
<Target Name="MyPostBuildTarget"> |
||||||
|
<Copy SourceFiles="@(CopyHook)" DestinationFolder="$(OutputPath)" /> |
||||||
|
</Target> |
||||||
|
</Project> |
||||||
@ -1,2 +1,4 @@ |
|||||||
%windir%\microsoft.net\framework\v3.5\msbuild /t:clean SharpDevelop.sln "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
%windir%\microsoft.net\framework\v3.5\msbuild /t:clean SharpDevelop.sln "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
||||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@IF %ERRORLEVEL% NEQ 0 PAUSE |
||||||
|
%windir%\microsoft.net\framework\v3.5\msbuild /t:clean AddIns\Misc\Profiler\AutomatedBuild.proj |
||||||
|
@IF %ERRORLEVEL% NEQ 0 PAUSE |
||||||
@ -1,2 +1,8 @@ |
|||||||
%windir%\microsoft.net\framework\v3.5\msbuild SharpDevelop.sln "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
%windir%\microsoft.net\framework\v3.5\msbuild SharpDevelop.sln /p:Configuration=Debug "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
||||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@IF %ERRORLEVEL% NEQ 0 GOTO err |
||||||
|
%windir%\microsoft.net\framework\v3.5\msbuild AddIns\Misc\Profiler\AutomatedBuild.proj /p:Configuration=Debug |
||||||
|
@IF %ERRORLEVEL% NEQ 0 GOTO err |
||||||
|
@exit /B 0 |
||||||
|
:err |
||||||
|
@PAUSE |
||||||
|
@exit /B 1 |
||||||
@ -1,2 +1,8 @@ |
|||||||
%windir%\microsoft.net\framework\v3.5\msbuild /property:Configuration=Release SharpDevelop.sln "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
%windir%\microsoft.net\framework\v3.5\msbuild /property:Configuration=Release SharpDevelop.sln "/p:BooBinPath=%CD%\AddIns\BackendBindings\Boo\RequiredLibraries" "/p:FSharpBuildTasksPath=%CD%\AddIns\BackendBindings\FSharp\RequiredLibraries" |
||||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@IF %ERRORLEVEL% NEQ 0 GOTO err |
||||||
|
%windir%\microsoft.net\framework\v3.5\msbuild AddIns\Misc\Profiler\AutomatedBuild.proj /p:Configuration=Release |
||||||
|
@IF %ERRORLEVEL% NEQ 0 GOTO err |
||||||
|
@exit /B 0 |
||||||
|
:err |
||||||
|
@PAUSE |
||||||
|
@exit /B 1 |
||||||
Loading…
Reference in new issue