Friday, August 23, 2013

Setting the target framework in C++ Projects

Setting the target framework in C++ Projects



If you need to change the target framework in C++ projects, you actually need to manually change the .vcxproj file.


Right click the project file and select unload



Add “<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>

Example:
  <PropertyGroup Label="Globals">
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  </PropertyGroup>

Save and close the .vcsproj file
Right click the project and select “Reload Project”



Reference:

Using SSH.NET Getting a list of files from ftp server

First download SSH.NET library From VS 2013, right click "Reference" and select "Manage NuGet Packages..." Search fo...