Skip to content

Commit 0a882b3

Browse files
authored
Merge pull request #80 from ScottHutchinson/patch-1
Updated the example tree for "It will scaffold out something similar …
2 parents 7370989 + 5ada67a commit 0a882b3

File tree

1 file changed

+46
-18
lines changed

1 file changed

+46
-18
lines changed

README.md

Lines changed: 46 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,30 +35,58 @@ cd MyCoolNewLib
3535
It will scaffold out something similar to:
3636

3737
```
38-
$ tree
38+
$ tree /f
3939
.
40-
├── LICENSE.md
41-
├── README.md
42-
├── RELEASE_NOTES.md
43-
├── build.cmd
44-
├── build.fsx
45-
├── build.sh
46-
├── paket.dependencies
47-
├── paket.lock
48-
├── src
49-
│   └── MyCoolNewLib
50-
│   ├── Library.fs
51-
│   └── MyCoolNewLib.fsproj
52-
└── tests
53-
└── MyCoolNewLib.Tests
54-
├── MyCoolNewLib.Tests.fsproj
55-
└── Tests.fs
40+
│ .DS_Store
41+
│ .editorconfig
42+
│ .gitignore
43+
│ .travis.yml
44+
│ appveyor.yml
45+
│ build.cmd
46+
│ build.fsx
47+
│ build.sh
48+
│ MyCoolNewLib.sln
49+
│ LICENSE.md
50+
│ paket.dependencies
51+
│ paket.lock
52+
│ README.md
53+
│ RELEASE_NOTES.md
54+
55+
├───.github
56+
│ ISSUE_TEMPLATE.md
57+
│ PULL_REQUEST_TEMPLATE.md
58+
59+
├───.paket
60+
│ paket.exe
61+
│ paket.exe.config
62+
│ Paket.Restore.targets
63+
│ paket.targets
64+
65+
├───src
66+
│ └───MyCoolNewLib
67+
│ AssemblyInfo.fs
68+
│ MyCoolNewLib.fsproj
69+
│ Library.fs
70+
│ paket.references
71+
72+
├───tests
73+
│ └───MyCoolNewLib.Tests
74+
│ AssemblyInfo.fs
75+
│ MyCoolNewLib.Tests.fsproj
76+
│ Main.fs
77+
│ paket.references
78+
│ Tests.fs
79+
80+
└───tools
81+
paket.references
82+
tools.csproj
83+
5684
```
5785

5886
### Build!
5987

6088
```
61-
> build.cmd // on windows
89+
> .\build.cmd // on windows
6290
$ ./build.sh // on unix
6391
```
6492

0 commit comments

Comments
 (0)