-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Serhii Yolkin
authored
Jul 15, 2018
1 parent
2d05fd4
commit 805a57c
Showing
1 changed file
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# AssemblyNamespaceChanger | ||
Console utility to search/replace namespaces in .NET assemblies | ||
Console utility to search/replace namespaces in .NET assemblies. | ||
|
||
## Usage | ||
``` | ||
-i, --input Required. Input assembly path. | ||
-o, --output Output assembly path. If not specified, '.Modified' will be | ||
added to the input assembly name. | ||
-r, --regexps Required. Array of regexp search and replace patterns. First | ||
consequential one is the search pattern, second is the | ||
replacement pattern. Separated by semicolon (:) | ||
``` | ||
|
||
## Usage example | ||
``` | ||
LostPolygon.AssemblyNamespaceChanger --input InputAssembly.dll --output Output/OutputAssembly.dll --regexps ^Foo:Bar.Foo:^Namespace1.Test:Namespace2:Whatever | ||
``` |