blog community

Welcome to blog community Sign in | Join | Help
in Search

Browse by Tags

All Tags » .NET
Showing page 1 of 27 (268 total posts)
  • Access denied when signing an assembly

    This afternoon my computer decided it had done enough for me and tried stopping me from compiling the prismcontrib project. I have signed the prismAg assemblies for an experiment I will be posting about this week, but for some weird reason I got an access denied error when I tried rebuilding the solution from the console. It turns out I am not ...
    Posted to Willem Meints (Weblog) by willemm on September 27, 2008
  • TypeForwardedTo Attribute

    It’s the little things that make working with .NET fun. Especially the sometimes not so useful documentation or classes you never knew existed. I was surprised  to discover that Microsoft has a TypeForwardedTo attribute to indicate that a type has moved from one assembly to a new assembly. Read all about it here: ...
    Posted to Willem Meints (Weblog) by willemm on August 27, 2008
  • .NET is not always that useful

    Please don't start e-mailing me that I am wrong here, for the most part .NET is a great framework and it contains a lot of useful components. Except for the GridTablesFactory class. I have no idea what it does and appearantly Microsoft isn't so sure either.
    Posted to Willem Meints (Weblog) by willemm on August 4, 2008
  • Running ASP.NET websites from the Global Assembly Cache

    Running ASP.NET websites from the GAC was always something I wanted to try out, because with 40 websites running exactly the same code there must be a better way to deploy them. So last week I tried it out and to my surprise it worked right away. Here’s how to do it with your own websites Step 1: Sign the website assembly Before you can place ...
    Posted to Willem Meints (Weblog) by willemm on July 21, 2008
  • Dude where’s my FxCop documentation?

    Currently I’m in the final stages of completing development on a new Polaris tool. One of things that still needs to be done is checking for any violations of FxCop rules. While most rules are pretty clear to me, others still require a read-up in the documentation. I’m still stuck with FxCop 1.32 and so I can’t really use the links that are ...
    Posted to Willem Meints (Weblog) by willemm on June 19, 2008
  • Customizing Windows PowerShell – Part 3

    In this third part I'm going to show a demo of a powershell provider I created in dead moment on a Thursday evening (grin). This post is part of a series consisting of currently four parts (not all published, but that doesn't matter). The first two parts can be found here: Part 1 – Introduction to PowerShell customization Part ...
    Posted to Willem Meints (Weblog) by willemm on April 28, 2008
  • Customizing Windows PowerShell - Part 2

    This is the second part of the series on customizing Windows PowerShell. This time I'm going to explain how to create your own commandlets. Commandlets are a very powerful way to extend the functionality of Windows PowerShell, it's also one of the most common scenario's people will use for extending PowerShell. Commandlet basics Every non-system ...
    Posted to Willem Meints (Weblog) by willemm on April 14, 2008
  • Customizing Windows PowerShell – Part 1

    9 April A colleague and I held a presentation about Windows PowerShell. We discussed how to use it and how you can customize PowerShell. I didn’t quite have enough time to explain the whole deal on customization, so I’m going to do that in a series of posts. The preliminary table of contents for the series looks like this: Part ...
    Posted to Willem Meints (Weblog) by willemm on April 14, 2008
  • Validation framework for WPF

    Introduction WPF offers some rather good stuff when it comes to applying validation to binding expressions. However it isn't complete in my opinion and could use some kind of extension to make it even easier and more effective to use in an application. There are a couple of things I noticed when working with validation in WPF: It is not ...
    Posted to Willem Meints (Weblog) by willemm on April 12, 2008
  • Adding sets of items to arbitrary collections using extensions methods

    Don't you just hate the fact that only some collection classes provide a possibility too add more than one item at once (such as List<T> does offer via AddRange). This means that often I'm writing this kind of code:var q = <some cool linq query>; foreach(var i in q) {    someCollection.Add(i); }So I decided to ...
    Posted to Raimond Brookman (Weblog) by Raimondb on April 7, 2008
1 2 3 4 5 Next > ... Last »
Powered by Community Server, by Telligent Systems