I had created a project which is C# console application project for which I need to call this project dll in another windows application project. I had built the project in
You need to make a class library and not a Console Application. The console application is translated into an .exe whereas the class library will then be compiled into a dll which you can reference in your windows project.
