Hacker News new | ask | show | jobs
by jen20 2456 days ago
> The C# (and other .NET compilers) treat an assembly as the smallest unit they will emit.

`<OutputType>module</OutputType>` in your project file (or `/target:module` at the command line, and you get a smaller unit.

1 comments

Ah, learned something new today. Thanks.