Click here to Skip to main content
15,909,051 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
1>------ Build started: Project: steam_dll, Configuration: Normal Win32 ------
1> 'svn' is not recognized as an internal or external command,
1> operable program or batch file.
1> Current revision is
1> The syntax of the command is incorrect.
1> Last revision is 0
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073: The command "pushd "C:\Users\Admistrator\Desktop\clientdll\\dependencies\tools"
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073: call "C:\Users\Admistrator\Desktop\clientdll\\dependencies\tools\svnrev.cmd"
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073: popd
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073:
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppCommon.targets(103,5): error MSB3073: :VCEnd" exited with code 255.

========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Posted

Seems like subversion path error.

The first thing I would check is your path. The message your are receiving is an indication that the SVN command line utility is not located where Windows can find it (i.e. not within the PATH). A good way to find out where the utility is to open a command prompt on the root (i.e. C:\) and run the following command:
dir svn.* /s
This will find you every single file beginning "svn." (e.g. svn.com, svn.exe, svn.txt, etc.) is on your hard drive. Once you find the location of the utility ensure *THAT* folder is within your PATH environmental variable because, obviously, it's not in C:\Subversion\bin.

Ref: http://www.svnforum.org/threads/37914-svn-is-not-recognized-as-an-internal-or-external-command[^]
 
Share this answer
 
SQL
update tortoise svn to its last version

needed to redownload source with new version
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900