Static Linking of libraries created on C# .NET

后端 未结 5 1669
春和景丽
春和景丽 2020-12-01 02:26

I\'m using VS2008 C#.NET.

I created 3 different classes of libraries in 3 projects. I wrote an application which uses these libraries (dlls).

What is happeni

5条回答
  •  伪装坚强ぢ
    2020-12-01 02:46

    You can place all of your code into one EXE project, use a third-party linker (google .net static linker for a number of options), or use ILMerge as illustrated here.

    The third-party linkers generally also offer code obfuscation, and some can also statically link the .NET Framework.

提交回复
热议问题