├── .gitattributes ├── .gitignore ├── .nuget └── NuGet.Config ├── Directory.Build.props ├── LICENSE ├── LICENSE.txt ├── README.md ├── RandomGen.sln ├── pack-push.bat ├── src └── RandomGen │ ├── Data │ ├── blns.json │ ├── dictionary.txt │ ├── dist.all.last.txt │ ├── dist.female.first.txt │ ├── dist.male.first.txt │ └── dist.tld.txt │ ├── DateChangeByLink.cs │ ├── DateChangeLink.cs │ ├── DateTimeOffsetChangeByLink.cs │ ├── DateTimeOffsetChangeLink.cs │ ├── DecimalChangeByLink.cs │ ├── DecimalChangeLink.cs │ ├── DoubleChangeByLink.cs │ ├── DoubleChangeLink.cs │ ├── DoublesLink.cs │ ├── Fluent │ ├── IDateChange.cs │ ├── IDateChangeBy.cs │ ├── IDateTimeOffsetChange.cs │ ├── IDateTimeOffsetChangeBy.cs │ ├── IDecimalChange.cs │ ├── IDecimalChangeBy.cs │ ├── IDouble.cs │ ├── IDoubleChange.cs │ ├── IDoubleChangeBy.cs │ ├── IFluentInterface.cs │ ├── IGen.cs │ ├── IIntChange.cs │ ├── IIntChangeBy.cs │ ├── IInternet.cs │ ├── ILongChange.cs │ ├── ILongChangeBy.cs │ ├── INames.cs │ ├── INumbers.cs │ ├── IPhoneNumbers.cs │ ├── IRandom.cs │ ├── IText.cs │ └── ITime.cs │ ├── FuncExtensions.cs │ ├── Gen.cs │ ├── GenLink.cs │ ├── IntChangeByLink.cs │ ├── IntChangeLink.cs │ ├── InternetLink.cs │ ├── LongChangeByLink.cs │ ├── LongChangeLink.cs │ ├── NamesLink.cs │ ├── NumbersLink.cs │ ├── PhoneNumbersLink.cs │ ├── RandomGen.csproj │ ├── RandomLink.cs │ ├── TextLink.cs │ └── TimeLink.cs └── test └── RandomGen.Tests ├── DateChangeTests.cs ├── DateTimeOffsetChangeTests.cs ├── DecimalChangeTests.cs ├── DoubleChangeTests.cs ├── IntChangeTests.cs ├── LongChangeTests.cs ├── PhoneNumberTests.cs ├── RandomGen.Tests.csproj └── RandomTests.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/README.md -------------------------------------------------------------------------------- /RandomGen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/RandomGen.sln -------------------------------------------------------------------------------- /pack-push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/pack-push.bat -------------------------------------------------------------------------------- /src/RandomGen/Data/blns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/blns.json -------------------------------------------------------------------------------- /src/RandomGen/Data/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/dictionary.txt -------------------------------------------------------------------------------- /src/RandomGen/Data/dist.all.last.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/dist.all.last.txt -------------------------------------------------------------------------------- /src/RandomGen/Data/dist.female.first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/dist.female.first.txt -------------------------------------------------------------------------------- /src/RandomGen/Data/dist.male.first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/dist.male.first.txt -------------------------------------------------------------------------------- /src/RandomGen/Data/dist.tld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Data/dist.tld.txt -------------------------------------------------------------------------------- /src/RandomGen/DateChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DateChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DateChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DateChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DateTimeOffsetChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DateTimeOffsetChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DateTimeOffsetChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DateTimeOffsetChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DecimalChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DecimalChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DecimalChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DecimalChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DoubleChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DoubleChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DoubleChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DoubleChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/DoublesLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/DoublesLink.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDateChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDateChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDateChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDateChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDateTimeOffsetChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDateTimeOffsetChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDateTimeOffsetChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDateTimeOffsetChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDecimalChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDecimalChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDecimalChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDecimalChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDouble.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDoubleChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDoubleChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IDoubleChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IDoubleChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IFluentInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IFluentInterface.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IGen.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IIntChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IIntChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IIntChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IIntChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IInternet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IInternet.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/ILongChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/ILongChange.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/ILongChangeBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/ILongChangeBy.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/INames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/INames.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/INumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/INumbers.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IPhoneNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IPhoneNumbers.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IRandom.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/IText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/IText.cs -------------------------------------------------------------------------------- /src/RandomGen/Fluent/ITime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Fluent/ITime.cs -------------------------------------------------------------------------------- /src/RandomGen/FuncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/FuncExtensions.cs -------------------------------------------------------------------------------- /src/RandomGen/Gen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/Gen.cs -------------------------------------------------------------------------------- /src/RandomGen/GenLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/GenLink.cs -------------------------------------------------------------------------------- /src/RandomGen/IntChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/IntChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/IntChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/IntChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/InternetLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/InternetLink.cs -------------------------------------------------------------------------------- /src/RandomGen/LongChangeByLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/LongChangeByLink.cs -------------------------------------------------------------------------------- /src/RandomGen/LongChangeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/LongChangeLink.cs -------------------------------------------------------------------------------- /src/RandomGen/NamesLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/NamesLink.cs -------------------------------------------------------------------------------- /src/RandomGen/NumbersLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/NumbersLink.cs -------------------------------------------------------------------------------- /src/RandomGen/PhoneNumbersLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/PhoneNumbersLink.cs -------------------------------------------------------------------------------- /src/RandomGen/RandomGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/RandomGen.csproj -------------------------------------------------------------------------------- /src/RandomGen/RandomLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/RandomLink.cs -------------------------------------------------------------------------------- /src/RandomGen/TextLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/TextLink.cs -------------------------------------------------------------------------------- /src/RandomGen/TimeLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/src/RandomGen/TimeLink.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/DateChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/DateChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/DateTimeOffsetChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/DateTimeOffsetChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/DecimalChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/DecimalChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/DoubleChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/DoubleChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/IntChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/IntChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/LongChangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/LongChangeTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/PhoneNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/PhoneNumberTests.cs -------------------------------------------------------------------------------- /test/RandomGen.Tests/RandomGen.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/RandomGen.Tests.csproj -------------------------------------------------------------------------------- /test/RandomGen.Tests/RandomTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliostad/RandomGen/HEAD/test/RandomGen.Tests/RandomTests.cs --------------------------------------------------------------------------------