Keeping Visual Studio Projects on a Network Drive - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T21:07:02Zhttp://stackoverflow.com/feeds/question/159627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive2Keeping Visual Studio Projects on a Network DriveMike Wills2008-10-01T20:46:17Z2009-11-24T05:39:29Z
<p>We just did a move from storing all files locally to a network drive. Problem is that is where my VS projects are also stored now. (No versioning system yet, working on that.) I know I heard of problems with doing this in the past, but never heard of a work-around. Is there a work around?</p>
<p>So my VS is installed locally. The files are on a network drive. How can I get this to work?</p>
<p>EDIT: I know what SHOULD be done, but is there a band-aid I can put on right now to fix this and maintain the network drive?</p>
<p>EDIT 2: I am sure I am not understanding something, but <a href="http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive#159702">Bob King</a> has the right idea. I'll work with the lead web developer when he gets back into the office to figure out a temporary solution until we get some sort of version control setup. Thanks for the ideas.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159638#1596385Answer by Kilhoffer for Keeping Visual Studio Projects on a Network DriveKilhoffer2008-10-01T20:47:40Z2008-10-01T21:11:44Z<p>I would not recommend doing that if you have (or even if you don't have) multiple people who are working on the projects. You're just asking for trouble.</p>
<p>If you're the only one working on it, on the other hand, you'll avoid much of the trouble. Performance is going to out the window, though. As far as how to get it to work, you just open the solution file from VS. You'll likely run into security issues, but can correct that using CASPOL. As I said, though, performance is going to be terrible. Again, not recommended at all.</p>
<p>Do yourself and your team a favor and install SVN or some other form of source control and put the code in there ASAP.</p>
<p>EDIT: I'll partially retract my comments. Bob King explains below the reason they run VS projects from a network drive and it makes sense. I would say unless you're doing it for a specific reason like Bob, stay away from it. Otherwise, get your ducks in a row before setting up such a development environment.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159674#1596740Answer by HAdes for Keeping Visual Studio Projects on a Network DriveHAdes2008-10-01T20:52:36Z2008-10-01T20:52:36Z<p>If i understand you correctly, your Visual Studio project files are stored on the network drive and you are running them from there. This is what I do and don't have any problems. You will need to make sure that you have set the security policy. You can use <a href="http://msdn.microsoft.com/en-us/library/cb6t8dtz(VS.80).aspx" rel="nofollow">Caspol</a> to do this, or via the control panel-admin tools menu.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159675#1596753Answer by steffenj for Keeping Visual Studio Projects on a Network Drivesteffenj2008-10-01T20:52:47Z2008-10-01T20:52:47Z<p>Don't do it. If you have source control (versioning), you do not want your files on a network drive. It totally bypasses all you want to achieve by using source control, because once your files are on a network drive, anyone can modify them .... even while you're currently building your project. Ka-boooom!</p>
<p>PS: this sounds like a typical case of over-engineering to me.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159688#1596880Answer by Lasse V. Karlsen for Keeping Visual Studio Projects on a Network DriveLasse V. Karlsen2008-10-01T20:54:20Z2008-10-01T20:54:20Z<p>Well, my question would be why you are asking this. Is it not working when you are storing it on a network drive? I haven't tried this myself, and one problem I could envision would be that .NET code running from a network drive (ie. from the bin\Debug directory, also located on the network drive) would be running in a sandbox mode, unless you mess around with CASPOL (or use 3.5 SP1 which I hear has removed that obstacle).</p>
<p>If you have specific problems, ask about them. Never ask "Why is doing X not working?".</p>
<p>You're not saying if you're just one person or multiple persons accessing the same remote drive, but I'm assuming you're just one for each network directory. Is this correct? If not, no, there is no band-aid. Get version control, move the files back to a local disk.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159689#1596890Answer by Chris Lively for Keeping Visual Studio Projects on a Network DriveChris Lively2008-10-01T20:54:42Z2008-10-01T20:54:42Z<p>"How can I get this to work?"
You have a couple choices:</p>
<p>Choice A:
1. Move all files back to your local hard drive
2. Implement some type of backup software on your machine
3. Test said backup solution
4. keep on coding</p>
<p>Choice B:
1. Get a copy of one of the FREE source control products and implement it.
2. Make sure it's being backed up
3. Test it</p>
<p>Choice C:
Use one of the many ONLINE source control repositories available. Google, SourceForge, CodePlex, something.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159701#1597011Answer by jmatthias for Keeping Visual Studio Projects on a Network Drivejmatthias2008-10-01T20:57:52Z2008-10-01T20:57:52Z<p>Are you having any specific problems?</p>
<p>If you allow more than one person to open the solution, your first problem will be that the .NCB file (Intellisense) will be locked exclusively and only one user will be able to browse the class tree. And of course you have the potential for one user's changes to overwrite the other user's changes.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/159702#1597023Answer by Bob King for Keeping Visual Studio Projects on a Network DriveBob King2008-10-01T20:57:57Z2008-10-01T20:57:57Z<p>While we do use Source Control, we do also run all our projects from Network Drives (not shared directories, private directories on network drives). The network drives are backed up nightly, and also use Volume Shadow Copy, so if you need to revert to something <em>before</em> it made it's way to SC, then you can.</p>
<p>To get projects to run correctly with the right permission, follow <a href="http://msdn.microsoft.com/en-us/library/zdc263t0(VS.80).aspx" rel="nofollow">these steps</a>.</p>
<p>Basically, you've just got to map the shared directory to a drive, and then grant permission, based on that Url, to all code. Say you map to "N:\", then use "N:\*" as your Url pattern. It isn't obvious you need to wildcard, but you do.</p>
http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive/1788038#17880380Answer by Dennis Cheung for Keeping Visual Studio Projects on a Network DriveDennis Cheung2009-11-24T05:39:29Z2009-11-24T05:39:29Z<p>You should be warned that some feature in Visual Studio will refuse to work with network drive.</p>
<p>For example, mdf file of SQL Express user instance must be located in local drive.</p>
<p>For another example, if you use UNC path, you have to make sure they are short enought.</p>