diff options
| author | ScottIsAFool <scottisafool@live.co.uk> | 2013-04-05 20:00:40 +0100 |
|---|---|---|
| committer | ScottIsAFool <scottisafool@live.co.uk> | 2013-04-05 20:00:48 +0100 |
| commit | e876e4b95a9e3de87cb992a2a73d4c5be50eaea0 (patch) | |
| tree | 848d426dd017e84ad8c003bef798793042a9756c | |
| parent | 7c3f257581344aadf6f697f3159becbd613db7e2 (diff) | |
Solution wouldn't build if path had spaces
The solution wouldn't build if you went into release and had spaces in
your solution directory.
| -rw-r--r-- | MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj index 808b8637a..a0268a7c7 100644 --- a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj +++ b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj @@ -436,6 +436,6 @@ del "$(SolutionDir)..\Deploy\MBServer.zip" <GetAssemblyIdentity AssemblyFiles="$(TargetPath)"> <Output TaskParameter="Assemblies" ItemName="CurrentAssembly" /> </GetAssemblyIdentity> - <Exec Command="copy $(SolutionDir)..\Deploy\MBServer.zip $(SolutionDir)..\Deploy\MBServer_%(CurrentAssembly.Version).zip /y" Condition="'$(ConfigurationName)' == 'Release'" /> + <Exec Command="copy "$(SolutionDir)..\Deploy\MBServer.zip" "$(SolutionDir)..\Deploy\MBServer_%(CurrentAssembly.Version).zip" /y" Condition="'$(ConfigurationName)' == 'Release'" /> </Target> </Project>
\ No newline at end of file |
