.vbproj

Any tips for using Subversion with .net project files?

We just switched from TFS to SVN, and so far we're loving it. However, it did introduce a few new issues. One is the way project files (.vbproj specifically) are handled. The .vbproj file is of course always changing as files and references are changed, and if a few people are collaberating there will be conflicts. Oddly, in TFS we...

Compiling a .vbproj or .csproj project file without Visual Studio

Is there a way to compile a .vbproj or .csproj project file directly, just like Visual Studio does? When you compile in Visual Studio, the "output" window shows the actual call to the compiler, which normally looks like: vbc.exe [bunch of options] [looooong list of .vb files] I would like to programatically call "something" that would...

How to prevent Visual Studio 2008 from re- autogenerating "My Project" folder?

I am trying to rid my team's Visual Studio projects of "My Project" folders. None of my team is using custom settings or anything that would need to be stored in the "My Project" folder for any of our projects. I have edited our .vbproj files with a text editor to remove any reference to "My Project", deleted "My Project" from disk, an...

VB.Net - Version numbering in VBPROJ file

Following on from my last question, are the AssemblyMajorVersion, AssemblyMinorVersion, AssemblyRevisionNumber and GenerateRevisionNumber properties required in .vbproj files? All of our components have these entries in the .vbproj files but they are completely out of sync with the AssemblyVersion and AssemblyFileVersion entries in the ...

open an exe file from another exe file coded in vb

i have 2 vb projects that run perfectly. but i have this new requirement. I need to open .exe for project 2 from project 1. both the project have sql server database in back. so they have login/password and customer records that show according to customerid's in both. Now when i click "open project2" button in the first project, it shoul...