Skip to content

Commit

Permalink
Show cache.md
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jul 20, 2015
1 parent ff64352 commit 3bde756
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion FAKE.sln
@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0F0488CC-2580-4C07-9E16-3997480F0221}"
ProjectSection(SolutionItems) = preProject
Expand Down Expand Up @@ -37,6 +37,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "help", "help", "{564BD198-0
ProjectSection(SolutionItems) = preProject
help\androidpublisher.md = help\androidpublisher.md
help\assemblyinfo.md = help\assemblyinfo.md
help\cache.md = help\cache.md
help\commandline.md = help\commandline.md
help\contributing.md = help\contributing.md
help\create-nuget-package.md = help\create-nuget-package.md
Expand Down
4 changes: 3 additions & 1 deletion help/cache.md
Expand Up @@ -2,7 +2,7 @@

Starting with version `4.0.0` of FAKE, the first time a script is run the
compiled assembly that is generated is saved into the `.fake` directory. This
allows fake to start in milliseconds instead of seconds. Your script files are
allows FAKE to start in milliseconds instead of seconds. Your script files are
cached with a crc32 key generated from the first scripts contents, and then each
`#load`ed scripts contents. This prevents you from having to manually clear the
cache whenever you are working on your script or pulling in changes from a
Expand All @@ -11,3 +11,5 @@ compiled assembly to disk, you can call FAKE with the `--nocache` argument,
which stops FAKE from dumping the compiled assembly to disk. Do note that the
assembly is still being compiled by FSI, all you are disabling is the saving
to disk.

You should add the `.fake` folder to your `.gitignore` file.
1 change: 1 addition & 0 deletions help/literate/templates/template-project.html
Expand Up @@ -55,6 +55,7 @@ <h3 class="muted">{project-name}</h3>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="gettingstarted.html">Getting started</a></li>
<li><a href="cache.html">Build script caching</a></li>
<li class="divider"></li>
<li><a href="nuget.html">NuGet package restore</a></li>
<li><a href="fxcop.html">Using FxCop in a build</a></li>
Expand Down
1 change: 1 addition & 0 deletions help/templates/template.cshtml
Expand Up @@ -56,6 +56,7 @@
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="@Root/gettingstarted.html">Getting started</a></li>
<li><a href="@Root/cache.html">Build script caching</a></li>
<li class="divider"></li>
<li><a href="@Root/nuget.html">NuGet package restore</a></li>
<li><a href="@Root/fxcop.html">Using FxCop in a build</a></li>
Expand Down

0 comments on commit 3bde756

Please sign in to comment.