954,500 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

How to deploy a C# WinForm Application with classes and DLL's

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?

ryan.khan06
Newbie Poster
3 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
 

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
Panathinaikos22
Junior Poster
135 posts since Aug 2011
Reputation Points: -4
Solved Threads: 6
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: