hi folks,
my fix for the win vista x64/VS Studio 2008 express problem is
create your new project - save
edit the .csproj found in your project directory file with any text editor
step 1
======
in first <PropertyGroup>
edit to
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
step 2
======
in second <PropertyGroup>
edit to
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
edit to
<OutputPath>bin\x86\Debug\</OutputPath>
add
<PlatformTarget>x86</PlatformTarget>
step 3
======
in third <PropertyGroup>
edit to
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
edit to
<OutputPath>bin\x86\Release\</OutputPath>
add
<PlatformTarget>x86</PlatformTarget>
you can also change the template as APEXnow suggests
greetings j.