How do I compile a framework library?

I have managed code for an SMO application. How can I compile it with

.NETFRAMEWORK2.0. I don't want to use visulastudio due to certain limitations.

How can i do this. can the body help me in this regard.

msbuild.exe TestMsBuild.sln /: t Rebuild /: p configuration = release gives error like

TestMsBuild.sln: Solution file error MSB4054: The solution file must be opened in the Visual Studio IDE and converted to the latest version before it can be bu ilt from MSBuild.

although my project is open i got this error. But since it shows, I don't know how to convert to the latest version

0


a source to share


2 answers


Perhaps because you misspelled "config"? If it isn't, then it might be your code. It's hard to tell without additional information.



+1


a source


It looks like you are using VS2008 to compile a VS2005 solution (or to compile in 2005 to 2003). Open the solution in VS2008, go through the upgrade wizard, save your changes, close VS2008 and try the command line again.



+1


a source







All Articles