From matttleong at yahoo.com Mon Dec 14 19:58:42 2009 From: matttleong at yahoo.com (Matthew Leong) Date: Mon Dec 14 19:58:52 2009 Subject: svndotnet checkout trunk Message-ID: <423142.15445.qm@web51503.mail.re2.yahoo.com> Hi, How can I checkout revision 84.? I've been playing around with the svn checkout command but i couldn't seem to figure it out.? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091214/7ae09980/attachment.html From toby at etjohnson.us Mon Dec 14 20:00:24 2009 From: toby at etjohnson.us (Toby Johnson) Date: Mon Dec 14 20:00:35 2009 Subject: svndotnet checkout trunk In-Reply-To: <423142.15445.qm@web51503.mail.re2.yahoo.com> References: <423142.15445.qm@web51503.mail.re2.yahoo.com> Message-ID: Are you referring to performing a checkout using the SvnDotNet library? What is the command that you're trying? toby On Mon, Dec 14, 2009 at 7:58 PM, Matthew Leong wrote: > Hi, > > How can I checkout revision 84. I've been playing around with the svn > checkout command but i couldn't seem to figure it out. Thanks > > > _______________________________________________ > svndotnet-users mailing list > Project homepage: > http://www.pumacode.org/projects/svndotnet/ > Subscribe/Unsubscribe/Admin > : > > http://lists.pumacode.org/mailman/listinfo/svndotnet-users-lists.pumacode.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091214/57116080/attachment.html From matttleong at yahoo.com Mon Dec 14 20:13:22 2009 From: matttleong at yahoo.com (Matthew Leong) Date: Mon Dec 14 20:13:30 2009 Subject: svndotnet checkout trunk In-Reply-To: References: <423142.15445.qm@web51503.mail.re2.yahoo.com> Message-ID: <371349.77331.qm@web51501.mail.re2.yahoo.com> Thanks for the fast response, This command will checkout the latest revision(120): svn checkout http://svn.pumacode.org/repos/svndotnet/trunk/ svndotnet ? ? I can view revision 84 trunk through the browserer: http://www.pumacode.org/projects/svndotnet/browser/trunk?rev=84 ? ? Is there a way I can check out 84 like i can do with the latest revision? ________________________________ From: Toby Johnson To: SvnDotNet Users Sent: Mon, December 14, 2009 8:00:24 PM Subject: Re: svndotnet checkout trunk Are you referring to performing a checkout using the SvnDotNet library? What is the command that you're trying? toby On Mon, Dec 14, 2009 at 7:58 PM, Matthew Leong wrote: Hi, > >How can I checkout revision 84.? I've been playing around with the svn checkout command but i couldn't seem to figure it out.? Thanks > >_______________________________________________ >svndotnet-users mailing list >Project homepage: >http://www.pumacode.org/projects/svndotnet/%0ASubscribe/Unsubscribe/Admin: >http://lists.pumacode.org/mailman/listinfo/svndotnet-users-lists.pumacode.org > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091214/4f65956e/attachment.html From toby at etjohnson.us Mon Dec 14 20:17:42 2009 From: toby at etjohnson.us (Toby Johnson) Date: Mon Dec 14 20:17:51 2009 Subject: svndotnet checkout trunk In-Reply-To: <371349.77331.qm@web51501.mail.re2.yahoo.com> References: <423142.15445.qm@web51503.mail.re2.yahoo.com> <371349.77331.qm@web51501.mail.re2.yahoo.com> Message-ID: On Mon, Dec 14, 2009 at 8:13 PM, Matthew Leong wrote: > > Thanks for the fast response, > > This command will checkout the latest revision(120): > svn checkout http://svn.pumacode.org/repos/svndotnet/trunk/ svndotnet > > > I can view revision 84 trunk through the browserer: > > http://www.pumacode.org/projects/svndotnet/browser/trunk?rev=84 > > > Is there a way I can check out 84 like i can do with the latest revision? OK, in that case you would just use the "-r" (revision) argument to svn: svn checkout -r84 http://svn.pumacode.org/repos/svndotnet/trunk/ svndotnet However, this project hasn't been updated in a while because I switched employers and no longer need it at the moment; I would recommend you take a look at SharpSVN instead: http://sharpsvn.open.collab.net/ toby From matttleong at yahoo.com Mon Dec 14 22:35:27 2009 From: matttleong at yahoo.com (Matthew Leong) Date: Mon Dec 14 22:35:34 2009 Subject: svndotnet checkout trunk In-Reply-To: References: <423142.15445.qm@web51503.mail.re2.yahoo.com> <371349.77331.qm@web51501.mail.re2.yahoo.com> Message-ID: <446376.37711.qm@web51507.mail.re2.yahoo.com> I wanted to use r84 because I was facing the same scenario as Luke Jackson was having (http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/2007-March/000216.html) with building svn_client-1.dll in release mode using nant scripts. You suggested he try using r84 before the broken nant builds. I just tried it and ran into errors. Using r120, the only dll that doesn't get compiled is svn_client-1.dll.......i executed 'nant boostrap' and 'nant release all dotnet build'....all of the other dlls get compiled. Are there any other active users of svndotnet that can point me in the right direction? Thanks ________________________________ From: Toby Johnson To: SvnDotNet Users Sent: Mon, December 14, 2009 8:17:42 PM Subject: Re: svndotnet checkout trunk On Mon, Dec 14, 2009 at 8:13 PM, Matthew Leong wrote: > > Thanks for the fast response, > > This command will checkout the latest revision(120): > svn checkout http://svn.pumacode.org/repos/svndotnet/trunk/ svndotnet > > > I can view revision 84 trunk through the browserer: > > http://www.pumacode.org/projects/svndotnet/browser/trunk?rev=84 > > > Is there a way I can check out 84 like i can do with the latest revision? OK, in that case you would just use the "-r" (revision) argument to svn: svn checkout -r84 http://svn.pumacode.org/repos/svndotnet/trunk/ svndotnet However, this project hasn't been updated in a while because I switched employers and no longer need it at the moment; I would recommend you take a look at SharpSVN instead: http://sharpsvn.open.collab.net/ toby _______________________________________________ svndotnet-users mailing list Project homepage: http://www.pumacode.org/projects/svndotnet/ Subscribe/Unsubscribe/Admin: http://lists.pumacode.org/mailman/listinfo/svndotnet-users-lists.pumacode.org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091214/37c46884/attachment.html From maxim.va at gmail.com Tue Dec 15 15:24:18 2009 From: maxim.va at gmail.com (Maxim Abrashkin) Date: Tue Dec 15 15:24:49 2009 Subject: svndotnet checkout trunk In-Reply-To: <446376.37711.qm@web51507.mail.re2.yahoo.com> References: <423142.15445.qm@web51503.mail.re2.yahoo.com> <371349.77331.qm@web51501.mail.re2.yahoo.com> <446376.37711.qm@web51507.mail.re2.yahoo.com> Message-ID: <9093a1820912151224v7b3fd0d8la516b9a66b2c4a55@mail.gmail.com> Hello, On Tue, Dec 15, 2009 at 9:35 AM, Matthew Leong wrote: > I wanted to use r84 because I was facing the same scenario as Luke Jackson > was having ( > http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/2007-March/000216.html) > with building svn_client-1.dll in release mode using nant scripts. You > suggested he try using r84 before the broken nant builds. I just tried it > and ran into errors. > > Using r120, the only dll that doesn't get compiled is > svn_client-1.dll.......i executed 'nant boostrap' and 'nant release all > dotnet build'....all of the other dlls get compiled. Are there any other > active users of svndotnet that can point me in the right direction? Thanks > If I remember correctly, you don't need to build native dll from trunk source code. Begining from Subversion 1.5 all required dlls already exists in standard binary Subversion distribution. Copy this ddls to directory with svn.net assemblies and try. -- Maxim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091216/436d53ab/attachment.html From matttleong at yahoo.com Wed Dec 16 16:25:48 2009 From: matttleong at yahoo.com (Matthew Leong) Date: Wed Dec 16 16:26:01 2009 Subject: svndotnet checkout trunk In-Reply-To: <9093a1820912151224v7b3fd0d8la516b9a66b2c4a55@mail.gmail.com> References: <423142.15445.qm@web51503.mail.re2.yahoo.com> <371349.77331.qm@web51501.mail.re2.yahoo.com> <446376.37711.qm@web51507.mail.re2.yahoo.com> <9093a1820912151224v7b3fd0d8la516b9a66b2c4a55@mail.gmail.com> Message-ID: <283349.85415.qm@web51508.mail.re2.yahoo.com> I tried your suggestion, I am getting?these errors: {"The type initializer for 'PumaCode.SvnDotNet.SubversionSharp.SvnClient' threw an exception."} {"The type initializer for 'PumaCode.SvnDotNet.AprSharp.Apr' threw an exception."} {"An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"} ________________________________ From: Maxim Abrashkin To: SvnDotNet Users Sent: Tue, December 15, 2009 3:24:18 PM Subject: Re: svndotnet checkout trunk Hello, On Tue, Dec 15, 2009 at 9:35 AM, Matthew Leong wrote: I wanted to use r84 because I was facing the same scenario as Luke Jackson was having (http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/2007-March/000216.html) with?building svn_client-1.dll in release mode using nant scripts. You suggested he try using r84 before the broken nant builds. ?I just tried it and ran into errors. > > >Using r120, the only dll that doesn't get compiled is svn_client-1.dll.......i executed 'nant boostrap' and 'nant release all dotnet build'....all of the other dlls get compiled. ?Are there any other active users of svndotnet that can point me in the right direction? ?Thanks If I remember correctly, you don't need to build native dll from trunk source code. Begining from Subversion 1.5 all required dlls already exists in standard binary Subversion distribution. Copy this ddls to directory with svn.net assemblies and try. ?-- Maxim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091216/2c228db3/attachment.html From maxim.va at gmail.com Thu Dec 17 13:05:58 2009 From: maxim.va at gmail.com (Maxim Abrashkin) Date: Thu Dec 17 13:06:26 2009 Subject: svndotnet checkout trunk In-Reply-To: <283349.85415.qm@web51508.mail.re2.yahoo.com> References: <423142.15445.qm@web51503.mail.re2.yahoo.com> <371349.77331.qm@web51501.mail.re2.yahoo.com> <446376.37711.qm@web51507.mail.re2.yahoo.com> <9093a1820912151224v7b3fd0d8la516b9a66b2c4a55@mail.gmail.com> <283349.85415.qm@web51508.mail.re2.yahoo.com> Message-ID: <9093a1820912171005g1531b3dfq6ebbda2d4675de3b@mail.gmail.com> Are you sure copy all dlls from subversion distribution to your work directory with svn.net assemblies? Are you sure that you have 32 bit application? Seems that you are trying to load a 32 bit dll into a 64 bit process (or the other way around). On Thu, Dec 17, 2009 at 3:25 AM, Matthew Leong wrote: > I tried your suggestion, I am getting these errors: > > {"The type initializer for 'PumaCode.SvnDotNet.SubversionSharp.SvnClient' > threw an exception."} > {"The type initializer for 'PumaCode.SvnDotNet.AprSharp.Apr' threw an > exception."} > {"An attempt was made to load a program with an incorrect format. > (Exception from HRESULT: 0x8007000B)"} > ------------------------------ > *From:* Maxim Abrashkin > *To:* SvnDotNet Users > *Sent:* Tue, December 15, 2009 3:24:18 PM > > *Subject:* Re: svndotnet checkout trunk > > Hello, > > On Tue, Dec 15, 2009 at 9:35 AM, Matthew Leong wrote: > >> I wanted to use r84 because I was facing the same scenario as Luke >> Jackson was having ( >> http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/2007-March/000216.html) >> with building svn_client-1.dll in release mode using nant scripts. You >> suggested he try using r84 before the broken nant builds. I just tried it >> and ran into errors. >> >> Using r120, the only dll that doesn't get compiled is >> svn_client-1.dll.......i executed 'nant boostrap' and 'nant release all >> dotnet build'....all of the other dlls get compiled. Are there any other >> active users of svndotnet that can point me in the right direction? Thanks >> > > If I remember correctly, you don't need to build native dll from trunk > source code. Begining from Subversion 1.5 all required dlls already exists > in standard binary Subversion distribution. Copy this ddls to directory with > svn.net assemblies and try. > > -- > Maxim > > > _______________________________________________ > svndotnet-users mailing list > Project homepage: > http://www.pumacode.org/projects/svndotnet/ > Subscribe/Unsubscribe/Admin > : > > http://lists.pumacode.org/mailman/listinfo/svndotnet-users-lists.pumacode.org > -- Maxim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091218/12638403/attachment.html From bnagendraprasad at gmail.com Tue Dec 22 08:32:13 2009 From: bnagendraprasad at gmail.com (nagendra prasad) Date: Tue Dec 22 08:32:22 2009 Subject: Runtime error when using VS2008 Message-ID: <49cedc200912220532q63291ec7wd3e534f6fbd89bb@mail.gmail.com> Hi Guys, I created a new commandline project with reference to Aprsharp, SubversionSharp using VS2008. The application compiles properly but on first reference to "SVNClient" it throws a run-time errror saying InnerException as "Unable to load DLL 'libapr': This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)" Any help would be appreciated. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091222/c1cf096a/attachment.html From maxim.va at gmail.com Tue Dec 22 11:10:43 2009 From: maxim.va at gmail.com (Maxim Abrashkin) Date: Tue Dec 22 11:11:13 2009 Subject: Runtime error when using VS2008 In-Reply-To: <49cedc200912220532q63291ec7wd3e534f6fbd89bb@mail.gmail.com> References: <49cedc200912220532q63291ec7wd3e534f6fbd89bb@mail.gmail.com> Message-ID: <9093a1820912220810r7f6f298ek128f56baaee9a27e@mail.gmail.com> Hello, Very likely you forget to copy native dlls to the directory with aprsharp and subversionsharp assemblies. This dlls can be taken from subversion binary distribution. On Tue, Dec 22, 2009 at 7:32 PM, nagendra prasad wrote: > Hi Guys, > > I created a new commandline project with reference to Aprsharp, > SubversionSharp using VS2008. The application compiles properly but on first > reference to "SVNClient" it throws a run-time errror saying > InnerException as "Unable to load DLL 'libapr': This application has failed > to start because the application configuration is incorrect. Reinstalling > the application may fix this problem. (Exception from HRESULT: 0x800736B1)" > > Any help would be appreciated. > > Thanks. > > > > _______________________________________________ > svndotnet-users mailing list > Project homepage: > http://www.pumacode.org/projects/svndotnet/ > Subscribe/Unsubscribe/Admin > : > > http://lists.pumacode.org/mailman/listinfo/svndotnet-users-lists.pumacode.org > -- Maxim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.pumacode.org/pipermail/svndotnet-users-lists.pumacode.org/attachments/20091222/7ce9c54d/attachment.html