Allow paths containing spaces

This commit is contained in:
Luke Fitzgerald 2012-04-26 01:34:28 +01:00
parent d2616beba3
commit da0c7f572e
7 changed files with 8 additions and 8 deletions

View file

@ -86,6 +86,6 @@
</Target>
-->
<PropertyGroup>
<PreBuildEvent>$(ProjectDir)transform_tt.cmd</PreBuildEvent>
<PreBuildEvent>"$(ProjectDir)transform_tt.cmd"</PreBuildEvent>
</PropertyGroup>
</Project>

View file

@ -163,6 +163,6 @@
<VisualStudio />
</ProjectExtensions>
<PropertyGroup>
<PreBuildEvent>$(ProjectDir)transform_tt.cmd</PreBuildEvent>
<PreBuildEvent>"$(ProjectDir)transform_tt.cmd"</PreBuildEvent>
</PropertyGroup>
</Project>

View file

@ -177,7 +177,7 @@
</None>
</ItemGroup>
<PropertyGroup>
<PreBuildEvent>$(ProjectDir)transform_tt.cmd</PreBuildEvent>
<PreBuildEvent>"$(ProjectDir)transform_tt.cmd"</PreBuildEvent>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="..\..\data\about.png">

View file

@ -11,8 +11,8 @@ set wixBinDir=%WIX%\bin
if not exist ..\..\bin mkdir ..\..\bin
copy ..\..\data\icons\sparkleshare.ico ..\..\bin\
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="AnyCPU" %~dp0\tools\gettext-cs-utils\Gettext.CsUtils\Core\Gettext.Cs\Gettext.Cs.csproj
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" %~dp0\SparkleShare.sln
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="AnyCPU" "%~dp0\tools\gettext-cs-utils\Gettext.CsUtils\Core\Gettext.Cs\Gettext.Cs.csproj"
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" "%~dp0\SparkleShare.sln"
if "%1"=="installer" (
if exist "%wixBinDir%" (

View file

@ -2,4 +2,4 @@
set WinDirNet=%WinDir%\Microsoft.NET\Framework
set msbuild="%WinDirNet%\v4.0.30319\msbuild.exe"
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" %~dp0\TextTemplating.sln
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" "%~dp0\TextTemplating.sln"

View file

@ -3,4 +3,4 @@ set WinDirNet=%WinDir%\Microsoft.NET\Framework
set msbuild="%WinDirNet%\v3.5\msbuild.exe"
if not exist %msbuild% set msbuild="%WinDirNet%\v4.0.30319\msbuild.exe"
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" %~dp0\xslt.sln
%msbuild% /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU" "%~dp0\xslt.sln"

View file

@ -5,7 +5,7 @@ set xslt=..\..\SparkleShare\Windows\tools\xslt\bin\release\xslt.exe
if not exist %xslt% call ..\..\SparkleShare\Windows\tools\xslt\build.cmd
for %%a in (*.xml.in) do (
%xslt% parse_plugins.xsl %%a %%~dpna
%xslt% parse_plugins.xsl "%%a" "%%~dpna"
)
popd