Browse by Tags

All Tags » VSX (RSS)

Persisting custom properties on a Visual Studio project using object model

It is possible to persist custom properties in your Visual Studio project. I will show how using some PowerShell code in the NuGet console. Note that VariableValue() persist in session, the call to VariablePersists() writes to the project file for persistance...
Posted by svdoever | 4 comment(s)
Filed under: ,

Set the properties on your Visual Studio project

Reminder to self: Settings properties on a Visual Studio project,like DefaultNamespace and AssemblyName. In NuGet console window: (Get-Project).Properties.Item("DefaultNamespace").Value = "HelloWorld" Available properties on a simple...
Posted by svdoever | 3 comment(s)
Filed under: ,

Use VS2008 to create a VSPackage that runs in VS2008 and VS2005

We all want to use the new features in Visual Studio 2008 during development. When using VS2008 for VsPackage development we need to install the Visual Studio 2008 SDK. The approach taken for building VsPackages in VS2008 is incompatible with the approach...
Posted by svdoever | 6 comment(s)
Filed under:
More Posts