https://github.com/ignatandrei/namegenerator
Generator of names for an assembly / product release . Generates names for {adjective}-{name} or {adjective-name-city}
https://github.com/ignatandrei/namegenerator
Last synced: 6 months ago
JSON representation
Generator of names for an assembly / product release . Generates names for {adjective}-{name} or {adjective-name-city}
- Host: GitHub
- URL: https://github.com/ignatandrei/namegenerator
- Owner: ignatandrei
- License: mit
- Created: 2024-08-26T16:49:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-21T16:58:31.000Z (6 months ago)
- Last Synced: 2026-01-22T19:26:25.548Z (6 months ago)
- Language: C#
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# NameGenerator
Generator of names for an assembly / product release . Generates names for {adjective}-{name} or {adjective-name-city}
The fact that is a Roslyn Code Generator ensures that you can use it in your projects without any additional dependencies - and get rid of him !
## Usage
Add to the .csproj file:
```xml
Analyzer
false
true
$(BaseIntermediateOutputPath)\GX
```
Then, in the code, you can use the following code:
```csharp
using Generated.TestNameGenerator;
//by just putting here
//you will not deploy the dll when you deploy the project
//name are generated in the code source
Console.WriteLine($"Name:{TheAssemblyInfo.GeneratedName}");
Console.WriteLine($"Nice:{TheAssemblyInfo.GeneratedNameNice}");
Console.WriteLine($"Small:{TheAssemblyInfo.GeneratedNameSmall}");
```
## More examples
Please see https://ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG for a list of examples of Roslyn Source Code Generators
Enjoy!