0
votes
Structure of projects in version control - .NET specific
For bigger projects we usually use this format here:
/Project
/trunk
/lib/ # Binary imports here (not in svn)
/src # Solution file here …
1
vote
How do I do a SVN Update from ASP.NET?
Using SharpSvn:
using(SvnClient client = new SvnClient())
{
client.Update(Request["path"]);
}
But I would reco …
0
votes
HttpContext.Current.User not populated with Windows Authentication enabled
Where do you check for this user? In the request cycle there are some events fired before the authorization takes place.
If you are testing on Vista, Windows 7 or Windows Server 2008 there …
1
vote
SharpSvn CreateDirectories
You can use SvnClient.RemoteCreateDirectories. (And don't forget to add a log message to the args class, or to handle the Committing event on the Client).
Authentication is handled via the …
0
votes
Best practices for storing an ASP.NET web site in Subversion?
You should add the .refresh files; not the real DLLs.
The Visual Studio project system sends a list of files that should be added to source control to SCC Providers. AnkhSVN is a Subversion …
2
votes
subversion ankhsvn files disapear from solution explorer
This issue is also reported by TFS users (See google), so it is most likely a Visual Studio bug. It would be nice if somebody found out a way to reproduce this issue. That would finally enable Micr …
0
votes
Allowing the local aspnet account to excute SharpSvn.CreateRepository
Did you check the NTFS permissions on the location where you are trying to create the repository?
Depending on your asp.net settings the user that needs create rights there is either the AS …
