Application Deployment
An application that uses Dapfor .NET Grid can be deployed in one of following ways:
- The Dapfor.Net.dll assembly can be installed into the GAC (global assembly cache).
- The Dapfor.Net.dll assembly can be added to the application package.
Dapfor software can be incorporated into the application with the
ILMerge utility. The lastest version of ILMerge
can be downloaded from Microsoft website.
The following example shows how to generate a single executable from two assemblies - MyApplication.exe and Dapfor.Net.dll
ILMerge.exe /target:winexe /ndebug /out:MyApplicationInSingleFile.exe MyApplication.exe Dapfor.Net.dll
Back to .Net Grid Features