Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii Yolkin authored Jul 15, 2018
1 parent 2d05fd4 commit 805a57c
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
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
```

0 comments on commit 805a57c

Please sign in to comment.