My goal is to create an executable that will start a shadow copied application. The trick is, I want this starter program to have no external dependencies and not have to conta
You can compile a .NET app as an exe (which is an assembly) and rename it to a .DLL and it will act as a normal .NET .dll assembly. It will then have your Entry point.