MiniScaffold 0.37.1

Edit this page

Library Scaffold Output

When you do an initial scaffold, your folder will be filled with this set of files. We'll go one by one and talk about what they're and additional references for them.

.
├── CHANGELOG.md
├── Directory.Build.props
├── LICENSE.md
├── MyLib.1.sln
├── README.md
├── build
│   ├── build.fs
│   ├── build.fsproj
│   └── paket.references
├── build.cmd
├── build.sh
├── docsSrc
│   ├── Explanations
│   │   └── Background.md
│   ├── How_Tos
│   │   ├── Doing_A_Thing.md
│   │   └── Doing_Another_Thing.md
│   ├── Tutorials
│   │   └── Getting_Started.md
│   ├── content
│   │   ├── cleanups.js
│   │   ├── hotload.js
│   │   ├── style.css
│   │   ├── submenu.js
│   │   ├── themes.js
│   │   ├── tips.js
│   │   ├── toggle-bootstrap-dark.min.css
│   │   └── toggle-bootstrap.min.css
│   ├── files
│   │   └── placeholder.md
│   └── index.md
├── docsTool
│   ├── CLI.fs
│   ├── Prelude.fs
│   ├── Program.fs
│   ├── README.md
│   ├── WebServer.fs
│   ├── docsTool.fsproj
│   ├── paket.references
│   └── templates
│       ├── helpers.fs
│       ├── master.fs
│       ├── modules.fs
│       ├── namespaces.fs
│       ├── nav.fs
│       ├── partMembers.fs
│       ├── partNested.fs
│       └── types.fs
├── global.json
├── paket.dependencies
├── paket.lock
├── src
│   ├── Directory.Build.props
│   └── MyLib.1
│       ├── AssemblyInfo.fs
│       ├── Library.fs
│       ├── MyLib.1.fsproj
│       └── paket.references
└── tests
    ├── Directory.Build.props
    └── MyLib.1.Tests
        ├── AssemblyInfo.fs
        ├── Main.fs
        ├── MyLib.1.Tests.fsproj
        ├── Tests.fs
        └── paket.references