An open API service indexing awesome lists of open source software.

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}

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!