Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET without use of DLL's

Tags:

.net

dll

I have been issued a problem with security. A bank will not allow use of DLL's in the project. What sort of structure would be needed to allow DataAccess and or the use of external services (like an email client mailchimp, icontct).

has anyone else encountered this sort of problem before? If they have how should the project be structured (.net 3.5+).

Thanks, KJ

like image 619
Kieran Avatar asked Jun 15 '10 06:06

Kieran


1 Answers

I believe you can do this with ILMerge. Basically, you merge all the required DLLs into the main EXE.

like image 79
Matthew Flaschen Avatar answered Oct 05 '22 14:10

Matthew Flaschen