Browse Source

Moved pdb2mdb script out of the dependencies folder

BearishSun 9 years ago
parent
commit
f820b9de33

+ 3 - 0
Scripts/pdb2mdb.bat

@@ -0,0 +1,3 @@
+IF EXIST "%MONO_INSTALL_DIR%\bin\pdb2mdb.bat" (
+ IF %2 == "Debug" CALL "%MONO_INSTALL_DIR%\bin\pdb2mdb.bat" %1
+)

+ 1 - 1
Source/MBansheeEditor/MBansheeEditor.csproj

@@ -205,7 +205,7 @@
   <ItemGroup />
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <PropertyGroup>
-    <PostBuildEvent>$(SolutionDir)..\..\Dependencies\tools\pdb2mdb.bat "$(TargetPath)" "$(ConfigurationName)"</PostBuildEvent>
+    <PostBuildEvent>$(SolutionDir)..\..\Scripts\pdb2mdb.bat "$(TargetPath)" "$(ConfigurationName)"</PostBuildEvent>
   </PropertyGroup>
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.

+ 1 - 1
Source/MBansheeEngine/MBansheeEngine.csproj

@@ -204,7 +204,7 @@
   <ItemGroup />
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <PropertyGroup>
-    <PostBuildEvent>$(SolutionDir)..\..\Dependencies\tools\pdb2mdb.bat "$(TargetPath)" "$(ConfigurationName)"</PostBuildEvent>
+    <PostBuildEvent>$(SolutionDir)..\..\Scripts\pdb2mdb.bat "$(TargetPath)" "$(ConfigurationName)"</PostBuildEvent>
   </PropertyGroup>
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.