User tobsen - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:35:51Z http://stackoverflow.com/feeds/user/27083 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1772140/using-app-config-to-set-strongly-typed-variables/1772249#1772249 0 Answer by tobsen for Using App.config to set strongly-typed variables tobsen 2009-11-20T17:57:18Z 2009-11-20T17:57:18Z <p>The thing JayG suggested can be done by the Visual Studio automatically. Use the appsettings wizard <a href="http://msdn.microsoft.com/en-us/library/25zf0ze8.aspx" rel="nofollow">as described in the MSDN</a>. Also the whole <a href="http://msdn.microsoft.com/en-us/library/a65txexh.aspx" rel="nofollow">Application Settings</a> infrastructure might be worth a read.</p> http://stackoverflow.com/questions/1772004/how-can-i-make-the-xmlserializer-only-serialize-plain-xml/1772182#1772182 6 Answer by tobsen for How can I make the xmlserializer only serialize plain xml? tobsen 2009-11-20T17:49:15Z 2009-11-20T17:49:15Z <p>You can use <strong>XmlWriterSettings</strong> and set the property <strong>OmitXmlDeclaration</strong> to true as <a href="http://msdn.microsoft.com/de-de/library/system.xml.xmlwritersettings%28VS.80%29.aspx" rel="nofollow">described in the msdn</a>. Then use the <strong>XmlSerializer.Serialize(xmlWriter, objectToSerialize)</strong> <a href="http://msdn.microsoft.com/en-us/library/aa335857%28VS.71%29.aspx" rel="nofollow">as described here</a>.</p> http://stackoverflow.com/questions/1538068/build-merge-module-without-devenv-from-vdproj 2 Build merge module without Devenv from .vdproj tobsen 2009-10-08T14:11:21Z 2009-11-12T23:16:24Z <p>I read quit a few Stackoverflow Questions about building mergemodules via commandline but all of them were accepted when either somebody suggested to use devenv for compilation or use Dark to create wix-files from existing msi files.</p> <p>Considering the following:</p> <ul> <li>VisualStudio isn't installed on the buildserver I have to use.</li> <li>I am using nant + msbuild to compile the solutions</li> <li>I would like to compile mergemodules from .vdroj (because Visualstudio detects dependencys automatically)</li> <li>and create a msi setup from multiple mergemodules</li> </ul> <p>... how can I build the merge modules from commandline without devenv and without loosing the comfort of automated dependencie resolving for mergemodules in visualstudio? Maybe there is a nanttask for it I haven't found?</p> http://stackoverflow.com/questions/722189/any-other-object-to-object-mapping-solutions-other-than-automapper-in-net/1620555#1620555 0 Answer by tobsen for Any other object-to-object mapping solutions other than AutoMapper in .NET? tobsen 2009-10-25T10:27:45Z 2009-10-25T10:27:45Z <p>I found out about <a href="http://code.google.com/p/otis-lib/" rel="nofollow">otis</a> in this <a href="http://stackoverflow.com/questions/286294/object-to-object-mapper/1081480#1081480">answer</a>. It uses String attributes on the classes.</p> http://stackoverflow.com/questions/1473651/log4net-and-mailing/1522701#1522701 0 Answer by tobsen for log4net and mailing tobsen 2009-10-05T22:20:39Z 2009-10-05T22:20:39Z <p>You wrote </p> <blockquote> <p>It seems like the config file of log4net is embedded I guess, you have a few options:</p> </blockquote> <p>If you have the source code of the original program, do not embed the Log4Net file and change it according to Don Kirkby suggestions (add a SmtpAppender).</p> <p>If you don't have the source code but you are legally alowed to, you can disassemble the program, change the embedded resource (add a SmtpAppender) and put it back into together (e.g.: <code>csc.exe /out:main.exe /target:exe /resource:main.exe.config main.cs</code>).</p> <p>Or, if you don't have the source code and are not allowed to reverse engineer, you can modifiy the way log4net gets configured and load another configuration file instead of the embedded one. To do this, I guess this <a href="http://svn.apache.org/viewvc/logging/log4net/trunk/src/Config/XmlConfigurator.cs?view=markup" rel="nofollow">XmlConfigurator Class</a> should be modified. If your original Assembly has been build agains a specific version of log4net you might want to add an <a href="http://msdn.microsoft.com/en-us/library/7wd6ex19%28VS.71%29.aspx" rel="nofollow">assembly redirect</a> so your costumized log4net.dll is used instead. After all you you should configure a SmtpAppender as suggested earlier.</p> http://stackoverflow.com/questions/1313591/logging-framework-being-injected-into-classes/1313692#1313692 1 Answer by tobsen for Logging framework being injected into classes tobsen 2009-08-21T19:00:12Z 2009-08-21T19:00:12Z <p>Even though you stated that logging isn't going to change, I suggest to abstract away from a specific logging framework. Injecting a logger instance however isn't needed in all cases. </p> <p>Take <a href="http://netcommon.sourceforge.net/" rel="nofollow">CommonLogging</a> (see <a href="http://stackoverflow.com/questions/1110638/file-logger-in-c/1114617#1114617">this Stackoverflow answer</a> for a short description of what Common.Logging is) for instance: Your class talks directly to the factory (LoggerManager) but you are not bound to a specific logger implementation.</p> http://stackoverflow.com/questions/1311579/what-is-the-best-way-to-support-multiple-databases-for-a-net-product/1311926#1311926 1 Answer by tobsen for What is the best way to support multiple databases for a .Net product? tobsen 2009-08-21T13:25:00Z 2009-08-21T13:25:00Z <p>If you need a mapping from database entries to Objects I suggest you go with the solution other already suggested: NHibernate. If this seems like overkill for your application and you want to go with the Ado.net approach and do not need a O/RM-soultion, you should have a look on what the Spring.net guys did and learn about the <a href="http://www.springframework.net/doc-latest/reference/html/ado.html#ado-providers" rel="nofollow">Ado.Net Provider Abstraction.</a></p> http://stackoverflow.com/questions/1212448/generating-restful-api-documentation-from-a-wcf-service/1216695#1216695 1 Answer by tobsen for Generating RESTful API documentation from a WCF Service tobsen 2009-08-01T14:17:30Z 2009-08-01T14:17:30Z <p>Sure, you can filter unwanted APIMembers with Sandcastle. <a href="http://blogs.msdn.com/sandcastle/archive/2008/06/18/filtering-apis-using-sandcastle.aspx" rel="nofollow">This blogentry</a> describes how. If you are new to Sandcastle, you might want to try out <a href="http://shfb.codeplex.com/" rel="nofollow">Sandcastle Help File Builder</a> as well, which is basically a <a href="http://sandcastle.codeplex.com/" rel="nofollow">Sandcastle</a> Frontend.</p> http://stackoverflow.com/questions/1056083/c-iphone-push-server/1114764#1114764 0 Answer by tobsen for C# iPhone push server? tobsen 2009-07-11T22:03:09Z 2009-07-11T22:03:09Z <p>I recently used <a href="http://www.growlforwindows.com/gfw/default.aspx" rel="nofollow">Growl For Windows</a> to push messages to the Prowl client <a href="http://www.growlforwindows.com/gfw/developers.aspx" rel="nofollow">on the IPhone from .Net code</a>. So you might get your functionatlity without writing a push server yourself.</p> http://stackoverflow.com/questions/1110638/file-logger-in-c/1114617#1114617 1 Answer by tobsen for File logger in C# tobsen 2009-07-11T20:50:59Z 2009-07-11T20:50:59Z <p>There are various logging frameworks out there as others already said. I suggest you use <a href="http://netcommon.sourceforge.net/" rel="nofollow">CommonLogging</a> (by Mark Pollack , Erich Eichinger , Bruno Baia - who are also the heads behind Spring.Net) so you are independant of a specific logger implementation and can change it via configuration once you find out you need another loggingfeature. .Net CommonLogging features adapters for the following Logging libraries: </p> <ul> <li>System.Trace</li> <li>Log4Net</li> <li>NLog</li> <li>MS Enterprise Library</li> <li>A simple ConsoleOut logger</li> </ul> <p>and you can easily write <a href="http://netcommon.sourceforge.net/docs/2.0.0/reference/html/ch01.html#logging-advanced-customfactoryadapter" rel="nofollow">your own adapter</a> or <a href="http://netcommon.sourceforge.net/docs/2.0.0/reference/html/ch01.html#d4e362" rel="nofollow">bridge between</a> the logging adapters.</p> http://stackoverflow.com/questions/1023738/how-to-reference-spring-nets-objectfactory-in-the-config 0 How to reference Spring.Net's ObjectFactory in the config? tobsen 2009-06-21T11:49:21Z 2009-06-21T19:43:09Z <p>I would like to use prototype interceptors instead of a singleton interceptor so each session would get a new interceptor instance.</p> <p>I looked into the HibernateTransactionManager Class and I think "EntityInterceptorObjectName" and "ObjectFactory" are the properties I have to set.</p> <p>While EntityInterceptorObjectName is pretty obvious, <strong>I have no clue how to reference the ObjectFactory</strong> when it's the "mother of the ObjectFactories", e.g. the same ObjectFactory which creates the AppContext/the HibernateTransactionManager.</p> <p>The relevant part of the config:</p> <pre><code> &lt;object id="HibernateTransactionManager" type="Spring.Data.NHibernate.HibernateTransactionManager, Spring.Data.NHibernate20"&gt; &lt;property name="DbProvider" ref="DbProvider"/&gt; &lt;property name="SessionFactory" ref="SessionFactory"/&gt; &lt;!-- the name of my non-Singleton EntityInterceptor--&gt; &lt;property name="EntityInterceptorObjectName" value="MyPrototypeEntityInterceptor" /&gt; &lt;!-- What should I put as ref here? --&gt; &lt;property name="ObjectFactory" ref="" /&gt; &lt;/object&gt; &lt;object id="MyPrototypeEntityInterceptor" type="Hib.EntityInterceptor, Hib.Interceptors" singleton="false"&gt; &lt;/object&gt; </code></pre> http://stackoverflow.com/questions/974518/how-to-deal-with-null-request-scoped-objects-in-spring-net/1023742#1023742 0 Answer by tobsen for How to deal with null request scoped objects in Spring.NET tobsen 2009-06-21T11:53:16Z 2009-06-21T11:53:16Z <p>I dont know how to get Spring.NET to accept a null from a factory method but maybe you can make use of the <a href="http://en.wikipedia.org/wiki/Null%5FObject%5Fpattern" rel="nofollow">NullObject Pattern</a> in your factory method, so that your factory returns <em>an Object which does nothing</em> instead of a null reference.</p> http://stackoverflow.com/questions/847402/creating-new-objects-with-spring-net/1019437#1019437 1 Answer by tobsen for Creating new Objects With SPRING.Net tobsen 2009-06-19T18:35:21Z 2009-06-19T18:35:21Z <p>It is not clear what you are trying to achieve by looping over the "GetObject("obj")" method. Maybe you can post the loop-code?</p> <p>What "GetObject("obj")" does is to ask the Container for the Object with the name "obj". You stated that want to change the object's properties and add it to a list. This is something the container can do for you: Set the properties of an Object: <a href="http://www.springframework.net/doc-latest/reference/html/objects.html#objects-simple-values" rel="nofollow">http://www.springframework.net/doc-latest/reference/html/objects.html#objects-simple-values</a> Create a list: <a href="http://www.springframework.net/doc-latest/reference/html/objects.html#objects-simple-values" rel="nofollow">http://www.springframework.net/doc-latest/reference/html/objects.html#objects-collections-values</a></p> <p>This list can be injected into an Object you choose.</p> <p>If you just want non-singleton objects of your IObj, naders answer is correct. Spring calls these non-singleton objects "prototypes". An overview of available Scopes can be found here: <a href="http://www.springframework.net/doc-latest/reference/html/objects.html#objects-factory-scopes" rel="nofollow">http://www.springframework.net/doc-latest/reference/html/objects.html#objects-factory-scopes</a></p> http://stackoverflow.com/questions/455659/pointcut-not-working-with-spring-aop/455919#455919 1 Answer by tobsen for Pointcut not working with Spring AOP tobsen 2009-01-18T21:23:36Z 2009-06-02T21:14:32Z <p>Scott Bale is right: Let spring instatiate the TixServiceImpl for you. Also in cases like this, enabling Springs logging might help because it tells you how many targets for a aspect/avice were found.</p> http://stackoverflow.com/questions/538117/what-are-your-favourite-fxcop-rules/538279#538279 0 Answer by tobsen for What are your favourite FxCop rules? tobsen 2009-02-11T19:08:06Z 2009-02-11T19:08:06Z <blockquote> <p>Which FxCop rules do you most value?</p> </blockquote> <p>The one I am going to write to stop developers from using #defines instead of configuration (<a href="http://stackoverflow.com/questions/473354/quote-needed-preprocessor-usage-is-bad-oo-practice">http://stackoverflow.com/questions/473354/quote-needed-preprocessor-usage-is-bad-oo-practice</a>). And I like almost all of the design rules.</p> http://stackoverflow.com/questions/512690/programmatic-msil-injection/512843#512843 0 Answer by tobsen for Programmatic MSIL injection tobsen 2009-02-04T19:14:48Z 2009-02-04T19:14:48Z <p>You can use static MSIL Injection. Mono Cecil or PostSharp maybe helpful.</p> http://stackoverflow.com/questions/492703/c-vs-java-garbage-collector/492816#492816 1 Answer by tobsen for C# vs Java Garbage Collector tobsen 2009-01-29T18:26:41Z 2009-01-29T18:26:41Z <p>I found this:</p> <blockquote> <p>In the J2SE platform version 1.4.2 there were four garbage collectors from which to choose but without an explicit choice by the user the serial garbage collector was always chosen. In version 5.0 the choice of the collector is based on the class of the machine on which the application is started.</p> </blockquote> <p><a href="http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html" rel="nofollow">here</a> and this </p> <blockquote> <p>Also just as the JVM manages the destruction of objects so also does the CLR via a Mark and Compact garbage collection algorithm</p> </blockquote> <p><a href="http://www.25hoursaday.com/CsharpVsJava.html#heap" rel="nofollow">here</a></p> <p>I hope this helps...</p> http://stackoverflow.com/questions/473354/quote-needed-preprocessor-usage-is-bad-oo-practice 5 Quote needed: Preprocessor usage is bad OO practice tobsen 2009-01-23T15:42:44Z 2009-01-28T21:26:11Z <p>I believe, that the usage of preprocessor directives like <code>#if UsingNetwork</code> is bad OO practice - other coworkers do not. I think, when using an IoC container (e.g. Spring), components can be easily configured if programmed accordingly. In this context either a propery <code>IsUsingNetwork</code> can be set by the IoC container or, if the "using network" implementation behaves differently, another implementation of that interface should be implemented and injected (e.g.: IService, ServiceImplementation, NetworkingServiceImplementation).</p> <p>Can somebody please provide <strong>citations of OO-Gurus</strong> or <strong>references in books</strong> which basically reads "Preprocessor usage is bad OO practice if you try to configure behaviour which should be configured via an IoC container"? </p> <p><strong>I need this citations to convince coworkers to refactor...</strong></p> <p>Edit: I do know and agree that using preprocessor directives to change targetplatform specific code during compilation is fine and that is what preprocessor directives are made for. However, I think that runtime-configuration should be used rather then compiletime-configuration to get good designed and testable classes and components. In other words: Using #defines and #if's beyond what they are meant for will lead to difficult to test code and badly designed classes. Has anybody read something along these lines and can give me so I can refer to?</p> http://stackoverflow.com/questions/479599/are-there-any-jira-plugins-for-visual-studio/485577#485577 0 Answer by tobsen for Are there any Jira plugins for Visual Studio? tobsen 2009-01-27T22:20:05Z 2009-01-27T22:27:16Z <p>I only found that one <a href="http://unimplemented.blogspot.com/2008/05/visual-studio-add-in-suckage-part-deux.html" rel="nofollow">here</a>. It is unfinished - but maybe starting point... And while you're at it, you might want to try <a href="http://www.xml-rpc.net/" rel="nofollow">this lib</a> with Jiras Xml-Rpc. Maybe a poor mans Visual Studio Pluign isn't all that difficult to write?!</p> http://stackoverflow.com/questions/6047/what-to-do-with-a-video-wall/485054#485054 6 Answer by tobsen for What to do with a video wall tobsen 2009-01-27T20:19:18Z 2009-01-27T20:19:18Z <blockquote> <p>What other things we can stick on there?</p> </blockquote> <p>If you have a CruiseControl server somewhere which needs to be monitored, maybe <a href="http://code.google.com/p/bigvisiblecruise/" rel="nofollow">BigVisibleCruise</a> might be of interest.</p> http://stackoverflow.com/questions/484844/how-would-you-define-the-ininja-interface/484927#484927 0 Answer by tobsen for How Would You Define the INinja Interface? tobsen 2009-01-27T19:46:58Z 2009-01-27T19:54:12Z <pre><code>public void Defeat(IPirate p); // should be IPirate for the different implementations like InternetPirate and AirPirate... </code></pre> <p>Obviously, if dependency injection is needed, <a href="http://ninject.org/" rel="nofollow">Ninject</a> would be used.</p> http://stackoverflow.com/questions/402334/nhibernate-and-spring-net-combination-really-helpful-in-the-enterprise-level-appl/474052#474052 1 Answer by tobsen for NHibernate and Spring.NET Combination really helpful in the enterprise level application! tobsen 2009-01-23T18:59:19Z 2009-01-23T18:59:19Z <p>Imo, Spring.Net and NHibernate go hand in hand: If you master the learning curve you will be very pleased when Spring is used for (almost transparent) <a href="http://www.springframework.net/doc-latest/reference/html/orm.html#orm-hibernate" rel="nofollow">transaction handling</a> for NHibernate, Dependency Injection as well as Db:Provider handling.</p> http://stackoverflow.com/questions/473790/unobtrusive-loggers-in-c/473910#473910 3 Answer by tobsen for unobtrusive loggers in c# tobsen 2009-01-23T18:08:16Z 2009-01-23T18:08:16Z <p>OffTopic: If you want "the logger syntax to be as unobtrusive " to the client code as possible, you might want to have a look at Aspect Oriented Programming once your logger is finished. But maybe you should take a short less painful route and use any of the great loggers available (log4Net, NLog, System.Trace or even Spring.Commonlogging).</p> http://stackoverflow.com/questions/473760/tool-for-diagnosing-memory-leaks-in-net-asp-net-application/473863#473863 0 Answer by tobsen for Tool for diagnosing memory leaks in .NET (ASP.NET Application) tobsen 2009-01-23T17:51:26Z 2009-01-23T17:51:26Z <p>I read about <a href="http://www.red-gate.com/products/ants_profiler/index.htm" rel="nofollow">Ants Profiler</a>. Good luck.</p> http://stackoverflow.com/questions/198341/progressbar-from-spring-context 0 Progressbar from Spring Context? tobsen 2008-10-13T17:28:37Z 2009-01-04T15:33:13Z <p>I would like to create a window with a progressbar which shows the current status of Spring's object instantiation. From Spring.Net's <a href="http://www.springframework.net/docs/1.1.2/reference/html/objects.html#objects-factory-customizing" rel="nofollow">documentation</a> it seems that <code>IObjectPostProcessors</code> is the right point to start and track whenever an Object has been instanciated. However in order to get "Percentage of instantiated classes" I need to ask <code>ObjectDefinitionCount</code> of spring's factory to get the number of configured object. However this does not work until the contextcreation has been finished (also <a href="http://stackoverflow.com/questions/179140/how-do-i-find-out-when-the-springnet-root-context-has-loaded">this problem</a> problem seems to be related).</p> <p>If it's not possible to use Spring to get the start-up status, how do you display information during application start up to the user?</p> http://stackoverflow.com/questions/202714/huge-20-digits-primary-keys-and-sqlite 1 Huge (20 digits) Primary keys and SQLite tobsen 2008-10-14T20:43:11Z 2008-12-23T00:38:06Z <p>If I try to insert data with a 20 digit primary key into a SQLite database I get an error with the second insert statement because it "is not unique". If I select the values I can see from the SQLite commandprompt that the primary key is written in scientific notation. The column type is decimal. Is there a way to force SQLite to insert the values "as they are" keeping the precision / "normal representation" even with values that long?</p> http://stackoverflow.com/questions/205957/how-to-deal-with-an-inept-and-self-centered-programmer/206307#206307 1 Answer by tobsen for How to deal with an inept and self-centered programmer? tobsen 2008-10-15T20:29:17Z 2008-10-15T20:29:17Z <blockquote> <p>I am going to talk to his lead.</p> </blockquote> <p>I think you should talk to him first and tell him what you think he is doing wrong. Show him those various bugs/issues/whinig/ and the 8 points you posted. If he doesn't change, you can at least say that you tried everything before talking to his boss.</p> http://stackoverflow.com/questions/197447/how-to-find-all-dependencies-of-a-net-project/198768#198768 1 Answer by tobsen for How to find all dependencies of a .NET project? tobsen 2008-10-13T19:37:39Z 2008-10-14T21:00:00Z <p>During runtime <a href="http://www.systernals.com" rel="nofollow">Systernals</a>' <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">ProcessExplorer</a> might be helpful to see an assemblys dependencies.</p> <p>Also <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> can show you the dependencies and how tightly your components are coupled.</p> http://stackoverflow.com/questions/196512/is-there-a-sorted-collection-type-in-net/198699#198699 1 Answer by tobsen for Is there a sorted collection type in .NET? tobsen 2008-10-13T19:15:22Z 2008-10-13T19:15:22Z <p>As I mentioned earlier today <a href="http://stackoverflow.com/questions/198079/where-can-i-learn-about-the-various-types-of-net-lists#198683">here</a>, the <a href="http://www.itu.dk/research/c5/" rel="nofollow">C5 Generic Collection Library</a> has the proper container for you.</p> http://stackoverflow.com/questions/198079/where-can-i-learn-about-the-various-types-of-net-lists/198683#198683 1 Answer by tobsen for Where can I learn about the various types of .NET lists? tobsen 2008-10-13T19:07:34Z 2008-10-13T19:07:34Z <p>In addition to the great answers so far, there are some more Collections available via the <a href="http://www.itu.dk/research/c5/" rel="nofollow">C5 Generic Collection Library</a>. The documentation (also on their site) may help when deciding what to use depending on your requirments.</p> http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1798816#1798816 Comment by tobsen on Using a "take-home" coding component in interview process tobsen 2009-11-25T18:23:49Z 2009-11-25T18:23:49Z If he takes StackOverflow into account I guess he's the right guy for the job anyways ;-) http://stackoverflow.com/questions/1798813/cant-delete-file-c/1798843#1798843 Comment by tobsen on Can't delete file - c# tobsen 2009-11-25T18:07:53Z 2009-11-25T18:07:53Z Or use the using directive in order to not forget to close/dispose the webclient: using (WebClient w = new WebClient()) { w.DownloadFile(&quot;<a href="http://file.com/exfile.jpg&quot" rel="nofollow">file.com/exfile.jpg&quot</a>;, &quot;exfile.jpg&quot;); } http://stackoverflow.com/questions/1538068/build-merge-module-without-devenv-from-vdproj/1542003#1542003 Comment by tobsen on Build merge module without Devenv from .vdproj tobsen 2009-11-20T18:08:41Z 2009-11-20T18:08:41Z Thanks for pointing that out. However this is really annoying, imo: &quot;However, heat is considerably less useful after initial project setup, because there is no way to preserve component GUIDs when repeating the process to acquire new files.&quot; http://stackoverflow.com/questions/1772224/passing-by-reference-not-working Comment by tobsen on passing by reference not working tobsen 2009-11-20T18:04:16Z 2009-11-20T18:04:16Z Instead of WriteLines, have a look at a TestRunner (www.testdriven.net or rehsarper) which allows you to run the tests from within the IDE while in Debug mode. http://stackoverflow.com/questions/833577/sample-application-for-microsoft-surface/1344793#1344793 Comment by tobsen on Sample application for microsoft surface? tobsen 2009-11-20T17:35:56Z 2009-11-20T17:35:56Z You can also download the surface SDK if you have msdn subscription. Also the Academic Alliance (MSDNAA) subscription (<a href="http://msdn.microsoft.com/en-us/academic/dd795227.aspx" rel="nofollow">msdn.microsoft.com/en-us/academic/&hellip;</a>) might get you there. http://stackoverflow.com/questions/286294/object-to-object-mapper/1081480#1081480 Comment by tobsen on Object to object mapper tobsen 2009-10-25T10:22:12Z 2009-10-25T10:22:12Z +1 for mentioning an alternative. http://stackoverflow.com/questions/1544494/why-is-xml-so-prominently-featured-in-ioc-containers/1544761#1544761 Comment by tobsen on Why is xml so prominently featured in IOC containers? tobsen 2009-10-09T16:40:34Z 2009-10-09T16:40:34Z That's the reason why I also favor XML: one doesn't need to recompile to change the behavior of a system (e.g. substitute a dependency, add an logging aspect etc.). Too bad the Java guys have things like SpringIDE but .Net still has nothing comparable. So we have to use XSDs and UnitTests. IMO IoC-Containers which are purely configurable in code and not via external configuration files (Ninject, LinFu?) are missing an important part of IoC. To my mind, Attributes are also not the way to go: instead of removing dependencies from your class you add a dependency to an IoC container. http://stackoverflow.com/questions/1538068/build-merge-module-without-devenv-from-vdproj/1541967#1541967 Comment by tobsen on Build merge module without Devenv from .vdproj tobsen 2009-10-09T07:37:43Z 2009-10-09T07:37:43Z Faisal Mohamood MSFT, Manager on the MSBuild team said: &quot;[...] deployment projects are not supported via the MSBuild task, [...] We expect to work on enabling this scenario in one of the future releases.&quot; He said that years ago in this msdn conversation <a href="http://snurl.com/seu1c" rel="nofollow">snurl.com/seu1c</a> . So I wouldn't be surprised at all. In fact I am surprised that MSBuild still seems to be unable to compile vdproj. http://stackoverflow.com/questions/1538068/build-merge-module-without-devenv-from-vdproj/1542003#1542003 Comment by tobsen on Build merge module without Devenv from .vdproj tobsen 2009-10-09T07:14:17Z 2009-10-09T07:14:17Z Is there a userfriendly way to build mergemodules? I am not keen on putting lots of xml together manually. http://stackoverflow.com/questions/89741/can-i-see-the-currently-checked-out-revision-number-in-tortoise-svn/89817#89817 Comment by tobsen on Can I see the currently checked out revision number in Tortoise SVN ? tobsen 2009-10-08T14:52:27Z 2009-10-08T14:52:27Z I'll +1 on this answer because this SO-answer is returned by google when I searched for &quot;svn currently checked out revision&quot;. And you answered at least that ;-) http://stackoverflow.com/questions/1476891/c-interesting-key-file-question/1476947#1476947 Comment by tobsen on C# Interesting Key File Question tobsen 2009-09-25T12:26:38Z 2009-09-25T12:26:38Z ROT-* is neither secure nor is it something which could help the poster because you didn't provide additonal information of what ROT is or how to implement that in c#. http://stackoverflow.com/questions/1190107/nant-exclude-folder/1190253#1190253 Comment by tobsen on nant exclude folder tobsen 2009-09-04T07:38:48Z 2009-09-04T07:38:48Z Where should I add this? Can you provide a full example or adjust your question accordingly please? http://stackoverflow.com/questions/1311579/what-is-the-best-way-to-support-multiple-databases-for-a-net-product/1316094#1316094 Comment by tobsen on What is the best way to support multiple databases for a .Net product? tobsen 2009-08-25T10:36:35Z 2009-08-25T10:36:35Z Then please +1 vote the answers which you liked/helped the most or atleast pick one and accept it as the answer to your question. Tia. http://stackoverflow.com/questions/863186/what-are-the-best-characteristics-of-a-datalayer-framework-for-wpf-mvvm-applicati/1294841#1294841 Comment by tobsen on What are the best characteristics of a datalayer framework for WPF/MVVM applications? tobsen 2009-08-21T18:41:19Z 2009-08-21T18:41:19Z +1 because you pointed out that persistence methods do not work well inside of the object and that PI (persistence ignorant) PONOs (plain old net objects, (also POCO, plain old CLR objects)) can be used instead. http://stackoverflow.com/questions/1306514/how-many-runtimes-clrs-can-be-loaded-in-a-single-process/1306534#1306534 Comment by tobsen on How many runtimes (CLRs) can be loaded in a single process? tobsen 2009-08-21T13:04:58Z 2009-08-21T13:04:58Z Maybe you can add a reference?