Gambit King
Gambit King

Reputation: 483

Visual Studio 2013 C# configuration settings

I want to add include directories and libraries in my c# project like i can in my c++ project

C++ Project : There are options to include directories and linker dependencies.

enter image description here

C# Project

enter image description here

There does not appear to be an option in the project settings to add those settings. I added the path in reference path, but my debugger throws an error. Right now i've added all the dll in my project\bin\debug directory and its working, but i don't want to do it for all the projects. Where i can link these diretories ?

Upvotes: 0

Views: 217

Answers (3)

sukhi
sukhi

Reputation: 924

you can add reference of library files which you want to add into your project by right clicking the project under solution explorer and then "add reference" and then browse or select from the list of dlls..

Upvotes: 3

Patrick Hofman
Patrick Hofman

Reputation: 157116

You can't. You have to include references to code files and assemblies one by one.

The linker and compiler for .NET works different than you are used to with c++. That's why you can't just link an entire directory containing some code files / assemblies.

Upvotes: 1

Related Questions