Why VS sucks today
-
Some one sent me a project with links to DLLs that are located in different locations on my PC to his and in VS there is no way to change the location that the DLL is pointing to. Instead I need to modify the csproj file directly!!!!!!! Okay and breath.... rant over
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
-
Some one sent me a project with links to DLLs that are located in different locations on my PC to his and in VS there is no way to change the location that the DLL is pointing to. Instead I need to modify the csproj file directly!!!!!!! Okay and breath.... rant over
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
When I use "other assemblies" like that, I create a folder in the solution labeled "Other Assemblies", and add references to THAT folder. That way, this particular problem is avoided. It would be nice if there was a Send to Compressed folder" option in VS so that all of the project dependencies were automatically resolved, thus resulting in a ZIP that contains all referenced DLLs that aren't in the GAC.
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001 -
When I use "other assemblies" like that, I create a folder in the solution labeled "Other Assemblies", and add references to THAT folder. That way, this particular problem is avoided. It would be nice if there was a Send to Compressed folder" option in VS so that all of the project dependencies were automatically resolved, thus resulting in a ZIP that contains all referenced DLLs that aren't in the GAC.
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001Could he not send 'local copy' of DLL's with his code? I know it is a bit kludgy, but is saves time having to locate them.
------------------------------------ I will never again mention that I was the poster of the One Millionth Lounge Post, nor that it was complete drivel. Dalek Dave
-
When I use "other assemblies" like that, I create a folder in the solution labeled "Other Assemblies", and add references to THAT folder. That way, this particular problem is avoided. It would be nice if there was a Send to Compressed folder" option in VS so that all of the project dependencies were automatically resolved, thus resulting in a ZIP that contains all referenced DLLs that aren't in the GAC.
.45 ACP - because shooting twice is just silly
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"The staggering layers of obscenity in your statement make it a work of art on so many levels." - J. Jystad, 2001My main grip is that I have the dll's it just that I can't edit from VS I need to edit the file's by hand. I suppose the plus side is that I'm learning more about csproj file format.
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
-
Some one sent me a project with links to DLLs that are located in different locations on my PC to his and in VS there is no way to change the location that the DLL is pointing to. Instead I need to modify the csproj file directly!!!!!!! Okay and breath.... rant over
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
I solve this (paths of dlls, libs and includes on different machines) now by using CMake to generate my project files. http://cmake.org/[^]
John
-
Some one sent me a project with links to DLLs that are located in different locations on my PC to his and in VS there is no way to change the location that the DLL is pointing to. Instead I need to modify the csproj file directly!!!!!!! Okay and breath.... rant over
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
If it is not a project reference then I just sign the assemblies and drop them in the GAC but I am lazy that way.
Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. A man said to the universe: "Sir I exist!" "However," replied the universe, "The fact has not created in me A sense of obligation." --Stephen Crane
-
Some one sent me a project with links to DLLs that are located in different locations on my PC to his and in VS there is no way to change the location that the DLL is pointing to. Instead I need to modify the csproj file directly!!!!!!! Okay and breath.... rant over
Weight loss Target Weight at start [1/Feb/2009] 127kg Weight now [10/Jan/2010] 99.7kg Target weight : 80kg Only 19.7 to go hope to be there by March Wish me luck!
If it's a Windows application you don't have to modify the references. You can add reference paths to the project that will resolve the actual reference to a different folder. Right click on the project file, click properties, go to the references tab, and click reference paths.