I'm new to deployment of an application in C#, especially im running on a 64 bit OS. When i entered Visual Studio, i configured my application to run in 32bit, what happened was, it created a folder in the debug folder and it's name is "x86". When i checked it out, the folder has the contents the same as the original debug folder. the question is:

1.)Will this affect my deployment? also

2.)How can i include my classes and external DLL's in my application deployment phase?

2) Resource->Add Resource-> Locate your Dll
You must meet some criteria to include a dll, in C# the dll's you include must be a .net fw dll, you can't have a C++(COM) dll and include it in C# to use it.

usage:

using MyDll;
using MyDll.aClass; // Example
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.