This repository was archived by the owner on Oct 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed
Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -7,20 +7,24 @@ This process reults a random file signature every time.
77![ ] ( http://image.prntscr.com/image/bf7ca945444f4426b56229b8cdea4e9c.jpeg )
88
99### How to compile a SharpLoader project?
10- If everything is set up properly (by developer) all that user has to do is run SharpLoader.exe and wait few seconds .
10+ If everything is set up properly all you have to do is run SharpLoader.exe, select project .zip and click compile .
1111
1212### What is seed?
1313Seed is a unique randomization output.
1414Value is random by default but it's possible to set it manually.
1515
1616### How to set custom seed value?
17- SharpLoader accepts custom seed value as an argument.
17+ Use - seed argument.
1818` SharpLoader.exe -seed 123 `
1919
20+ ### How to run SharpLoader in cmd?
21+ Use -cmd argument.
22+ ` SharpLoader.exe -cmd `
23+
2024# Developer guide
2125
2226## How to prepare source code files?
23- Currently there are available 5 randomization features (that are listed below).
27+ Currently there are available 8 randomization features (that are listed below).
2428Simply add proper tags to your source code.
2529``` c#
2630// -<swap>
@@ -207,14 +211,9 @@ Separated by ';' character.
207211` References=System.dll;System.Windows.Forms.dll `
208212
209213#### Directory
210- Base directory where SharpLoader scans for source files.
214+ Main project directory.
211215` Directory=MySources `
212216
213- #### Sources
214- Paths to all external (out of base directory) source files that your application use.
215- Separated by ';' character.
216- ` Sources=C:\AdditionalSources\Utilities.cs `
217-
218217* TIP: Alternatively you can drag'n'drop source files/directories*
219218
220219#### Output
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ private void ThemeKeyDown(object sender, KeyEventArgs e)
2626 if ( e . KeyCode == Keys . Enter ||
2727 e . KeyCode == Keys . Space )
2828 {
29- ContinueClick ( null , null ) ;
29+ SelectClick ( null , null ) ;
3030 }
3131 }
3232
You can’t perform that action at this time.
0 commit comments