one DLL, multiple projects?

前端 未结 5 2117
难免孤独
难免孤独 2020-12-29 10:35

Is it possible to force my C# solution file to make a single DLL containing all the projects in the solution, instead of one DLL per project? This dude says that isn\'t pos

5条回答
  •  一整个雨季
    2020-12-29 11:00

    No. Each project will compile into a separate library or application.

    You can, however, merge these together into a single DLL or EXE file using ILMerge post compilation.

提交回复
热议问题