Config Template - nquenault/dnsi GitHub Wiki

<dnsi>
	/* Main parameters */

	// compilation mode
	<target value="[exe|winexe|memory|run]" />

	// optional autorun (default is false)
	<autorun value="true" />

	// optional entry point of the program (can be auto detected)
	<entrypoint value="myApp.Program" />

	// if needed, the output filename		
	<output value="myApp.exe" />
	<args value="[args]" />

	/* Install options */
	<shortcut target="desktop" /> 
	<shortcut target="startmenu" />

	/* Required libraries */
	<library file="C:\MyLibraries\MyLibrary.dll" />
	<library file="SomeGAC.dll" />

	/* Local source code files */
	<link src="Program.cs" />
	<link src="./Main.Designer.cs" />
	<link src="Main.cs" />

	/* Remote source code files */
	<link src="http://www.myhost.com/remoteSource/SomeVBNet.vb" />
	<link src="http://www.myhost.com/remoteSource/Utils.cs" />
</dnsi>
⚠️ **GitHub.com Fallback** ⚠️