c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: exited with code 9009
-
Hi all, I converted one web application(Vb.Net) created in VS2005 Framework 2.0 to VS2008 framework 3.5. (This application is using Reportviewer8.0) After convertion I cant build the application,always getting the below error.I use MSBuild to build the application,got the same result.The details of the versions I am using is given below Visual Studio 2008 Version 9.0.30729.1 SP MS Dotnet Framework version 3.5 SP1 OS windows XP cd ..\..\..\..\ DeployMyProj.bat 'DeployMyProj.bat' is not recognized as an internal or external command, operable program or batch file. c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: The command "cd ..\..\..\..\ c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: DeployMyProj.bat" exited with code 9009. Done building project "MyProj.vbproj" -- FAILED. ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ========== If you have any queries please let me know.thanks
-
Hi all, I converted one web application(Vb.Net) created in VS2005 Framework 2.0 to VS2008 framework 3.5. (This application is using Reportviewer8.0) After convertion I cant build the application,always getting the below error.I use MSBuild to build the application,got the same result.The details of the versions I am using is given below Visual Studio 2008 Version 9.0.30729.1 SP MS Dotnet Framework version 3.5 SP1 OS windows XP cd ..\..\..\..\ DeployMyProj.bat 'DeployMyProj.bat' is not recognized as an internal or external command, operable program or batch file. c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: The command "cd ..\..\..\..\ c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: DeployMyProj.bat" exited with code 9009. Done building project "MyProj.vbproj" -- FAILED. ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ========== If you have any queries please let me know.thanks
ebin roy wrote:
'DeployMyProj.bat' is not recognized as an internal or external command, operable program or batch file.
Does this message suggest anything to you? Obviously this file cannot be found in the directory that you have just moved to; I would check your build commands.
-
Hi all, I converted one web application(Vb.Net) created in VS2005 Framework 2.0 to VS2008 framework 3.5. (This application is using Reportviewer8.0) After convertion I cant build the application,always getting the below error.I use MSBuild to build the application,got the same result.The details of the versions I am using is given below Visual Studio 2008 Version 9.0.30729.1 SP MS Dotnet Framework version 3.5 SP1 OS windows XP cd ..\..\..\..\ DeployMyProj.bat 'DeployMyProj.bat' is not recognized as an internal or external command, operable program or batch file. c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: The command "cd ..\..\..\..\ c:\WINDOWS\Microsoft.NET\Framework\v3.5\Microsoft.Common.targets(3397,13): error MSB3073: DeployMyProj.bat" exited with code 9009. Done building project "MyProj.vbproj" -- FAILED. ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ========== If you have any queries please let me know.thanks
Path is not perfect. Check the current directory where you are in.
cd ..\..\..\..\
should be relative to your bin directory. :)Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript -
Path is not perfect. Check the current directory where you are in.
cd ..\..\..\..\
should be relative to your bin directory. :)Abhishek Sur **Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->** Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript