[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: can't open Visual Studio .NET project under Subversion control???

From: Mark Griffiths <mark.griffiths_at_chive.com>
Date: 2003-09-05 09:27:06 CEST

Hi

This is the workaround we are using at the moment. In each web project we
create two .cmd files:

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"
)

Before opening the web project, we run hide-svn. After the project is
loaded (and refreshed it's vswebcache), we run restore-svn. It is only
during initial loading and when using the refresh button in solution
explorer that the .svn directories get in the way.

Obviously this is a bit inconvenient, however it is just a short-term
workaround until we can find a 'better work-around' or create a custom build
of subversion that uses a different directory name.

What are the chances of the subversion team allowing the name of the
administrative directory to be customisable?

-Mark

-----Original Message-----
From: Charles E. Doucette [mailto:cdoucette@med-learn.com]
Sent: 04 September 2003 22:20
To: arild.fines@broadpark.no
Cc: users@ankhsvn.tigris.org; users@subversion.tigris.org
Subject: RE: can't open Visual Studio .NET project under Subversion
control???

Here is the URL I meant to post:

http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&threadm=018901c3
70ad%2467041600%24a301280a%40phx.gbl&rnum=1&prev=/groups%3Fq%3DRefreshing%2B
the%2Bproject%2Bfailed.%2BUnable%2Bto%2Bretrieve%2Bfolder%2Binformation%2Bfr
om%2Bthe%2Bserver.%26hl%3Den%26lr%3D%26ie%3DUTF-8%26oe%3DUTF-8%26selm%3D0189
01c370ad%252467041600%2524a301280a%2540phx.gbl%26rnum%3D1

Specifically, I'm referring to ASP.NET web projects.

I hadn't seen/tried the workaround you mention below.
I may try that - thanks.

Chuck

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri Sep 5 09:30:08 2003

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.