Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-27 Thread Dan Winship
On Sun, 2005-06-26 at 15:30 -0400, Miguel de Icaza wrote: > http://mono-project.com/Guidelines:Application_Deployment > Typically all these files have been scattered in multiple locations > relative to the prefix. Although this has been historically encouraged > on Unix systems (in particula

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Kornél Pál
I have written a small document with some guidelines on deploying applications, and would like to get people's feedback about what is missing and what can be clarified: string splash_file = base_directory + Path.PathSeparator + "splash.jpg"; Path.Combine should be used instead because it en

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Todd Berman
On Sun, 2005-06-26 at 21:41 -0400, Ben Maurer wrote: > On Sun, 2005-06-26 at 20:47 -0400, Miguel de Icaza wrote: > > > > Some other things that might be worth talking about: > > > > > > * Storing application settings (how to use S.Environment to get a > > > location for preferences.

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Ben Maurer
On Sun, 2005-06-26 at 20:47 -0400, Miguel de Icaza wrote: > > Some other things that might be worth talking about: > > > > * Storing application settings (how to use S.Environment to get a > > location for preferences. Having both global and per user prefs) I guess the options are

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Miguel de Icaza
Hello, > How about putting "$@" after to pass arguments? We could also give it in > the form so that it can be created by configure: Fixed. > Of course, one other advantage of non-gac'd installs is that they are > more relocatable. In fact, you could do xcopy deploy that way. It really > only ma

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Marcus
I remember that MSBuild originally did not use the GAC. Then they changed their minds. A brief summary of the situation is given in http://channel9.msdn.com/wiki/default.aspx/MSBuild.MsbuildAssembliesInTheGac. I do wish that they had elaborated on the problems that putting the assemblies in the

Re: [Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Ben Maurer
Hey, On Sun, 2005-06-26 at 15:30 -0400, Miguel de Icaza wrote: > Your C# should reference its data files using the following code > snippet: > > string base_directory = System.AppDomain.CurrentDomain.BaseDirectory; > > Then you can do things like: > >string splash_file = base_directory

[Mono-devel-list] Guidelines: Application Deployment; Feedback requested.

2005-06-26 Thread Miguel de Icaza
Hello, I have written a small document with some guidelines on deploying applications, and would like to get people's feedback about what is missing and what can be clarified: http://mono-project.com/Guidelines:Application_Deployment Miguel. ___