DevDays 2009

0
Realizou-se a semana passada o DevDays 2009, o evento anual da Microsoft Portugal destinado a juntar profissionais e curiosos em torno das tecnologias da casa, que este ano foi...

Sign Unsigned Assembly in .net

0
When you have an assembly, that is not signed, and you need to sign it you will need to run the following commands:MSIL Disassembler (Ildasm.exe)- http://msdn.microsoft.com/en-us/library/f7dy01k1(VS.80).aspxMSIL Assembler (Ilasm.exe) - http://msdn.microsoft.com/en-us/library/496e4ekx(VS.80).aspxExample:ildasm...

.NET XML Serialization of CDATA ATTRIBUTE

2
Recently I needed to create a .NET class (C#) that when serialized should contain a CDATA attribute similar to this: ...

TechEd EMEA 2008

0
Next week i'll be @ TechEd EMEA 2008 Developers in Barcelona with my colleague João Martins aka "Jota".I hope it will be a very interesting week, Pedro Rosa from Microsoft Portugal...

SharePoint 2007 – Checking if a Workflow Instance is Completed

0
Introduction This blog post will show you how to check if a certain workflow instance is completed in a SharePoint list. In this example, let's assume that the default "Documents"...

XNA is Not an Acronym

0
Are you a gamer? Are you a .Net developer? Do you still dream about being a game developer? Then Microsoft has good news for you. If you answers...

The Controls collection cannot be modified because the control contains code blocks (i.e. )

0
Because I have pages with the markup <%= someVariable%> like <script type="text/javascript"> function ConfirmCallBack(arg) ...

Codesmith, netTiers and reserved words

0
Started today using Codesmith tools today after a year or so since the last time that I used this great generation template based tool. I had to generate...

Conditional Post-build event in Visual Studio 2008

0
I have a class library project where I want to add the assembly to the GAC but only when the configuration is Debug. The solution is: if...

Using Sandcastle to Generate Documentation

0
Sandcastle is Microsoft's documentation compiler. It uses reflection of source assemblies and integrates the XML comments placed in the code by the developer to generate comprehensive MSDN-like documentation. Actually,...