Category: Visual Studio .NET 2005

Problem loading solution Security exception

I discovered a problem with loading projects which had been compressed into a zip file. When I try to unzip and open the solution Visual Studio comes up with a Security Exception. I found out that if I marked the

C# Settings

How does the settings included in the .NET Framework. There is two types of settings: User Application   User The user settings can be edited when the application is running. Those settings are stored in the app.config but if the

Certificates for WCF – MakeCert.exe

If you have to create a certificate to use under developing an application here is some good links: Creating Test Certificates with Makecert.exe Creating A Private Key-Public Key Pair

Visual C# 2005 Keyboard Shortcut Reference Poster

Here is a poster with the shortcuts for VS 2005. link here

UML 2 Shapes for Microsoft Visio 2007

If you are using Visio to draw UML diagrams you should take a look at this web side link. You can download the notations here

Making Your Application UAC Aware

This article is a guide to making applications UAC aware for Vista. An application can be made Vista aware through the use of an embedded manifest. The Manifest <?xml version="1.0" encoding="UTF-8" standalone="yes"?>     <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">     <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">        

MSI installer

Here is a short description of how the MSI installer in Visual Studio works. Klik Here

Remove Source Safe Bingings from Projet and solution

There is two ways to remove the source safe binding. Use Visual Studio to remove the binding Manual remove. Use Visual Studio Start visual studio without acces to the source safe server Select the Permanently remoce source control association bindings Klik

Post build. Add assembly to GAC

In Visual studio under the project click propeties. Then select the build events and then the post build event command line Enter: CALL "%VS80COMNTOOLS%\vsvars32.bat" > NULL gacutil.exe /if "$(TargetName)"

Top