├── .config └── dotnet-tools.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── FsFaker.sln ├── FsFaker ├── CE │ ├── BaseBuilder.fs │ ├── BuilderFor.fs │ └── Types.fs ├── DataBuilder.fs ├── Extensions.fs ├── Faker.fs ├── FsFaker.fsproj ├── FsFakerConfig.fs └── Helpers.fs ├── GitVersion.yml ├── README.md ├── Sample ├── Program.fs └── Sample.fsproj ├── coverlet.runsettings ├── fake.cmd ├── fake.sh └── global.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/.gitignore -------------------------------------------------------------------------------- /FsFaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker.sln -------------------------------------------------------------------------------- /FsFaker/CE/BaseBuilder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/CE/BaseBuilder.fs -------------------------------------------------------------------------------- /FsFaker/CE/BuilderFor.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/CE/BuilderFor.fs -------------------------------------------------------------------------------- /FsFaker/CE/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/CE/Types.fs -------------------------------------------------------------------------------- /FsFaker/DataBuilder.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/DataBuilder.fs -------------------------------------------------------------------------------- /FsFaker/Extensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/Extensions.fs -------------------------------------------------------------------------------- /FsFaker/Faker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/Faker.fs -------------------------------------------------------------------------------- /FsFaker/FsFaker.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/FsFaker.fsproj -------------------------------------------------------------------------------- /FsFaker/FsFakerConfig.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/FsFakerConfig.fs -------------------------------------------------------------------------------- /FsFaker/Helpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/FsFaker/Helpers.fs -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/README.md -------------------------------------------------------------------------------- /Sample/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/Sample/Program.fs -------------------------------------------------------------------------------- /Sample/Sample.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/Sample/Sample.fsproj -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /fake.cmd: -------------------------------------------------------------------------------- 1 | dotnet fsi ./build.fsx -t %* 2 | -------------------------------------------------------------------------------- /fake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/fake.sh -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasteles/FsFaker/HEAD/global.json --------------------------------------------------------------------------------