Hacker News new | ask | show | jobs
by account42 1237 days ago
You can ship VC++ redistributables as DLLs alongside your application without an installer. Not that you should have to.
1 comments

> not that you should have to

On the contrary, every application should ship their dependencies!

Sure, but the best option for that is to statically link them (if they are only used by one binary and users swapping them out doesn't make sense). And you should be able to do that without third parties slandering you.