You can also just "hide" the .svn directories when you're first creating the
web project, then restore them. VS.NET only has problems with .*
directories when first creating a web project and when refreshing them. Run
the hide script before doing either of these, then the restore immediately
after.
We've added these scripts to our web projects so all developers have them on
hand.
hide-svn.cmd:
@ECHO OFF
FOR /R %%f IN (.svn) DO IF EXIST "%%f" (
ATTRIB -h "%%f"
RENAME "%%f" _svn
)
restore-svn.cmd:
@ECHO OFF
FOR /R %%f IN (_svn) DO IF EXIST "%%f" (
RENAME "%%f" .svn
ATTRIB +h "%%~pf\.svn"
)
>From: "Alexander Zeitler" <azeitler@aspintranet.de>
>Reply-To: <azeitler@aspintranet.de>
>To: "Users" <users@subversion.tigris.org>
>Subject: RE: Visual Studio.Net and Subversion?
>Date: Thu, 4 Mar 2004 15:34:28 +0100
>
>
>Hi,
> >
> > >Yes please, please, please… I want to use Subversion
> > >and tSVN very much but cannot unless we are able to use
> > >it with the underscore modification (without modifying
> > >30+ developers VS.net installs and over 100 existing
> > >projects) we will have to abandon Subversion.
> >
>why don't walk this way:
>http://staff.develop.com/onion/Samples/aspdotnet_without_web_projects.htm
>
>then the problem will be solved.
>
>best regards
>
>Alex
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
>For additional commands, e-mail: users-help@subversion.tigris.org
>
_________________________________________________________________
Get business advice and resources to improve your work life, from bCentral.
http://special.msn.com/bcentral/loudclear.armx
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Mar 5 15:33:54 2004