How to build c# class library into dll format
1699 단어 VisualStudioC#
So to build the class library project into dll, first of all we have to change the output type to Class Library.
Right Click on the project directory and choose Properties
From the Output Type selection, choose Class Library
We can choose to build either for x64 or x86. It's depend on the target we want to build for. So now I'm building for x64 target
Seem like the configuration is set up, now we can proceed with the build.
Right Click on the project directory and choose Build
Wait until the build process is completed and then we can get the dll class library from this following directory:
/ProjectFolder/bin/x64/Debug/
Reference
이 문제에 관하여(How to build c# class library into dll format), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/phanithken/items/fffa6ec4b73b1fdde254텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)