blob: 4cf973818c4d5139378778e9b5ddf67affe8ec4a [file] [log] [blame]
@ECHO OFF
REM ---- Converts the solution to Visual Studio 2008 ----
PUSHD %~dp0
ECHO Microsoft Visual Studio Solution File, Format Version 10.00> Temp.sln
ECHO # Visual Studio 2008>> Temp.sln
type ProtocolBuffers.sln | FIND /V " Visual Studio " >> Temp.sln
move /Y Temp.sln ProtocolBuffers.sln
POPD