[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.

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 +

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
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 using

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. Having both