|
From: <che...@us...> - 2007-05-27 11:20:29
|
Revision: 484
http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=484&view=rev
Author: chef_koch
Date: 2007-05-27 04:20:27 -0700 (Sun, 27 May 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/plugins/My Minesweeper/Source/MyMinesweeper/MyMinesweeper.csproj
Added Paths:
-----------
trunk/plugins/My Minesweeper/Source/postbuild.bat
Modified: trunk/plugins/My Minesweeper/Source/MyMinesweeper/MyMinesweeper.csproj
===================================================================
--- trunk/plugins/My Minesweeper/Source/MyMinesweeper/MyMinesweeper.csproj 2007-05-27 11:15:26 UTC (rev 483)
+++ trunk/plugins/My Minesweeper/Source/MyMinesweeper/MyMinesweeper.csproj 2007-05-27 11:20:27 UTC (rev 484)
@@ -14,7 +14,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
- <OutputPath>..\..\..\..\MediaPortal\xbmc\bin\Debug\plugins\windows\</OutputPath>
+ <OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -65,4 +65,8 @@
<Target Name="AfterBuild">
</Target>
-->
+ <PropertyGroup>
+ <PostBuildEvent>cd "$(SolutionDir)"
+call postbuild.bat "$(TargetPath)" "$(TargetFileName)"</PostBuildEvent>
+ </PropertyGroup>
</Project>
\ No newline at end of file
Added: trunk/plugins/My Minesweeper/Source/postbuild.bat
===================================================================
--- trunk/plugins/My Minesweeper/Source/postbuild.bat (rev 0)
+++ trunk/plugins/My Minesweeper/Source/postbuild.bat 2007-05-27 11:20:27 UTC (rev 484)
@@ -0,0 +1,8 @@
+set TargetPath=%1
+set TargetFile=%2
+
+rem echo %TargetPath% > log.txt
+rem echo %TargetFile% >> log.txt
+
+copy %TargetPath% "%ProgramFiles%\Team MediaPortal\MediaPortal\plugins\Windows\*"
+copy %TargetPath% "..\Release\plugins\Windows\*"
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|