├── .gitattributes ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE.txt ├── NuGet.Config ├── README.md ├── appveyor.yml ├── azure-pipelines.yml ├── ci_build.ps1 ├── src ├── GenFu.HtmlHelpers │ ├── GenFu.HtmlHelpers.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── Utilities │ │ └── HtmlAttributeHelper.cs │ └── WireframeHelper │ │ ├── HeadingGeneratorExtensions.cs │ │ ├── ImageExtensions.cs │ │ ├── IpsumTableModel.cs │ │ ├── ListGeneratorExtensions.cs │ │ ├── TableGeneratorExtensions.cs │ │ ├── WireframeGenerator.cs │ │ └── WireframeHelperExtensions.cs ├── GenFu.Web │ ├── Controllers │ │ ├── HomeController.cs │ │ └── WireframeController.cs │ ├── GenFu.Web.csproj │ ├── Helpers │ │ ├── SourceCodeHelper.cs │ │ └── ViewHelpers.cs │ ├── Models │ │ ├── BadSourceCode.cs │ │ ├── CompileResult.cs │ │ ├── GenerateDataModel.cs │ │ ├── Person.cs │ │ ├── RandomValues.cs │ │ └── SourceCode.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Result.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Wireframe │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── web.Debug.config │ ├── web.Release.config │ ├── web.config │ └── wwwroot │ │ ├── content │ │ └── ninja.png │ │ ├── css │ │ ├── animate.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── codemirror.css │ │ ├── lightbox.css │ │ ├── site.css │ │ └── style.css │ │ ├── fonts │ │ ├── font-awesome-4.0.3 │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── spinning.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _spinning.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ ├── arrow.png │ │ ├── browsers.png │ │ ├── close.png │ │ ├── coming-soon.jpg │ │ ├── general-1.jpg │ │ ├── general-2.jpg │ │ ├── general-3.jpg │ │ ├── general-4.jpg │ │ ├── imac.png │ │ ├── image-1.png │ │ ├── image-2.png │ │ ├── image-3.png │ │ ├── image-4.png │ │ ├── image-5.jpg │ │ ├── image-alt-5.jpg │ │ ├── ipad.png │ │ ├── iphone.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── macbook.png │ │ ├── next.png │ │ ├── photo-1.jpg │ │ ├── photo-2.jpg │ │ ├── photo-3.jpg │ │ ├── prev.png │ │ └── showcase.png │ │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── clike.js │ │ ├── codemirror.js │ │ ├── coming-soon.js │ │ ├── custom.js │ │ ├── index.js │ │ ├── jquery-2.1.4.min.js │ │ ├── jquery.countdown.js │ │ ├── jquery.countdown.min.js │ │ ├── jquery.plugin.js │ │ ├── jquery.plugin.min.js │ │ ├── less.min.js │ │ ├── lightbox-2.6.min.js │ │ ├── portfolio.js │ │ ├── pricing-table.js │ │ ├── scrolltopcontrol.js │ │ ├── sign-up.js │ │ └── ui-elements.js │ │ └── web.config ├── GenFu.sln └── GenFu │ ├── DefaultValueChecker.cs │ ├── Enums.cs │ ├── FillerManager.cs │ ├── Fillers │ ├── BooleanFiller.cs │ ├── CanadianSocialInsuranceNumberFiller.cs │ ├── CharFiller.cs │ ├── CompanyNameFiller.cs │ ├── CookingFiller.cs │ ├── CustomFillers.cs │ ├── DateTimeAdapterFiller.cs │ ├── DateTimeFillers.cs │ ├── DateTimeNullableFillers.cs │ ├── DrugFiller.cs │ ├── EnumFiller.cs │ ├── GuidFiller.cs │ ├── IPropertyFiller.cs │ ├── ImgFormat.cs │ ├── InjuryFiller.cs │ ├── MedicalProcedureFiller.cs │ ├── NumericFillers.cs │ ├── PersonFiller.cs │ ├── PropertyFiller.cs │ ├── StringFillerExtensions.cs │ ├── StringFillers.cs │ └── USASocialSecurityNumberFiller.cs │ ├── GenFu.cs │ ├── GenFu.csproj │ ├── GenFuComplexPropertyConfigurator.cs │ ├── GenFuConfigurator.cs │ ├── GenFuDateTimeConfigurator.cs │ ├── GenFuDecimalConfigurator.cs │ ├── GenFuDefaulturator.cs │ ├── GenFuFluent.cs │ ├── GenFuIntegerConfigurator.cs │ ├── GenFuShortConfigurator.cs │ ├── GenFuStringConfigurator.cs │ ├── GenericFillerDefaults.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── Reflection │ └── ReflectionExtensions.cs │ ├── ReflectionHelpers.cs │ ├── ResourceLoader.cs │ ├── Resources │ ├── CanadianProvinceAbbreviations.txt │ ├── CanadianProvinceNames.txt │ ├── CityNames.txt │ ├── CompanyNames.txt │ ├── DomainNames.txt │ ├── Drugs.txt │ ├── FirstNames.txt │ ├── Genders.txt │ ├── Industries.txt │ ├── Ingredients.txt │ ├── Injuries.txt │ ├── LastNames.txt │ ├── Lorem.txt │ ├── MedicalProcedures.txt │ ├── MusicAlbums.txt │ ├── MusicArtists.txt │ ├── PersonTitles.txt │ ├── StreetNames.txt │ ├── Titles.txt │ ├── USAStateAbbreviations.txt │ ├── USAStateNames.txt │ └── Words.txt │ ├── Services │ └── PlaceholditUrlBuilder.cs │ ├── Utilities │ ├── StaticRandom.cs │ ├── StringBuilderExtensions.cs │ └── StringExtensions.cs │ └── ValueGenerators │ ├── BaseValueGenerator.cs │ ├── Cooking │ └── Ingredients.cs │ ├── Corporate │ └── Name.cs │ ├── EnumerableExtensions.cs │ ├── Geospatial │ ├── Address.cs │ └── LatLong.cs │ ├── Internet │ ├── Domains.cs │ └── NetworkAddress.cs │ ├── Lorem │ └── Lorem.cs │ ├── Medical │ ├── Drug.cs │ ├── Injuries.cs │ └── MedicalProcedures.cs │ ├── Music │ ├── Album.cs │ ├── Artist.cs │ └── Genre.cs │ ├── People │ ├── ContactInformation.cs │ ├── Names.cs │ └── Qualities.cs │ └── Temporal │ └── CalendarDate.cs └── tests └── GenFu.Tests ├── ExtensionMethodTests.cs ├── Fillers ├── BasicFillTests.cs ├── CanadianSocialInsuranceNumberFillerTests.cs └── EnumFillerTests.cs ├── GenFu.Tests.csproj ├── GenFuTests.cs ├── ImageUrlTests.cs ├── Properties └── AssemblyInfo.cs ├── TestData └── singlename.txt ├── TestEntities ├── ApplicationUser.cs ├── AuditEntry.cs ├── BlogPost.cs ├── BlogTypeEnum.cs ├── CheckoutItem.cs ├── Gender.cs ├── Location.cs ├── Nullables.cs └── Person.cs ├── ValueGenerators ├── BaseValueGeneratorTests.cs └── LoremGeneratorTests.cs ├── When_configuring_property_with_custom_filler.cs ├── When_configuring_property_with_specific_value.cs ├── When_filling_guids.cs ├── When_filling_nullables.cs ├── When_filling_object_graph.cs ├── When_filling_using_plugin.cs ├── When_getting_a_generic_filler.cs ├── When_running_in_parallel.cs ├── When_testing_for_default_values.cs ├── blah.xml └── xunit.runner.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /ci_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/ci_build.ps1 -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/GenFu.HtmlHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/GenFu.HtmlHelpers.csproj -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/Utilities/HtmlAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/Utilities/HtmlAttributeHelper.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/HeadingGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/HeadingGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/ImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/ImageExtensions.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/IpsumTableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/IpsumTableModel.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/ListGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/ListGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/TableGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/TableGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/WireframeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/WireframeGenerator.cs -------------------------------------------------------------------------------- /src/GenFu.HtmlHelpers/WireframeHelper/WireframeHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.HtmlHelpers/WireframeHelper/WireframeHelperExtensions.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Controllers/WireframeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Controllers/WireframeController.cs -------------------------------------------------------------------------------- /src/GenFu.Web/GenFu.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/GenFu.Web.csproj -------------------------------------------------------------------------------- /src/GenFu.Web/Helpers/SourceCodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Helpers/SourceCodeHelper.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Helpers/ViewHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Helpers/ViewHelpers.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/BadSourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/BadSourceCode.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/CompileResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/CompileResult.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/GenerateDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/GenerateDataModel.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/Person.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/RandomValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/RandomValues.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Models/SourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Models/SourceCode.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Program.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/GenFu.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Startup.cs -------------------------------------------------------------------------------- /src/GenFu.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/Views/Home/Result.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/Home/Result.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/Views/Wireframe/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/Wireframe/Index.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/GenFu.Web/web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/web.Debug.config -------------------------------------------------------------------------------- /src/GenFu.Web/web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/web.Release.config -------------------------------------------------------------------------------- /src/GenFu.Web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/web.config -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/content/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/content/ninja.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/animate.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/codemirror.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/lightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/lightbox.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/css/style.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/css/font-awesome.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/bordered-pulled.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/core.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/fixed-width.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/font-awesome.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/icons.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/larger.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/list.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/mixins.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/path.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/rotated-flipped.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/spinning.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/stacked.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/less/variables.less -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_core.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_fixed-width.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_icons.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_larger.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_list.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_mixins.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_path.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_spinning.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_stacked.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/_variables.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/font-awesome-4.0.3/scss/font-awesome.scss -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/arrow.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/browsers.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/close.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/coming-soon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/coming-soon.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/general-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/general-1.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/general-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/general-2.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/general-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/general-3.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/general-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/general-4.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/imac.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-1.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-2.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-3.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-4.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-5.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/image-alt-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/image-alt-5.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/ipad.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/iphone.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/loading.gif -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/logo.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/macbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/macbook.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/next.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/photo-1.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/photo-2.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/photo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/photo-3.jpg -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/prev.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/img/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/img/showcase.png -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/bootstrap.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/clike.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/clike.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/codemirror.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/coming-soon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/coming-soon.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/custom.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/index.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/jquery.countdown.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/jquery.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/jquery.plugin.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/jquery.plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/jquery.plugin.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/less.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/lightbox-2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/lightbox-2.6.min.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/portfolio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/portfolio.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/pricing-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/pricing-table.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/scrolltopcontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/scrolltopcontrol.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/sign-up.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/sign-up.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/js/ui-elements.js -------------------------------------------------------------------------------- /src/GenFu.Web/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.Web/wwwroot/web.config -------------------------------------------------------------------------------- /src/GenFu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu.sln -------------------------------------------------------------------------------- /src/GenFu/DefaultValueChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/DefaultValueChecker.cs -------------------------------------------------------------------------------- /src/GenFu/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Enums.cs -------------------------------------------------------------------------------- /src/GenFu/FillerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/FillerManager.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/BooleanFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/BooleanFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/CanadianSocialInsuranceNumberFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/CanadianSocialInsuranceNumberFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/CharFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/CharFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/CompanyNameFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/CompanyNameFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/CookingFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/CookingFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/CustomFillers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/CustomFillers.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/DateTimeAdapterFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/DateTimeAdapterFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/DateTimeFillers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/DateTimeFillers.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/DateTimeNullableFillers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/DateTimeNullableFillers.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/DrugFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/DrugFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/EnumFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/EnumFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/GuidFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/GuidFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/IPropertyFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/IPropertyFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/ImgFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/ImgFormat.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/InjuryFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/InjuryFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/MedicalProcedureFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/MedicalProcedureFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/NumericFillers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/NumericFillers.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/PersonFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/PersonFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/PropertyFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/PropertyFiller.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/StringFillerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/StringFillerExtensions.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/StringFillers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/StringFillers.cs -------------------------------------------------------------------------------- /src/GenFu/Fillers/USASocialSecurityNumberFiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Fillers/USASocialSecurityNumberFiller.cs -------------------------------------------------------------------------------- /src/GenFu/GenFu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFu.cs -------------------------------------------------------------------------------- /src/GenFu/GenFu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFu.csproj -------------------------------------------------------------------------------- /src/GenFu/GenFuComplexPropertyConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuComplexPropertyConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuDateTimeConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuDateTimeConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuDecimalConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuDecimalConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuDefaulturator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuDefaulturator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuFluent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuFluent.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuIntegerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuIntegerConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuShortConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuShortConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenFuStringConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenFuStringConfigurator.cs -------------------------------------------------------------------------------- /src/GenFu/GenericFillerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/GenericFillerDefaults.cs -------------------------------------------------------------------------------- /src/GenFu/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GenFu/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/GenFu/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Properties/Resources.resx -------------------------------------------------------------------------------- /src/GenFu/Reflection/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Reflection/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/GenFu/ReflectionHelpers.cs: -------------------------------------------------------------------------------- 1 | namespace GenFu; 2 | 3 | internal static class ReflectionHelpers 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/GenFu/ResourceLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ResourceLoader.cs -------------------------------------------------------------------------------- /src/GenFu/Resources/CanadianProvinceAbbreviations.txt: -------------------------------------------------------------------------------- 1 | AB 2 | BC 3 | MB 4 | NB 5 | NL 6 | NT 7 | NS 8 | NU 9 | ON 10 | PE 11 | QC 12 | SK 13 | YT -------------------------------------------------------------------------------- /src/GenFu/Resources/CanadianProvinceNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/CanadianProvinceNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/CityNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/CityNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/CompanyNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/CompanyNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/DomainNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/DomainNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Drugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Drugs.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/FirstNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/FirstNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Genders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Genders.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Industries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Industries.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Ingredients.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Ingredients.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Injuries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Injuries.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/LastNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/LastNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Lorem.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/MedicalProcedures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/MedicalProcedures.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/MusicAlbums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/MusicAlbums.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/MusicArtists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/MusicArtists.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/PersonTitles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/PersonTitles.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/StreetNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/StreetNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Titles.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/USAStateAbbreviations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/USAStateAbbreviations.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/USAStateNames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/USAStateNames.txt -------------------------------------------------------------------------------- /src/GenFu/Resources/Words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Resources/Words.txt -------------------------------------------------------------------------------- /src/GenFu/Services/PlaceholditUrlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Services/PlaceholditUrlBuilder.cs -------------------------------------------------------------------------------- /src/GenFu/Utilities/StaticRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Utilities/StaticRandom.cs -------------------------------------------------------------------------------- /src/GenFu/Utilities/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Utilities/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/GenFu/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/BaseValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/BaseValueGenerator.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Cooking/Ingredients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Cooking/Ingredients.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Corporate/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Corporate/Name.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Geospatial/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Geospatial/Address.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Geospatial/LatLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Geospatial/LatLong.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Internet/Domains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Internet/Domains.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Internet/NetworkAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Internet/NetworkAddress.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Lorem/Lorem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Lorem/Lorem.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Medical/Drug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Medical/Drug.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Medical/Injuries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Medical/Injuries.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Medical/MedicalProcedures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Medical/MedicalProcedures.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Music/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Music/Album.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Music/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Music/Artist.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Music/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Music/Genre.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/People/ContactInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/People/ContactInformation.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/People/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/People/Names.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/People/Qualities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/People/Qualities.cs -------------------------------------------------------------------------------- /src/GenFu/ValueGenerators/Temporal/CalendarDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/src/GenFu/ValueGenerators/Temporal/CalendarDate.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/ExtensionMethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/ExtensionMethodTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/Fillers/BasicFillTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/Fillers/BasicFillTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/Fillers/CanadianSocialInsuranceNumberFillerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/Fillers/CanadianSocialInsuranceNumberFillerTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/Fillers/EnumFillerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/Fillers/EnumFillerTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/GenFu.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/GenFu.Tests.csproj -------------------------------------------------------------------------------- /tests/GenFu.Tests/GenFuTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/GenFuTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/ImageUrlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/ImageUrlTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestData/singlename.txt: -------------------------------------------------------------------------------- 1 | Angela -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/ApplicationUser.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/AuditEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/AuditEntry.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/BlogPost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/BlogPost.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/BlogTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/BlogTypeEnum.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/CheckoutItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/CheckoutItem.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/Gender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/Gender.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/Location.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/Nullables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/Nullables.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/TestEntities/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/TestEntities/Person.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/ValueGenerators/BaseValueGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/ValueGenerators/BaseValueGeneratorTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/ValueGenerators/LoremGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/ValueGenerators/LoremGeneratorTests.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_configuring_property_with_custom_filler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_configuring_property_with_custom_filler.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_configuring_property_with_specific_value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_configuring_property_with_specific_value.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_filling_guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_filling_guids.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_filling_nullables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_filling_nullables.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_filling_object_graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_filling_object_graph.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_filling_using_plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_filling_using_plugin.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_getting_a_generic_filler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_getting_a_generic_filler.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_running_in_parallel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_running_in_parallel.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/When_testing_for_default_values.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/When_testing_for_default_values.cs -------------------------------------------------------------------------------- /tests/GenFu.Tests/blah.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MisterJames/GenFu/HEAD/tests/GenFu.Tests/blah.xml -------------------------------------------------------------------------------- /tests/GenFu.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "maxParallelThreads": 1 3 | } --------------------------------------------------------------------------------