├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .fantomasignore ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md └── workflows │ ├── build.yml │ ├── fsdocs-gh-pages.yml │ └── publish.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Content ├── .template.config │ ├── ide.host.json │ └── template.json ├── Console │ ├── .config │ │ └── dotnet-tools.json │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .editorconfig │ ├── .fantomasignore │ ├── .git-blame-ignore-revs │ ├── .gitattributes │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── build.yml │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── CHANGELOG.md │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Directory.Packages.props │ ├── LICENSE.md │ ├── MyLib.1.sln │ ├── NuGet.config │ ├── README.md │ ├── build.cmd │ ├── build.sh │ ├── build │ │ ├── Changelog.fs │ │ ├── build.fs │ │ └── build.fsproj │ ├── global.json │ ├── src │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ └── MyLib.1 │ │ │ ├── App.config │ │ │ ├── AssemblyInfo.fs │ │ │ ├── Main.fs │ │ │ └── MyLib.1.fsproj │ └── tests │ │ ├── Directory.Build.props │ │ └── MyLib.1.Tests │ │ ├── Main.fs │ │ ├── MyLib.1.Tests.fsproj │ │ └── Tests.fs ├── Library │ ├── .config │ │ └── dotnet-tools.json │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .editorconfig │ ├── .fantomasignore │ ├── .git-blame-ignore-revs │ ├── .gitattributes │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ ├── build.yml │ │ │ ├── fsdocs-gh-pages.yml │ │ │ └── publish.yml │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ └── settings.json │ ├── CHANGELOG.md │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── Directory.Packages.props │ ├── LICENSE.md │ ├── MyLib.1.sln │ ├── NuGet.config │ ├── README.md │ ├── build.cmd │ ├── build.sh │ ├── build │ │ ├── Changelog.fs │ │ ├── FsDocs.fs │ │ ├── build.fs │ │ └── build.fsproj │ ├── docsSrc │ │ ├── Explanations │ │ │ └── Background.md │ │ ├── How_Tos │ │ │ ├── Doing_A_Thing.md │ │ │ └── Doing_Another_Thing.md │ │ ├── Tutorials │ │ │ └── Getting_Started.md │ │ ├── _menu-item_template.html │ │ ├── _menu_template.html │ │ ├── _template.html │ │ ├── content │ │ │ ├── fsdocs-custom.css │ │ │ ├── fsdocs-dark.css │ │ │ ├── fsdocs-light.css │ │ │ ├── fsdocs-main.css │ │ │ ├── navbar-fixed-left.css │ │ │ └── theme-toggle.js │ │ └── index.md │ ├── global.json │ ├── src │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ └── MyLib.1 │ │ │ ├── AssemblyInfo.fs │ │ │ ├── Library.fs │ │ │ └── MyLib.1.fsproj │ └── tests │ │ ├── Directory.Build.props │ │ └── MyLib.1.Tests │ │ ├── Main.fs │ │ ├── MyLib.1.Tests.fsproj │ │ └── Tests.fs ├── ProjConsole │ ├── AssemblyInfo.fs │ ├── MyLib.1.fsproj │ └── Program.fs ├── ProjLib │ ├── AssemblyInfo.fs │ ├── Library.fs │ └── MyLib.1.fsproj └── ProjTest │ ├── Main.fs │ ├── MyLib.1.fsproj │ └── Tests.fs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE.md ├── MiniScaffold.csproj ├── MiniScaffold.sln ├── NuGet.config ├── README.md ├── docsSrc ├── Explanations │ └── 0-toc.md ├── How_Tos │ ├── 0-toc.md │ ├── add-a-console-project.md │ ├── add-a-library-project.md │ └── add-a-testing-project.md ├── Reference │ ├── 0-toc.md │ └── Library_Output.md ├── Tutorials │ ├── 0-toc.md │ └── Getting_Started_With_Libraries.md ├── _menu-item_template.html ├── _menu_template.html ├── _template.html ├── content │ ├── fsdocs-custom.css │ ├── fsdocs-dark.css │ ├── fsdocs-light.css │ ├── fsdocs-main.css │ ├── navbar-fixed-left.css │ └── theme-toggle.js └── index.md ├── global.json ├── packages.lock.json ├── tests ├── Directory.Build.props └── MiniScaffold.Tests │ ├── Asserts.fs │ ├── Infrastructure.fs │ ├── Main.fs │ ├── MiniScaffold.Tests.fsproj │ ├── Tests.fs │ └── packages.lock.json └── tools └── releaseToChangelog.fsx /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fantomasignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.fantomasignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: TheAngryByrd 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fsdocs-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/workflows/fsdocs-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Content/.template.config/ide.host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/.template.config/ide.host.json -------------------------------------------------------------------------------- /Content/.template.config/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/.template.config/template.json -------------------------------------------------------------------------------- /Content/Console/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Content/Console/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /Content/Console/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Content/Console/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.editorconfig -------------------------------------------------------------------------------- /Content/Console/.fantomasignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.fantomasignore -------------------------------------------------------------------------------- /Content/Console/.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.git-blame-ignore-revs -------------------------------------------------------------------------------- /Content/Console/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.gitattributes -------------------------------------------------------------------------------- /Content/Console/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Content/Console/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /Content/Console/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Content/Console/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Content/Console/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.github/workflows/build.yml -------------------------------------------------------------------------------- /Content/Console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.gitignore -------------------------------------------------------------------------------- /Content/Console/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.vscode/extensions.json -------------------------------------------------------------------------------- /Content/Console/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/.vscode/settings.json -------------------------------------------------------------------------------- /Content/Console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/CHANGELOG.md -------------------------------------------------------------------------------- /Content/Console/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/Directory.Build.props -------------------------------------------------------------------------------- /Content/Console/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/Directory.Build.targets -------------------------------------------------------------------------------- /Content/Console/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/Directory.Packages.props -------------------------------------------------------------------------------- /Content/Console/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/LICENSE.md -------------------------------------------------------------------------------- /Content/Console/MyLib.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/MyLib.1.sln -------------------------------------------------------------------------------- /Content/Console/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/NuGet.config -------------------------------------------------------------------------------- /Content/Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/README.md -------------------------------------------------------------------------------- /Content/Console/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/build.cmd -------------------------------------------------------------------------------- /Content/Console/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/build.sh -------------------------------------------------------------------------------- /Content/Console/build/Changelog.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/build/Changelog.fs -------------------------------------------------------------------------------- /Content/Console/build/build.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/build/build.fs -------------------------------------------------------------------------------- /Content/Console/build/build.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/build/build.fsproj -------------------------------------------------------------------------------- /Content/Console/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/global.json -------------------------------------------------------------------------------- /Content/Console/src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/Directory.Build.props -------------------------------------------------------------------------------- /Content/Console/src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/Directory.Build.targets -------------------------------------------------------------------------------- /Content/Console/src/MyLib.1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/MyLib.1/App.config -------------------------------------------------------------------------------- /Content/Console/src/MyLib.1/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/MyLib.1/AssemblyInfo.fs -------------------------------------------------------------------------------- /Content/Console/src/MyLib.1/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/MyLib.1/Main.fs -------------------------------------------------------------------------------- /Content/Console/src/MyLib.1/MyLib.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/src/MyLib.1/MyLib.1.fsproj -------------------------------------------------------------------------------- /Content/Console/tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/tests/Directory.Build.props -------------------------------------------------------------------------------- /Content/Console/tests/MyLib.1.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/tests/MyLib.1.Tests/Main.fs -------------------------------------------------------------------------------- /Content/Console/tests/MyLib.1.Tests/MyLib.1.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/tests/MyLib.1.Tests/MyLib.1.Tests.fsproj -------------------------------------------------------------------------------- /Content/Console/tests/MyLib.1.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Console/tests/MyLib.1.Tests/Tests.fs -------------------------------------------------------------------------------- /Content/Library/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.config/dotnet-tools.json -------------------------------------------------------------------------------- /Content/Library/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /Content/Library/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /Content/Library/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.editorconfig -------------------------------------------------------------------------------- /Content/Library/.fantomasignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.fantomasignore -------------------------------------------------------------------------------- /Content/Library/.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.git-blame-ignore-revs -------------------------------------------------------------------------------- /Content/Library/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.gitattributes -------------------------------------------------------------------------------- /Content/Library/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Content/Library/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /Content/Library/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Content/Library/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Content/Library/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/workflows/build.yml -------------------------------------------------------------------------------- /Content/Library/.github/workflows/fsdocs-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/workflows/fsdocs-gh-pages.yml -------------------------------------------------------------------------------- /Content/Library/.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.github/workflows/publish.yml -------------------------------------------------------------------------------- /Content/Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.gitignore -------------------------------------------------------------------------------- /Content/Library/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.vscode/extensions.json -------------------------------------------------------------------------------- /Content/Library/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/.vscode/settings.json -------------------------------------------------------------------------------- /Content/Library/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/CHANGELOG.md -------------------------------------------------------------------------------- /Content/Library/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/Directory.Build.props -------------------------------------------------------------------------------- /Content/Library/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/Directory.Build.targets -------------------------------------------------------------------------------- /Content/Library/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/Directory.Packages.props -------------------------------------------------------------------------------- /Content/Library/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/LICENSE.md -------------------------------------------------------------------------------- /Content/Library/MyLib.1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/MyLib.1.sln -------------------------------------------------------------------------------- /Content/Library/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/NuGet.config -------------------------------------------------------------------------------- /Content/Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/README.md -------------------------------------------------------------------------------- /Content/Library/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build.cmd -------------------------------------------------------------------------------- /Content/Library/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build.sh -------------------------------------------------------------------------------- /Content/Library/build/Changelog.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build/Changelog.fs -------------------------------------------------------------------------------- /Content/Library/build/FsDocs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build/FsDocs.fs -------------------------------------------------------------------------------- /Content/Library/build/build.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build/build.fs -------------------------------------------------------------------------------- /Content/Library/build/build.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/build/build.fsproj -------------------------------------------------------------------------------- /Content/Library/docsSrc/Explanations/Background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/Explanations/Background.md -------------------------------------------------------------------------------- /Content/Library/docsSrc/How_Tos/Doing_A_Thing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/How_Tos/Doing_A_Thing.md -------------------------------------------------------------------------------- /Content/Library/docsSrc/How_Tos/Doing_Another_Thing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/How_Tos/Doing_Another_Thing.md -------------------------------------------------------------------------------- /Content/Library/docsSrc/Tutorials/Getting_Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/Tutorials/Getting_Started.md -------------------------------------------------------------------------------- /Content/Library/docsSrc/_menu-item_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/_menu-item_template.html -------------------------------------------------------------------------------- /Content/Library/docsSrc/_menu_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/_menu_template.html -------------------------------------------------------------------------------- /Content/Library/docsSrc/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/_template.html -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/fsdocs-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/fsdocs-custom.css -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/fsdocs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/fsdocs-dark.css -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/fsdocs-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/fsdocs-light.css -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/fsdocs-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/fsdocs-main.css -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/navbar-fixed-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/navbar-fixed-left.css -------------------------------------------------------------------------------- /Content/Library/docsSrc/content/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/content/theme-toggle.js -------------------------------------------------------------------------------- /Content/Library/docsSrc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/docsSrc/index.md -------------------------------------------------------------------------------- /Content/Library/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/global.json -------------------------------------------------------------------------------- /Content/Library/src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/src/Directory.Build.props -------------------------------------------------------------------------------- /Content/Library/src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/src/Directory.Build.targets -------------------------------------------------------------------------------- /Content/Library/src/MyLib.1/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/src/MyLib.1/AssemblyInfo.fs -------------------------------------------------------------------------------- /Content/Library/src/MyLib.1/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/src/MyLib.1/Library.fs -------------------------------------------------------------------------------- /Content/Library/src/MyLib.1/MyLib.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/src/MyLib.1/MyLib.1.fsproj -------------------------------------------------------------------------------- /Content/Library/tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/tests/Directory.Build.props -------------------------------------------------------------------------------- /Content/Library/tests/MyLib.1.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/tests/MyLib.1.Tests/Main.fs -------------------------------------------------------------------------------- /Content/Library/tests/MyLib.1.Tests/MyLib.1.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/tests/MyLib.1.Tests/MyLib.1.Tests.fsproj -------------------------------------------------------------------------------- /Content/Library/tests/MyLib.1.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/Library/tests/MyLib.1.Tests/Tests.fs -------------------------------------------------------------------------------- /Content/ProjConsole/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjConsole/AssemblyInfo.fs -------------------------------------------------------------------------------- /Content/ProjConsole/MyLib.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjConsole/MyLib.1.fsproj -------------------------------------------------------------------------------- /Content/ProjConsole/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjConsole/Program.fs -------------------------------------------------------------------------------- /Content/ProjLib/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjLib/AssemblyInfo.fs -------------------------------------------------------------------------------- /Content/ProjLib/Library.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjLib/Library.fs -------------------------------------------------------------------------------- /Content/ProjLib/MyLib.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjLib/MyLib.1.fsproj -------------------------------------------------------------------------------- /Content/ProjTest/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjTest/Main.fs -------------------------------------------------------------------------------- /Content/ProjTest/MyLib.1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjTest/MyLib.1.fsproj -------------------------------------------------------------------------------- /Content/ProjTest/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Content/ProjTest/Tests.fs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MiniScaffold.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/MiniScaffold.csproj -------------------------------------------------------------------------------- /MiniScaffold.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/MiniScaffold.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/README.md -------------------------------------------------------------------------------- /docsSrc/Explanations/0-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/Explanations/0-toc.md -------------------------------------------------------------------------------- /docsSrc/How_Tos/0-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/How_Tos/0-toc.md -------------------------------------------------------------------------------- /docsSrc/How_Tos/add-a-console-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/How_Tos/add-a-console-project.md -------------------------------------------------------------------------------- /docsSrc/How_Tos/add-a-library-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/How_Tos/add-a-library-project.md -------------------------------------------------------------------------------- /docsSrc/How_Tos/add-a-testing-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/How_Tos/add-a-testing-project.md -------------------------------------------------------------------------------- /docsSrc/Reference/0-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/Reference/0-toc.md -------------------------------------------------------------------------------- /docsSrc/Reference/Library_Output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/Reference/Library_Output.md -------------------------------------------------------------------------------- /docsSrc/Tutorials/0-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/Tutorials/0-toc.md -------------------------------------------------------------------------------- /docsSrc/Tutorials/Getting_Started_With_Libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/Tutorials/Getting_Started_With_Libraries.md -------------------------------------------------------------------------------- /docsSrc/_menu-item_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/_menu-item_template.html -------------------------------------------------------------------------------- /docsSrc/_menu_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/_menu_template.html -------------------------------------------------------------------------------- /docsSrc/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/_template.html -------------------------------------------------------------------------------- /docsSrc/content/fsdocs-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/fsdocs-custom.css -------------------------------------------------------------------------------- /docsSrc/content/fsdocs-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/fsdocs-dark.css -------------------------------------------------------------------------------- /docsSrc/content/fsdocs-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/fsdocs-light.css -------------------------------------------------------------------------------- /docsSrc/content/fsdocs-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/fsdocs-main.css -------------------------------------------------------------------------------- /docsSrc/content/navbar-fixed-left.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/navbar-fixed-left.css -------------------------------------------------------------------------------- /docsSrc/content/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/content/theme-toggle.js -------------------------------------------------------------------------------- /docsSrc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/docsSrc/index.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/global.json -------------------------------------------------------------------------------- /packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/packages.lock.json -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/Asserts.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/Asserts.fs -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/Infrastructure.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/Infrastructure.fs -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/Main.fs -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/MiniScaffold.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/MiniScaffold.Tests.fsproj -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/Tests.fs -------------------------------------------------------------------------------- /tests/MiniScaffold.Tests/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tests/MiniScaffold.Tests/packages.lock.json -------------------------------------------------------------------------------- /tools/releaseToChangelog.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAngryByrd/MiniScaffold/HEAD/tools/releaseToChangelog.fsx --------------------------------------------------------------------------------