How to use enterprise library logging in a .NET custom action - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:27:02Z http://stackoverflow.com/feeds/question/344784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/344784/how-to-use-enterprise-library-logging-in-a-net-custom-action 4 How to use enterprise library logging in a .NET custom action Jeremy Lew 2008-12-05T18:50:15Z 2009-03-03T00:13:24Z <p>I have some library code which is used from my application and is also used by a .NET custom action in a Visual Studio installer project. The library code in turn uses the Enterprise Library logging block to do its logging. How can I get configuration information to the Enterprise Library in the context of my custom action running inside msiexec? Is it possible to bootstrap the config mechanism in code before I make any calls to the EntLib?</p> <p>Update: I've produced a hack that seems like it will work but relies on setting a non-public static field using reflection. It's a shame that EntLib is so tightly coupled to the .NET ConfigurationManager.</p> <pre><code>var factory = new LogWriterFactory( new FakeConfigSource( "foo.config" ) ); var field = typeof ( Logger ).GetField( "factory", BindingFlags.Static | BindingFlags.NonPublic ); field.SetValue( null, factory ); Logger.Write( "Test" ); </code></pre> <p>Update 2: Although that hack works in a testbed, when run in the context of msiexec, the assembly loader does not find the assemblies referenced in the config file. Fuslogvw indicates that AppBase is the windows system32 directory, which makes some sense. What I don't understand is why the custom action assembly's manifest dependencies (which are in the [TargetDir] directory alongside the custom action assembly) are found, but dynamically-loaded assemblies called out in the config file are not. Can't see any way around this.</p> http://stackoverflow.com/questions/344784/how-to-use-enterprise-library-logging-in-a-net-custom-action/362029#362029 0 Answer by w4g3n3r for How to use enterprise library logging in a .NET custom action w4g3n3r 2008-12-12T06:17:35Z 2008-12-12T06:17:35Z <p>Not sure if this helps, but you can write to the msi log from within a custom action. (Sample VBScript below:)</p> <pre><code>Const msiMessageTypeInfo = &amp;H04000000 Const msiMessageTypeFatalExit = &amp;H00000000 Const msiMessageTypeError = &amp;H01000000 Const msiMessageTypeWarning = &amp;H02000000 Const msiMessageTypeUser = &amp;H03000000 Dim rec : Set rec = Session.Installer.CreateRecord(1) rec.StringData(1) = "Your log message." Session.Message msiMessageTypeInfo, rec </code></pre> <p>More info from MSDN: <a href="http://msdn.microsoft.com/en-us/library/aa371672.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa371672.aspx</a></p> http://stackoverflow.com/questions/344784/how-to-use-enterprise-library-logging-in-a-net-custom-action/582165#582165 0 Answer by John Hunter for How to use enterprise library logging in a .NET custom action John Hunter 2009-02-24T15:23:15Z 2009-02-24T15:23:15Z <p>I have a similar problem with msiexec not being able to load a custom actions dependencies currently my solution is to copy the dependent assemblies into the system directory. This is an awful solution but it does work. </p> <pre><code>string installDir = System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().Location); System.IO.File.Copy( System.IO.Path.Combine(installDir, "&lt;Insert Assembly Name&gt;.dll"), System.IO.Path.Combine(Environment.SystemDirectory, "&lt;Insert Assembly Name&gt;.dll"), true); </code></pre> <p>One other option would be to install the enterprise library assemblies into the GAC. If you do this you will need to edit the msi using something like <a href="http://www.technipages.com/download-orca-msi-editor.html" rel="nofollow">Orca</a> to make the installer install into the GAC before is runs the custom actions by default custom actions run first.</p> <p>I am still looking for a really neat solution to this and I'll update this response when i find it.</p> http://stackoverflow.com/questions/344784/how-to-use-enterprise-library-logging-in-a-net-custom-action/590265#590265 1 Answer by Robert MacLean for How to use enterprise library logging in a .NET custom action Robert MacLean 2009-02-26T12:05:31Z 2009-02-26T12:05:31Z <p>There is no way to use the standard app.config way because that app.config is the msiexec.config you would need to edit prior to executing your MSI. My recommendation would be to have your own configuration loading method which reads from a custom XML or values in the MSI.</p> http://stackoverflow.com/questions/344784/how-to-use-enterprise-library-logging-in-a-net-custom-action/604604#604604 1 Answer by Jeffrey Hantin for How to use enterprise library logging in a .NET custom action Jeffrey Hantin 2009-03-03T00:13:24Z 2009-03-03T00:13:24Z <p>I believe the issue is that your custom action assembly is being loaded in the <a href="http://blogs.msdn.com/suzcook/archive/2003/05/29/57143.aspx" rel="nofollow"><code>LoadFrom</code> context</a>, so its manifest dependencies are resolved relative to its codebase.</p> <p>You may be able to resolve this issue by creating a new <code>AppDomain</code>. This will give you the opportunity to reset your base directory, load a new <code>App.config</code> file, and so forth. Use <a href="http://msdn.microsoft.com/en-us/library/aehss7y0.aspx" rel="nofollow">AppDomain.CreateDomain(String, Evidence, AppDomainSetup)</a> to create the new AppDomain, populating the <a href="http://msdn.microsoft.com/en-us/library/system.appdomainsetup_properties.aspx" rel="nofollow">AppDomainSetup properties</a> for ApplicationBase, ConfigurationFile, and so on.</p>