User Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T18:48:53Z http://stackoverflow.com/feeds/user/25082 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/397718/background-intelligent-transfer-service-in-c/397752#397752 4 Answer by Martin for Background Intelligent Transfer Service In C# Martin 2008-12-29T14:01:36Z 2008-12-29T14:01:36Z <p>Yes, we're using it in a tool to let customers upload logs, dumps, etc. to our customer support department. You could use it directly via PInvoke/COMInterop, but I suggest to have a look at <a href="http://www.codeplex.com/sharpbits" rel="nofollow">SharpBITS.NET</a>, which wraps the BITS interface nicely. </p> http://stackoverflow.com/questions/391032/fast-easy-renaming-of-filenames-in-tfs-codeplex/391181#391181 3 Answer by Martin for Fast/easy renaming of filenames in TFS (CodePlex) Martin 2008-12-24T10:16:07Z 2008-12-24T10:16:07Z <p>You could use <a href="http://www.codeplex.com/CodePlex/Wiki/View.aspx?title=Obtaining%20the%20Team%20Explorer%20Client&amp;referringTitle=CodePlex%20FAQ" rel="nofollow">tf.exe</a> which is installed with TFS Team Explorer. See </p> <pre><code>tf.exe rename /? </code></pre> <p>for help. Hint: You have to use the /login parameter to specify your credentials. Without that tf.exe uses your windows account. A rename could then be like this:</p> <pre><code>tf rename /login:user,password old.cs new.cs </code></pre> http://stackoverflow.com/questions/365263/whats-your-favorite-c-open-source-project-of-the-year-2008/389687#389687 4 Answer by Martin for What's Your Favorite C# Open Source Project of the year 2008? Martin 2008-12-23T18:30:52Z 2008-12-23T18:30:52Z <p><a href="http://wix.sourceforge.net" rel="nofollow">Windows Installer XML Toolset</a></p> <p>Makes creating Windows Installer packages easy and similar to writing code. Uses a compile/link approach to build MSI packages from xml source. Most of the toolset is written in C#.</p> http://stackoverflow.com/questions/388059/rosetta-stone-lambda-expressions/389354#389354 3 Answer by Martin for Rosetta Stone: Lambda expressions Martin 2008-12-23T16:31:01Z 2008-12-23T16:31:01Z <p><a href="http://msdn.microsoft.com/en-us/fsharp/default.aspx" rel="nofollow">F#</a>:</p> <pre><code>fun x -&gt; x * x </code></pre> http://stackoverflow.com/questions/341372/how-do-i-create-powershell-2-0-modules/341643#341643 2 Answer by Martin for How do I create powershell 2.0 modules? Martin 2008-12-04T18:38:34Z 2008-12-04T18:38:34Z <p>Here's a little bit of information. <a href="http://huddledmasses.org/powershell-modules/" rel="nofollow">http://huddledmasses.org/powershell-modules/</a></p> <p><a href="http://blogs.msdn.com/mediaandmicrocode/archive/2008/08/10/microcode-all-about-modules-windows-powershell-ctp2.aspx" rel="nofollow">http://blogs.msdn.com/mediaandmicrocode/archive/2008/08/10/microcode-all-about-modules-windows-powershell-ctp2.aspx</a></p> <p>Let's hope that the upcoming CTP3 has some useful documentation about modules.</p> http://stackoverflow.com/questions/334189/how-to-build-only-a-handful-of-projects-contained-in-a-solution-using-msbuild/334769#334769 0 Answer by Martin for How to build only a handful of projects contained in a solution using MSBuild? Martin 2008-12-02T17:31:01Z 2008-12-02T17:31:01Z <p>You could create an additional solution configuration in your solution, e.g. called "Build". In that configuration only build the projects you want. In the teambuild project file use the element to specify that only your "Build" configuration should be built.</p> <p>Another option would be to create a separate solution only containing the projects you want to build.</p> http://stackoverflow.com/questions/323022/static-class-vs-class-with-private-constructor-and-all-static-properties-and-met/323033#323033 6 Answer by Martin for Static Class Vs. Class with private constructor and all static properties and methods? Martin 2008-11-27T05:57:05Z 2008-11-27T05:57:05Z <p>In addition to the previous answers: The compiler won't allow non-static members on static classes and produces and error. This may help a little bit to not accidently add non-static members.</p> http://stackoverflow.com/questions/318918/how-to-limit-file-size-in-tfs/322242#322242 1 Answer by Martin for How To limit file size in TFS Martin 2008-11-26T21:35:52Z 2008-11-26T21:35:52Z <p>Should be no problem as long as your SQL database has enough space. But anyway you could write a <a href="http://msdn.microsoft.com/en-us/library/bb668980.aspx" rel="nofollow">custom check-in policy</a> which checks the file size and does not allow the checkin if it's above your limit.</p> http://stackoverflow.com/questions/156035/how-can-you-limit-a-tfs-check-in-notes-to-a-custom-path/170048#170048 1 Answer by Martin for How can you limit a TFS Check-In notes to a custom path? Martin 2008-10-04T09:30:23Z 2008-10-04T09:30:23Z <p>We had a similar problem some time ago. For some sub tree we wanted to require entering a code reviewer. I ended up implementing a custom policy and used the Custom Path Policy to restrict it to certain folders. That works well, except that you have to deploy your policy assembly and TFS has no built-in mechanism for that, <a href="http://blogs.msdn.com/bharry/archive/2008/10/01/preview-of-the-next-tfs-power-tools-release.aspx" rel="nofollow">yet</a>.</p> http://stackoverflow.com/questions/159869/from-sourcesafe-to-team-foundation-server/170034#170034 0 Answer by Martin for From SourceSafe to Team Foundation Server Martin 2008-10-04T09:19:23Z 2008-10-04T09:19:23Z <p>When we switched from Sourcesafe to TFS2005 the biggest hurdle were Sourcesafe's shared files, the "Get latest on checkout" approach and the branch/merge "support" in Sourcesafe. Everybody feared branching and merging in Sourcesafe and it took some time convincing all colleagues that it is not that bad with TFS. </p> <p>We decided to not migrate files from Sourcesafe. We used TFS2005 for a new project and kept the old stuff in Sourcesafe. We didn't want to keep the project and folder structure which had grown over the years and was rather unorganized. </p> <p>The old stuff is history now and we do all development work with TFS2008. </p>