User Claus Thomsen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T15:25:32Z http://stackoverflow.com/feeds/user/15555 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949212/sql-2008-collation 0 Sql 2008 Collation Claus Thomsen 2009-06-04T08:17:49Z 2009-06-04T08:35:29Z <p>What Collation should I choose for my Sql 2008 setup?</p> <p>The setup is for an international company and Textual Data is Unicode. Default settings is based on Danish Locale PC.</p> http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc 2 Easy way to check for view model changes in asp.mvc Claus Thomsen 2009-05-25T21:17:03Z 2009-05-25T22:49:16Z <p>Is there a easy way of checking a view model(Not Domain Model) for modifications in the post back?</p> <pre><code> public ActionResult Billing() { var viewModel = new BillingViewModel(); viewModel.prop1 = DomainService.Prop1 // Map Domain model to View Model return View(viewModel); } [AcceptVerbs(HttpVerbs.Post)] public ActionResult Billing(BillingViewModel viewModel) { //TODO: Check if ViewModel has changes and save to Domain Repository if valid if (ValidateBillingViewModel(viewModel)) { </code></pre> <p>My homebrew solution would be to store a hash of model in hidden field and check it again, but is there a better option? </p> http://stackoverflow.com/questions/689410/is-there-cache-with-linq-query-support 1 Is there Cache with Linq query support Claus Thomsen 2009-03-27T11:34:57Z 2009-03-27T11:43:21Z <p>Is there Cache preferably a distributed cache with Linq query support?</p> http://stackoverflow.com/questions/657282/refresh-problem/657471#657471 1 Answer by Claus Thomsen for Refresh Problem Claus Thomsen 2009-03-18T09:08:13Z 2009-03-18T09:08:13Z <p>If I understand you correctly, you try to solve postback refresh problem.</p> <p>In you postback method you can redirect back to same page when done</p> <pre><code>Response.Redirect(Request.Path) </code></pre> <p>Although this will solve the problem, it is also an additional server round trip, you should be aware of.</p> http://stackoverflow.com/questions/654586/ddd-modeling-mn-relation-between-two-roots-where-the-relation-itself-carries-se/654806#654806 0 Answer by Claus Thomsen for DDD: Modeling M:N relation between two roots where the relation itself carries semantic meaning Claus Thomsen 2009-03-17T15:40:07Z 2009-03-17T15:40:07Z <p>You should not have a object Like SiteCustomerRelationship, its DB specific.</p> <p>If its truly DDD you should have a Relation like:</p> <pre><code>Aggregate&lt;Site&gt; Customer.Site IEnumerable&lt;Aggregate&lt;Office&gt;&gt; Customer.Offices </code></pre> <p>and perhaps </p> <pre><code>Aggregate&lt;Office&gt; Customer.DefaultOffice </code></pre> http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650853#650853 0 Answer by Claus Thomsen for Search engine friendly urls in ASP dot NET Claus Thomsen 2009-03-16T15:14:23Z 2009-03-16T15:14:23Z <p>After some Read up on Routing in Asp.net:</p> <p><a href="http://blog.eworldui.net/post/2008/04/ASPNET-MVC---Legacy-Url-Routing.aspx" rel="nofollow">http://blog.eworldui.net/post/2008/04/ASPNET-MVC---Legacy-Url-Routing.aspx</a></p> <p>Which brings both 301 redirects for SEO page rank and Asp.net Routing for permanent organic SEO solution.</p> http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650158#650158 0 Answer by Claus Thomsen for Search engine friendly urls in ASP dot NET Claus Thomsen 2009-03-16T12:13:38Z 2009-03-16T12:13:38Z <p>You could use <a href="http://urlrewriter.net/" rel="nofollow">http://urlrewriter.net/</a> which can be used on asp.net 1.1 -></p> http://stackoverflow.com/questions/650090/securing-a-mvc-view-so-only-the-server-can-access-it/650143#650143 2 Answer by Claus Thomsen for Securing a mvc view so only the server can access it Claus Thomsen 2009-03-16T12:08:42Z 2009-03-16T12:08:42Z <p>The best practice would be to expose a wcf service for this, and set up a security model that is different than website.</p> <p>If you must use MVC the best approach use forms authentication with mvc and set </p> <pre><code>[Authorize(Roles = "SecureUser")] </code></pre> <p>On the View.</p> http://stackoverflow.com/questions/643131/is-there-a-rrdtool-net-equivalent 1 Is there a RRDTool .net equivalent Claus Thomsen 2009-03-13T15:04:14Z 2009-03-15T07:19:52Z <p>I need to monitor a lot of data, and i know that RRDTool is a good option, but entire app is c# so ill prefer some Microsoft way or .net port. </p> <p>Is there a .net way of doing the same as RRDTool? </p> http://stackoverflow.com/questions/642337/html-css-in-asp-net-mvc-default-project/642424#642424 1 Answer by Claus Thomsen for html css in asp.net mvc default project Claus Thomsen 2009-03-13T12:21:12Z 2009-03-13T15:07:45Z <p>its a CSS issue but in site.css you can make following changes:</p> <pre><code>#menucontainer { margin-top:40px; clear: both; /* Add this*/ } and also ul#menu { border-bottom: 1px #5C87B2 solid; padding: 0 0 2px; position: relative; margin: 0; text-align: left; /* Change from right to left */ } </code></pre> <p>Work for this Site.Master</p> <pre><code>&lt;%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt; &lt;asp:ContentPlaceHolder ID="head" runat="server"&gt; &lt;title&gt;&lt;/title&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;link href="../../Content/Site.css" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="page"&gt; &lt;div id="header"&gt; &lt;div id="title"&gt; &lt;h1&gt;My MVC Application&lt;/h1&gt; &lt;/div&gt; &lt;div id="logindisplay"&gt; &lt;% Html.RenderPartial("LogOnUserControl"); %&gt; &lt;/div&gt; &lt;div id="menucontainer"&gt; &lt;ul id="menu"&gt; &lt;li&gt;&lt;%= Html.ActionLink("Home", "Index", "Home")%&gt;&lt;/li&gt; &lt;li&gt;&lt;%= Html.ActionLink("About", "About", "Home")%&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="main"&gt; &lt;asp:ContentPlaceHolder ID="MainContent" runat="server" /&gt; &lt;div id="footer"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/642406/how-to-remove-windows-user-account-using-c/642487#642487 2 Answer by Claus Thomsen for How to remove windows user account using C# Claus Thomsen 2009-03-13T12:40:48Z 2009-03-13T12:40:48Z <p>Something like this should do the trick(not tested):</p> <pre><code>DirectoryEntry localMachine = new DirectoryEntry("WinNT://" + Environment.MachineName); DirectoryEntries entries = localMachine.Children; DirectoryEntry user = entries.Remove("User"); entries.CommitChanges(); </code></pre> http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build 0 How can I know a dll is not a debug build Claus Thomsen 2009-03-12T10:54:29Z 2009-03-12T11:24:57Z <p>How do i know for sure that my production server uses release build dll's. Is there a way to find that info inside dll? </p> <p><hr /></p> <p>Duplicate of: </p> <ul> <li><p><a href="http://stackoverflow.com/questions/194616/how-to-tell-if-net-app-was-compiled-in-debug-or-release-mode">How to tell if .net app was compiled in DEBUG or RELEASE mode?</a></p></li> <li><p><a href="http://stackoverflow.com/questions/290080/how-to-check-if-dll-is-debug-compiled">How to check if DLL is debug-compiled</a></p></li> </ul> http://stackoverflow.com/questions/102902/what-is-a-good-ci-build-process 4 What is a good CI build-process Claus Thomsen 2008-09-19T15:31:02Z 2009-03-05T06:53:00Z <p>What constitutes a good CI build-process?</p> <p>We use CI, but is deployment to production even a realistic CI goal when you have dependencies on several services that should be deployed too and other apps may depend on these too.</p> <p>Is a good good CI build process good enough when its automated to QA and manual from there?</p> http://stackoverflow.com/questions/102980/is-iis7-migration-a-piece-of-cake 0 Is IIS7 migration a piece of cake Claus Thomsen 2008-09-19T15:36:56Z 2009-01-13T22:27:06Z <p>I wish to migrate a website to windows 2008 platform, is there any obvious pitfalls i should be aware of?</p> <p>code base is c# 3.5,asp.net with ms ajax.</p> http://stackoverflow.com/questions/424018/using-uniqueidentifiers-guids-as-custom-properties-in-log4net/424171#424171 2 Answer by Claus Thomsen for Using uniqueidentifiers/guids as custom properties in log4net Claus Thomsen 2009-01-08T13:12:52Z 2009-01-08T13:12:52Z <p>For your example the following should work:</p> <pre><code>&lt;parameter&gt; &lt;parameterName value="@Oid" /&gt; &lt;dbType value="Guid" /&gt; &lt;layout type="log4net.Layout.RawPropertyLayout"&gt; &lt;key value="Id" /&gt; &lt;/layout&gt; &lt;/parameter&gt; </code></pre> <p>Important is you rename @id to something else otherwise you will get Null values in database even if you try to insert strings,</p> <p>And then use RawPropertyLayout to store, cus you do not need to do a convertion.</p> http://stackoverflow.com/questions/301499/how-to-detect-image-format-in-a-stream 0 How to detect image format in a stream Claus Thomsen 2008-11-19T10:37:26Z 2008-11-19T10:45:18Z <p>I need to detect Image format to save a image like image1.jpg, image2.gif, but i only have a stream, and i do not know the image format(gif, jpeg, png, etc)</p> <p>Is there a way to detect imageformat from a stream?</p> http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net 3 how to log MethodName when wrapping Log4net Claus Thomsen 2008-10-01T11:50:01Z 2008-10-01T14:30:32Z <p>I have wrapped Log4net in a static wrapper and want to log </p> <pre><code>loggingEvent.LocationInformation.MethodName loggingEvent.LocationInformation.ClassName </code></pre> <p>However all i get is the name of my wrapper.</p> <p>How can i Log that info using a forwardingappender and a static wrapper class like </p> <pre><code>Logger.Debug("Logging to Debug"); Logger.Info("Logging to Info"); Logger.Warn("Logging to Warn"); Logger.Error(ex); Logger.Fatal(ex); </code></pre> http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net/157891#157891 1 Answer by Claus Thomsen for how to log MethodName when wrapping Log4net Claus Thomsen 2008-10-01T14:28:50Z 2008-10-01T14:28:50Z <p>Well the error was somewhere in my appender but for completeness ill include the answer to the best of my knowledge:</p> <p>the Facade you need should wrap ILogger and NOT ILog</p> <pre><code> public static class Logger { private readonly static Type ThisDeclaringType = typeof(Logger); private static readonly ILogger defaultLogger; static Logger() { defaultLogger = LoggerManager.GetLogger(Assembly.GetCallingAssembly(),"MyDefaultLoggger"); </code></pre> <p>...</p> <pre><code> public static void Info(string message) { if (defaultLogger.IsEnabledFor(infoLevel)) { defaultLogger.Log(typeof(Logger), infoLevel, message, null); } } </code></pre> http://stackoverflow.com/questions/141534/mvc-n-level-route-building 0 MVC n-level route building Claus Thomsen 2008-09-26T19:48:09Z 2008-09-27T00:43:57Z <p>I want to create a productcatalog with N-Level Categories</p> <blockquote> <p>e.g.</p> <pre><code>/Catalog/Category1/Category2/../SubCategoryN/Product/{ProductActions}/{ID} And at the same time be able to /Catalog/Category1/Category2/../SubCategoryN/{CategoryActions} </code></pre> </blockquote> <p>Is that possible and if Yes how?</p> http://stackoverflow.com/questions/141916/what-are-the-good-code-review-walkthrough-techniques/141998#141998 1 Answer by Claus Thomsen for What are the good code review/walkthrough techniques? Claus Thomsen 2008-09-26T21:11:04Z 2008-09-26T21:11:04Z <p>A good review start is to write the checkin comments before the reviewer get there, that way review startingpoint is WHAT code needs to accomplish and not how its done - if code review does not catch the essence of what coder wants accomplished then its a waste of time.</p> http://stackoverflow.com/questions/141781/net-web-service-logging/141835#141835 4 Answer by Claus Thomsen for .Net Web Service Logging Claus Thomsen 2008-09-26T20:39:27Z 2008-09-26T20:39:27Z <p>Use wcf if possible and implement message logging see <a href="http://msdn.microsoft.com/en-us/library/ms730064.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms730064.aspx</a></p> <pre><code>&lt;system.diagnostics&gt; &lt;sources&gt; &lt;source name="System.ServiceModel.MessageLogging"&gt; &lt;listeners&gt; &lt;add name="messages" type="System.Diagnostics.XmlWriterTraceListener" initializeData="c:\logs\messages.svclog" /&gt; &lt;/listeners&gt; &lt;/source&gt; &lt;/sources&gt; &lt;/system.diagnostics&gt; &lt;system.serviceModel&gt; &lt;diagnostics&gt; &lt;messageLogging logEntireMessage="true" logMalformedMessages="false" logMessagesAtServiceLevel="true" logMessagesAtTransportLevel="false" maxMessagesToLog="3000" maxSizeOfMessageToLog="2000"/&gt; &lt;/diagnostics&gt; &lt;/system.serviceModel&gt; </code></pre> http://stackoverflow.com/questions/116147/how-do-you-install-a-ssl-certificate/116219#116219 1 Answer by Claus Thomsen for How do you Install a SSL Certificate Claus Thomsen 2008-09-22T17:22:20Z 2008-09-22T17:22:20Z <p>You can look at </p> <p><a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/bf6b6472-f58e-4271-9297-284357f69023.mspx?mfr=true" rel="nofollow">http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/bf6b6472-f58e-4271-9297-284357f69023.mspx?mfr=true</a></p> <p>Something like: set ssl = CreateObject("IIS.CertObj")</p> <p>ssl.InstanceName = "0.0.0.0:443"</p> <p>ssl.Import pfxfile, pfxfilepassword, true, true </p> http://stackoverflow.com/questions/104815/reduce-startup-time-of-net-windows-form-app-running-off-of-a-networked-drive/104870#104870 2 Answer by Claus Thomsen for Reduce startup time of .NET windows form app running off of a networked drive Claus Thomsen 2008-09-19T19:37:50Z 2008-09-19T19:37:50Z <p>To speed up load time, you can compile a tiny start application and let that application do the loading of assemblies in runtime from a library outside bin folder.</p> <p><a href="http://support.microsoft.com/kb/837908" rel="nofollow">http://support.microsoft.com/kb/837908</a></p> http://stackoverflow.com/questions/104579/cvs-and-visual-studio-2008-integration-options/104778#104778 -1 Answer by Claus Thomsen for CVS and Visual Studio 2008 - integration options Claus Thomsen 2008-09-19T19:24:37Z 2008-09-19T19:24:37Z <p>Ankh is a open source choice</p> <p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">http://ankhsvn.open.collab.net/</a></p> http://stackoverflow.com/questions/102980/is-iis7-migration-a-piece-of-cake/103430#103430 1 Answer by Claus Thomsen for Is IIS7 migration a piece of cake Claus Thomsen 2008-09-19T16:24:28Z 2008-09-19T16:24:28Z <p>I googled a bit and found this link:</p> <p><a href="http://weblogs.asp.net/steveschofield/archive/2008/09/04/iis6-to-iis7-migration-tips-tricks.aspx" rel="nofollow">http://weblogs.asp.net/steveschofield/archive/2008/09/04/iis6-to-iis7-migration-tips-tricks.aspx</a></p> <p>Biggest Issue i find is that 3rd party components needs to have 64bit version ready to get most of benefits.</p> http://stackoverflow.com/questions/103000/should-i-store-a-database-id-field-in-viewstate/103141#103141 0 Answer by Claus Thomsen for Should I store a database ID field in ViewState? Claus Thomsen 2008-09-19T15:50:50Z 2008-09-19T15:50:50Z <p>If its a simple id will choose to pass it in querystring, that way you do not need to do postbacks and page is more accessible for users and search engines.</p> http://stackoverflow.com/questions/93834/when-is-multi-threading-not-a-good-idea/93909#93909 1 Answer by Claus Thomsen for When is multi-threading not a good idea? Claus Thomsen 2008-09-18T16:01:25Z 2008-09-18T16:01:25Z <p>In priciple everytime there is no overhead for the caller to wait in a queue.</p> http://stackoverflow.com/questions/93228/what-casing-is-a-driveletter 0 What casing is a driveletter Claus Thomsen 2008-09-18T14:47:06Z 2008-09-18T15:25:55Z <p>is it uppercased C:\ or lowercased c:\ ?</p> <p>We tried to come up with a conclusion, only argument is that that MS displays uppercase (C:)</p> <p>Its not what is technically correct, its a matter of arguments choosing what to use when creating config file or hardcode other path info's e.g in a deployment script.</p> http://stackoverflow.com/questions/92860/eventhandling-in-ascx-usercontrols 1 Eventhandling in ascx usercontrols Claus Thomsen 2008-09-18T14:10:01Z 2008-09-18T14:21:32Z <p>What is best practises for communicating events from a usercontrol to parent control/page i want to do something similar to this:</p> <pre><code>MyPage.aspx: &lt;asp:Content ID="Content1" ContentPlaceHolderID="MainContentPlaceholder" runat="server"&gt; &lt;uc1:MyUserControl ID="MyUserControl1" runat="server" OnSomeEvent="MyUserControl_OnSomeEvent" /&gt; MyUserControl.ascx.cs: public partial class MyUserControl: UserControl { public event EventHandler SomeEvent; .... private void OnSomething() { if (SomeEvent!= null) SomeEvent(this, EventArgs.Empty); } </code></pre> <p>Question is what is best practise?</p> http://stackoverflow.com/questions/88522/best-way-to-convert-a-decimal-value-to-a-currency-string-for-display-in-html/88555#88555 2 Answer by Claus Thomsen for Best way to convert a decimal value to a currency string for display in HTML. Claus Thomsen 2008-09-17T23:06:35Z 2008-09-17T23:06:35Z <p>Use </p> <pre><code>GetPrice().ToString("C", CultureInfo.CreateSpecificCulture("en-GB")) </code></pre> http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc/908099#908099 Comment by Claus Thomsen on Easy way to check for view model changes in asp.mvc Claus Thomsen 2009-05-27T09:37:28Z 2009-05-27T09:37:28Z @Todd The idea, was to avoid the round trip to DB. Linq2Sql's Datacontext is only open during 1 request and cache is closed when new request comes in for the update. I can implement a application query cache, but it adds complexity. http://stackoverflow.com/questions/908073/easy-way-to-check-for-view-model-changes-in-asp-mvc/908099#908099 Comment by Claus Thomsen on Easy way to check for view model changes in asp.mvc Claus Thomsen 2009-05-25T21:49:58Z 2009-05-25T21:49:58Z My problem is that its costly to look up data again, just to see if user has modified any fields. Yes my ORM LINQ can take care of it, but it will hit DB for each request with a expensive aggregated sql which im not that keen on. Also storing it in Server cache would complicate matters, but it may be a viable solution if no other option presents itself. http://stackoverflow.com/questions/657282/refresh-problem/657471#657471 Comment by Claus Thomsen on Refresh Problem Claus Thomsen 2009-04-15T14:13:45Z 2009-04-15T14:13:45Z asp.net uses form to post all data to server. The server side events are generated based on info in the post of form, and thus if you hit F5 you Resend form, and server side events get raised again. To Avoid this problem Post of forms should always be redirected to new &quot;clean&quot; page after process. http://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons/659114#659114 Comment by Claus Thomsen on How to associate labels with radio buttons Claus Thomsen 2009-03-18T17:15:52Z 2009-03-18T17:15:52Z well its was not a copy paste he beat me to it... However troethom's first example is still flawed http://stackoverflow.com/questions/658689/how-to-associate-labels-with-radio-buttons/658701#658701 Comment by Claus Thomsen on How to associate labels with radio buttons Claus Thomsen 2009-03-18T16:41:49Z 2009-03-18T16:41:49Z Im afraid this solution produces invalid html where id is dublicated http://stackoverflow.com/questions/654586/ddd-modeling-mn-relation-between-two-roots-where-the-relation-itself-carries-se/654806#654806 Comment by Claus Thomsen on DDD: Modeling M:N relation between two roots where the relation itself carries semantic meaning Claus Thomsen 2009-03-17T16:30:27Z 2009-03-17T16:30:27Z My point is that is it the relationship that is active/inactive or is it the customer. It woul make a much simpler model if those where attributes of customer instead of having a &quot;meta data&quot; entity between them http://stackoverflow.com/questions/14923/can-i-generate-asp-net-mvc-routes-from-a-sitemap/15112#15112 Comment by Claus Thomsen on Can I generate ASP.NET MVC routes from a Sitemap? Claus Thomsen 2009-03-16T15:22:28Z 2009-03-16T15:22:28Z Andrei Rinea: &quot;{controller}/{action}/{*categoryPath}&quot; will do the trick the important part is * that ensures wildcard mapping to N-level categories, but your controller needs to parse the categories manually http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650141#650141 Comment by Claus Thomsen on Search engine friendly urls in ASP dot NET Claus Thomsen 2009-03-16T15:02:35Z 2009-03-16T15:02:35Z Eric, I cannot see how Asp.Net Routing will solve issue of maintaning e.g. pagerank for old url. So in my opinion using Asp.net routing on an existing site will make SEO even worse. For a long term solution i can second eventually substituting a UrlRewrite that issues a 301 with Asp.net Routing. http://stackoverflow.com/questions/650109/search-engine-friendly-urls-in-asp-dot-net/650141#650141 Comment by Claus Thomsen on Search engine friendly urls in ASP dot NET Claus Thomsen 2009-03-16T12:59:15Z 2009-03-16T12:59:15Z Well it does not solve issue of posting a 301 redirect to client and as far as i understand post its a SEO thing that Arjun is looking for. http://stackoverflow.com/questions/643131/is-there-a-rrdtool-net-equivalent/647435#647435 Comment by Claus Thomsen on Is there a RRDTool .net equivalent Claus Thomsen 2009-03-16T11:55:59Z 2009-03-16T11:55:59Z Definitely worth a look, its a step in right direction :) http://stackoverflow.com/questions/642337/html-css-in-asp-net-mvc-default-project/642424#642424 Comment by Claus Thomsen on html css in asp.net mvc default project Claus Thomsen 2009-03-13T12:42:55Z 2009-03-13T12:42:55Z the &quot;clear: both;&quot; is the key http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build/638190#638190 Comment by Claus Thomsen on How can I know a dll is not a debug build Claus Thomsen 2009-03-12T11:57:22Z 2009-03-12T11:57:22Z Its the non-programatic solution I was looking for :) Only problem is that ildasm.exe is not a &quot;standard&quot; installation for a production server. http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build Comment by Claus Thomsen on How can I know a dll is not a debug build Claus Thomsen 2009-03-12T11:52:28Z 2009-03-12T11:52:28Z The &quot;Duplicate&quot; is correct but the anwers there did not suit my needs. It a production server and i do not have access to installing neither own apps or 3rd party. http://stackoverflow.com/questions/638104/how-can-i-know-a-dll-is-not-a-debug-build/638209#638209 Comment by Claus Thomsen on How can I know a dll is not a debug build Claus Thomsen 2009-03-12T11:41:57Z 2009-03-12T11:41:57Z Unfortunately I do not have project available for compiling again :( http://stackoverflow.com/questions/157232/how-to-log-methodname-when-wrapping-log4net Comment by Claus Thomsen on how to log MethodName when wrapping Log4net Claus Thomsen 2008-10-01T14:02:46Z 2008-10-01T14:02:46Z Actually i wrap it like LoggerManager.GetLogger(Assembly.GetCallingAssembly(),&quot;MyDefaultLoggger&quot;), in order to avoid it