aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/UseVS2008.bat
blob: 4cf973818c4d5139378778e9b5ddf67affe8ec4a (plain) (blame)
1
2
3
4
5
6
7
8
@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