This repository was archived by the owner on Oct 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -201,30 +201,30 @@ string a = <proxy "Hello World">;
201201## How to configure SharpLoader?
202202All SharpLoader's configuration is stored in SharpLoader.ini file.
203203
204- #### Directory
205- Base directory for all source files.
206- ` Directory=MyApplication `
207-
208- #### Assemblies
204+ #### References
209205All references that your application use (dlls).
210206Separated by ';' character.
211- ` Assemblies=System.dll;System.Windows.Forms.dll `
207+ ` References=System.dll;System.Windows.Forms.dll `
208+
209+ #### Directory
210+ Base directory where SharpLoader scans for source files.
211+ ` Directory=MySources `
212212
213213#### Sources
214- Paths to all source files that your application use.
214+ Paths to all external (out of base directory) source files that your application use.
215215Separated by ';' character.
216- ` Sources=Program.cs;Utilities.cs;Enums\State .cs `
216+ ` Sources=C:\AdditionalSources\Utilities .cs `
217217
218218* TIP: Alternatively you can drag'n'drop source files/directories*
219219
220220#### Output
221221Compiled assembly name.
222222` Output=MyApplication `
223223
224- #### AutoRun
225- Should assembly be run after successful compilation.
226- ` AutoRun=true `
227-
228224#### Arguments
229225Compiler arguments (unsafe, prefer 32-bit etc.).
230226` Arguments=/platform:anycpu32bitpreferred `
227+
228+ #### AutoRun
229+ Should assembly be run after successful compilation.
230+ ` AutoRun=true `
You can’t perform that action at this time.
0 commit comments