Coder Social home page Coder Social logo

fable-templates's People

Contributors

alfonsogarciacaro avatar aolney avatar benhewins avatar dependabot[bot] avatar forki avatar francisl avatar gsuuon avatar happypig375 avatar humhei avatar inputusernamehere avatar jichang avatar mabasic avatar mangelmaxime avatar naartjie avatar nojaf avatar philderbeast avatar unosd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

fable-templates's Issues

error FSHARP: This expression was expected to have type 'Cmd<'a>'

I'm trying to use Fulma and Fable 3.0 with .net5.0

I'm getting this error:

Compiling src\BioMindsSite.fsproj... F# compilation finished in 6517ms E:/source/repos/BioMindsSite/src/.fable/Fable.Elmish.Browser.4.0.0-alpha-2/navigation.fs(31,9): (31,56) error FSHARP: This expression was expected to have type 'Cmd<'a>' but here has type ''b list' (code 1) E:/source/repos/BioMindsSite/src/.fable/Fable.Elmish.Browser.4.0.0-alpha-2/navigation.fs(35,9): (38,30) error FSHARP: This expression was expected to have type 'Cmd<'a>' but here has type ''b list' (code 1) E:/source/repos/BioMindsSite/src/.fable/Fable.Elmish.Browser.4.0.0-alpha-2/navigation.fs(42,9): (42,32) error FSHARP: This expression was expected to have type 'Cmd<'a>' but here has type ''b list' (code 1) E:/source/repos/BioMindsSite/src/.fable/Fable.Elmish.Browser.4.0.0-alpha-2/navigation.fs(97,21): (97,41) error FSHARP: This expression was expected to have type 'Cmd<Navigable<'c>>' but here has type ''a list' (code 1) E:/source/repos/BioMindsSite/src/.fable/Fable.Elmish.Debugger.4.0.0-alpha-1/debugger.fs(97,13): (97,16) error FSHARP: The block following this 'let' is unfinished. Every code block is an expression and must have a result. 'let' cannot be the final code element in a block. Cons ider giving this block an explicit result. (code 588) Compilation failed

same issue as isaacabraham on 11 May

running dotnet fable does not work from the src dir as per instructions! FACT

Gives error no executable found, does run from tools as stated but then when loading browser page, just crashes. no point in continuing.

this means Fable is NOT viable at all, does not run therefore please remove from github your just going to waste peoples time.

And what does it give me, only promises, and that's worthless, such a shame i'm sure you have spent much time building, something.

Barrier to entry, I wonder what web dev code exists in the python world.... got to be better than failed to install.

instantiating the templates doesn't do anything

As per the README at fable-templates/electron/Content/:
Running dotnet new -i Fable.Template.Electron works fine as seen by the list below:

Templates                                         Short Name          Language          Tags
-----------------------------------------------------------------------------------------------------------
Console Application                               console             [C#], F#, VB      Common/Console
Class library                                     classlib            [C#], F#, VB      Common/Library
Fable.Template.Electron App                       fable-electron      F#                Fable/Electron
Unit Test Project                                 mstest              [C#], F#, VB      Test/MSTest
xUnit Test Project                                xunit               [C#], F#, VB      Test/xUnit
ASP.NET Core Empty                                web                 [C#], F#          Web/Empty
ASP.NET Core Web App (Model-View-Controller)      mvc                 [C#], F#          Web/MVC
ASP.NET Core Web App                              razor               [C#]              Web/MVC/Razor Pages
ASP.NET Core with Angular                         angular             [C#]              Web/MVC/SPA
ASP.NET Core with React.js                        react               [C#]              Web/MVC/SPA
ASP.NET Core with React.js and Redux              reactredux          [C#]              Web/MVC/SPA
ASP.NET Core Web API                              webapi              [C#], F#          Web/WebAPI
global.json file                                  globaljson                            Config
NuGet Config                                      nugetconfig                           Config
Web Config                                        webconfig                             Config
Solution File                                     sln                                   Solution
Razor Page                                        page                                  Web/ASP.NET
MVC ViewImports                                   viewimports                           Web/ASP.NET
MVC ViewStart                                     viewstart                             Web/ASP.NET

But trying to actually create a project using the template doesn't work. Running dotnet new fable-electron results in:

Fable.Template.Electron App (F#)
Author: Andrew Olney
    (No Parameters)

but no files are created.

The result is the same no matter which folder you're in, whether or not you use fable, electron, fable-electron, "Fable.Template.Electron App", or any other variants, whether or not you're executing as administrator, or whether or not you use the -n flag for creating a sub-folder during creation. It's definitely finding the template, but somehow doesn't execute it.

Extra information:

Windows 10 fully updated
Full install of Visual Studio 2017 Professional
Full install of VSCode fully updated
dotnet 2.1.100

EDIT:
I just checked the other template as well, and I get the same result:

Simple Fable App (F#)
Author: Alfonso Garcia-Caro
    (No Parameters)

Templates for non-JS languages

With Fable 4 supporting more languages, I thought it would be good to start a conversation around adding templates for these languages to help users get up and running with them. I am happy to help out with this, but there seem to be some topics that need a consensus on how they should be approached, as the method used in the templates will likely become the standard method used in most projects. Ideally these approaches should be driven by the standard methods in the target languages and how Fable would fit into the target ecosystem.

Below is a list of things that are provided by existing JS templates that I think should be retained for other target languages and some potential approaches.

  • Dependency management
    • JS: Current templates use npm
    • Python: pip (built-in), pipenv, poetry
    • Rust: cargo (built-in)
  • Build/Deployment system
    • JS: Current templates use node and webpack
    • Python: poetry
    • Rust: cargo (built-in)
  • Tests
    • JS: Not present in this repo, but the Feliz template uses Fable.Mocha for tests in both .NET and JS ecosystems
    • Python: unittest (built-in), pytest, nose
    • Rust: cargo (built-in), cargo-nextest
  • Target use-case:
    • JS: current templates in this repo only targets web app development
    • Python: standard (locally interpreted), web (django/flask)
    • Rust: standard (native executables), WebAssembly (I doubt this would be a big enough use-case to justify a template given the F# -> wasm options that already exist)

This is not supposed to be the be-all and end-all of the options and decisions to be made for these templates, but more so a jumping off point to get the discussion rolling. Please comment with more things that you think should be considered for these templates or your thoughts on the options presented here!

Start dotnet compiler in package.json instead of snowpack.config.js

Snowpacks plugin-run-script seems buggy:

Proposed solution:
Instead of starting dotnet fable inside snowpack.config.js, start int in package.json

"scripts": {
    "postinstall": "dotnet tool restore",
    "dev": "dotnet fable watch src -o dist --run snowpack dev",
    "prebuild": "dotnet fable src -o dist",
    "build": "snowpack build",
    "clean": "rm -r dist build"
  },

missing dotnet-tools.json in template content

I just tried to create a fable project with this template according to website

dotnet new -i Fable.Template

dotnet new fable -n Demo

cd Demo

npm install

npm start

when I execute npm start, it throws error

> [email protected] start /home/ms/Demo
> dotnet fable watch src --run webpack-dev-server

Could not execute because the specified command or file was not found.
Possible reasons for this include:
  * You misspelled a built-in dotnet command.
  * You intended to execute a .NET program, but dotnet-fable does not exist.
  * You intended to run a global tool, but a dotnet-prefixed executable with this name could not be found on the PATH.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `dotnet fable watch src --run webpack-dev-server`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/ms/.npm/_logs/2021-03-05T08_54_22_794Z-debug.log

seems it miss the .config/dotnet-tools.json, which exist in https://github.com/fable-compiler/fable3-samples/tree/main/minimal/.config

otnet --info
.NET SDK (reflecting any global.json):
 Version:   5.0.101
 Commit:    d05174dc5a

Runtime Environment:
 OS Name:     ubuntu
 OS Version:  20.04
 OS Platform: Linux
 RID:         ubuntu.20.04-x64
 Base Path:   /usr/share/dotnet/sdk/5.0.101/

Host (useful for support):
  Version: 5.0.1
  Commit:  b02e13abab

.NET SDKs installed:
  5.0.101 [/usr/share/dotnet/sdk]

.NET runtimes installed:
  Microsoft.AspNetCore.App 5.0.1 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App]
  Microsoft.NETCore.App 5.0.1 [/usr/share/dotnet/shared/Microsoft.NETCore.App]

To install additional .NET runtimes or SDKs:
  https://aka.ms/dotnet-download

Is this expected ? Or should we add that file ?

Using the template with yarn

I'd like to install dependencies with Yarn, but the template comes with an npm lock file, and Yarn complains about possible inconsistencies.

Do you have any suggestions?

Thanks much for this great system!

npm start fails due to invalid webpack config

Following readme instructions on new install errors with:

[webpack-cli] Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.
 - options has an unknown property 'contentBase'. These properties are valid:
   object { allowedHosts?, bonjour?, client?, compress?, devMiddleware?, headers?, historyApiFallback?, host?, hot?, http2?, https?, ipc?, liveReload?, magicHtml?, onAfterSetupMiddleware?, onBeforeSetupMiddleware?, onListening?, open?, port?, proxy?, server?, setupExitSignals?, setupMiddlewares?, static?, watchFiles?, webSocketServer? }

Looks like webpack dev server was bumped from 3 to 4 without updating the config

Templates clash, unable to resolve the template to instantiate.

I installed and used Fable.Template. I then installed Fable.Snowpack.Template but was not able to use it. Are these pair of templates clashing somehow?

> dotnet new -i Fable.Template
Template Name                                 Short Name           Language    Tags
--------------------------------------------  -------------------  ----------  -----------------------------
Console Application                           console              [C#],F#,VB  Common/Console
Class library                                 classlib             [C#],F#,VB  Common/Library
WPF Application                               wpf                  [C#]        Common/WPF
WPF Class library                             wpflib               [C#]        Common/WPF
WPF Custom Control Library                    wpfcustomcontrollib  [C#]        Common/WPF
WPF User Control Library                      wpfusercontrollib    [C#]        Common/WPF
Windows Forms (WinForms) Application          winforms             [C#]        Common/WinForms
Windows Forms (WinForms) Class library        winformslib          [C#]        Common/WinForms
Worker Service                                worker               [C#],F#     Common/Worker/Web
Simple Fable App                              fable                F#          Fable
MSTest Test Project                           mstest               [C#],F#,VB  Test/MSTest
NUnit 3 Test Project                          nunit                [C#],F#,VB  Test/NUnit
NUnit 3 Test Item                             nunit-test           [C#],F#,VB  Test/NUnit
xUnit Test Project                            xunit                [C#],F#,VB  Test/xUnit
MVC ViewImports                               viewimports          [C#]        Web/ASP.NET
Razor Component                               razorcomponent       [C#]        Web/ASP.NET
MVC ViewStart                                 viewstart            [C#]        Web/ASP.NET
Razor Page                                    page                 [C#]        Web/ASP.NET
Blazor Server App                             blazorserver         [C#]        Web/Blazor
Blazor WebAssembly App                        blazorwasm           [C#]        Web/Blazor/WebAssembly
ASP.NET Core Empty                            web                  [C#],F#     Web/Empty
ASP.NET Core Web App (Model-View-Controller)  mvc                  [C#],F#     Web/MVC
ASP.NET Core Web App                          webapp               [C#]        Web/MVC/Razor Pages
ASP.NET Core with React.js and Redux          reactredux           [C#]        Web/MVC/SPA
ASP.NET Core with Angular                     angular              [C#]        Web/MVC/SPA
ASP.NET Core with React.js                    react                [C#]        Web/MVC/SPA
Razor Class Library                           razorclasslib        [C#]        Web/Razor/Library
SAFE-Stack Web App v3.1.1                     SAFE                 F#          Web/Saturn/Azure/Fable/Elmish
ASP.NET Core Web API                          webapi               [C#],F#     Web/WebAPI
ASP.NET Core gRPC Service                     grpc                 [C#]        Web/gRPC
dotnet gitignore file                         gitignore                        Config
global.json file                              globaljson                       Config
NuGet Config                                  nugetconfig                      Config
Dotnet local tool manifest file               tool-manifest                    Config
Web Config                                    webconfig                        Config
Solution File                                 sln                              Solution
Protocol Buffer File                          proto                            Web/gRPC

Examples:
    dotnet new mvc --auth Individual
    dotnet new wpfusercontrollib
    dotnet new --help
    dotnet new fable --help

> dotnet new fable -n leading-edge
Creating this template will make changes to existing files:
  Overwrite   ./.config/dotnet-tools.json
  Overwrite   ./.gitignore
  Overwrite   ./README.md

Rerun the command and pass --force to accept and create.
> dotnet new fable -n leading-edge --force
The template "Simple Fable App" was created successfully.

I then deleted those changes and tried again with Fable.Snowpack.Template.

> dotnet new -i Fable.Snowpack.Template
Template Name                                 Short Name           Language    Tags
--------------------------------------------  -------------------  ----------  -----------------------------
Console Application                           console              [C#],F#,VB  Common/Console
Class library                                 classlib             [C#],F#,VB  Common/Library
WPF Application                               wpf                  [C#]        Common/WPF
WPF Class library                             wpflib               [C#]        Common/WPF
WPF Custom Control Library                    wpfcustomcontrollib  [C#]        Common/WPF
WPF User Control Library                      wpfusercontrollib    [C#]        Common/WPF
Windows Forms (WinForms) Application          winforms             [C#]        Common/WinForms
Windows Forms (WinForms) Class library        winformslib          [C#]        Common/WinForms
Worker Service                                worker               [C#],F#     Common/Worker/Web
Simple Fable App using Snowpack               fable-snowpack       F#          Fable
MSTest Test Project                           mstest               [C#],F#,VB  Test/MSTest
NUnit 3 Test Project                          nunit                [C#],F#,VB  Test/NUnit
NUnit 3 Test Item                             nunit-test           [C#],F#,VB  Test/NUnit
xUnit Test Project                            xunit                [C#],F#,VB  Test/xUnit
MVC ViewImports                               viewimports          [C#]        Web/ASP.NET
Razor Component                               razorcomponent       [C#]        Web/ASP.NET
MVC ViewStart                                 viewstart            [C#]        Web/ASP.NET
Razor Page                                    page                 [C#]        Web/ASP.NET
Blazor Server App                             blazorserver         [C#]        Web/Blazor
Blazor WebAssembly App                        blazorwasm           [C#]        Web/Blazor/WebAssembly
ASP.NET Core Empty                            web                  [C#],F#     Web/Empty
ASP.NET Core Web App (Model-View-Controller)  mvc                  [C#],F#     Web/MVC
ASP.NET Core Web App                          webapp               [C#]        Web/MVC/Razor Pages
ASP.NET Core with React.js and Redux          reactredux           [C#]        Web/MVC/SPA
ASP.NET Core with Angular                     angular              [C#]        Web/MVC/SPA
ASP.NET Core with React.js                    react                [C#]        Web/MVC/SPA
Razor Class Library                           razorclasslib        [C#]        Web/Razor/Library
SAFE-Stack Web App v3.1.1                     SAFE                 F#          Web/Saturn/Azure/Fable/Elmish
ASP.NET Core Web API                          webapi               [C#],F#     Web/WebAPI
ASP.NET Core gRPC Service                     grpc                 [C#]        Web/gRPC
dotnet gitignore file                         gitignore                        Config
global.json file                              globaljson                       Config
NuGet Config                                  nugetconfig                      Config
Dotnet local tool manifest file               tool-manifest                    Config
Web Config                                    webconfig                        Config
Solution File                                 sln                              Solution
Protocol Buffer File                          proto                            Web/gRPC

Examples:
    dotnet new mvc --auth Individual
    dotnet new nunit-test
    dotnet new --help
    dotnet new fable-snowpack --help

> dotnet new fable-snowpack -n leading-edge --force
Unable to resolve the template to instantiate, the following installed templates are conflicting:
Identity                 Template Name                  Short Name      Language  Precedence  Author               Package
-----------------------  -----------------------------  --------------  --------  ----------  -------------------  -----------------------
Fable.Template.Snowpack  Simple Fable App using Sno...  fable-snowpack  F#        0           Mario Bašić          Fable.Snowpack.Template
Fable.Template           Simple Fable App               fable           F#        0           Alfonso Garcia-Caro  Fable.Template

Uninstall the templates or the packages to keep only one template from the list.

The advice to uninstall and keep only one works.

> dotnet new -u Fable.Template
> dotnet new fable-snowpack -n leading-edge --force
The template "Simple Fable App using Snowpack" was created successfully.
> sw_vers
ProductName:	macOS
ProductVersion:	11.6.1
BuildVersion:	20G224

V4 template

The template currently takes a lot of work to get it with Fable 4.

Could you update it when you get a chance?

Using femto with the fable-snowpack template.

I tried femto with fable-snowpack but it cannot find package.json. Could we rearrange this template so that it works out of the box with femto?

As femto is probing parent directories looking for package.json it does not find it.

> mkdir fable-snowpack
> cd fable-snowpack/ 
fable-snowpack> dotnet new fable-snowpack -n leading-edge
The template "Simple Fable App using Snowpack" was created successfully.
> cd leading-edge/
leading-edge> tree
.
├── Nuget.Config
├── README.md
└── src
    ├── App
    │   ├── App.fs
    │   └── App.fsproj
    └── Web
        ├── package-lock.json
        ├── package.json
        ├── public
        │   ├── favicon.ico
        │   ├── index.html
        │   └── robots.txt
        ├── snowpack.config.js
        └── src
            └── App.js
leading-edge> dotnet tool install femto
You can invoke the tool from this directory using the following commands:
    'dotnet tool run femto' or 'dotnet femto'.
Tool 'femto' (version '0.12.0') was successfully installed. Entry is added to the manifest file
/.../fable-snowpack/leading-edge/.config/dotnet-tools.json.
leading-edge> dotnet femto install Feliz src/App
[11:42:04 INF] Analyzing project /.../fable-snowpack/leading-edge/src/App/App.fsproj
[11:42:04 INF] Running dotnet restore against the project
[11:42:05 INF] Using nuget to install Feliz
[11:42:07 INF] ✔ Nuget package Feliz installed successfully
[11:42:07 INF] Resolving potentially required npm packages with femto --resolve
[11:42:11 INF] Using npm for package management
[11:42:12 INF] Feliz requires npm package react (>= 17.0.1 < 18.0.0)
[11:42:12 INF] Feliz requires npm package react-dom (>= 17.0.1 < 18.0.0)
[11:42:12 WRN] Could not locate package.json file

The fable template doesn't have this problem and femto finds package.json up the tree.

> mkdir fable-minimal
> cd fable-minimal/
fable-minimal> dotnet new fable -n leading-edge
The template "Simple Fable App" was created successfully.
fable-minimal> cd leading-edge/
fable-minimal> tree
.
├── Nuget.Config
├── README.md
├── package-lock.json
├── package.json
├── public
│   ├── bundle.js
│   ├── fable.ico
│   └── index.html
├── src
│   ├── App.fs
│   └── App.fsproj
└── webpack.config.js
leading-edge> dotnet tool install femto
You can invoke the tool from this directory using the following commands:
    'dotnet tool run femto' or 'dotnet femto'.
Tool 'femto' (version '0.12.0') was successfully installed. Entry is added to the manifest file
/.../fable-minimal/leading-edge/.config/dotnet-tools.json.
leading-edge> dotnet femto install Feliz src/
[11:40:28 INF] Analyzing project /.../fable-minimal/leading-edge/src/App.fsproj
[11:40:28 INF] Running dotnet restore against the project
[11:40:29 INF] Using nuget to install Feliz
[11:40:31 INF] ✔ Nuget package Feliz installed successfully
[11:40:31 INF] Resolving potentially required npm packages with femto --resolve
[11:40:34 INF] Using npm for package management
[11:40:35 INF] Found package.json in /Users/pdejoux/dev/src/nosecone/fable-minimal/leading-edge
[11:40:35 INF] Npm packages need to be restored first for project analysis
[11:40:35 INF] Restoring npm packages using 'npm install' inside /.../fable-minimal/leading-edge
[11:40:55 INF] Executing required actions for package resolution
[11:40:55 INF] Installing dependencies [[email protected], [email protected]]
[11:40:57 INF] ✔ Package resolution complete

Include a .gitignore file in the root directory

I think it would be nice to include a minimal .gitignore file to exclude at least the following:

node_modules/
obj/
*.fs.js

Edit: I can see that there is a .gitignore file included in the Contents directory of the minimal template in this repo: https://github.com/fable-compiler/fable-templates/blob/master/minimal/Content/.gitignore

However this did not get included in my project after running these commands:

dotnet new -i Fable.Template
dotnet new fable

Fable 2 and paket

Hi, I have a suggestion for the next version of fable template.
What if we could install paket as local dotnet tool?
If we could use the new paket that runs on dotnet core, we don't need mono anymore.

If we could add dotnet tool install as a postAction, we might pull it of.

Something like

{"postActions": [
        {
            "actionId": "3A7C4B45-1F5D-4A30-959A-51B88E82B5D2",
            "args": {
                "executable": "dotnet",
                "args": "tool install  --tool-path \".paket\" Paket --version 5.182.0-alpha001 --add-source https://api.nuget.org/v3/index.json"
            },
            "manualInstructions": [
                {
                    "text": "Run dotnet tool install  --tool-path \".paket\" Paket --version 5.182.0-alpha001 --add-source https://api.nuget.org/v3/index.json"
                }
            ],
            "continueOnError": true,
            "description": "Add paket"
        }
    ]}

I'm happy to make a PR if approved.
Your thoughts?

dotnet fable --port free -- -p failed

Hi,
I'm trying to use SAFE.Template as well as Fable.Template but none seems to work right away.
I'm opening the issue here and not in SAFE as the error seems to be with fable, more specifically with webpack not being installed or found.

My globally installed tools are:
dotnetcore-sdk 2.1.300 (I've also tried with 2.1.401 and 2.1.402)
yarn 1.9.4
node v811.4
npm 5.6.0
fake 5.6.1
paket 5.153.0

I'm running on windows 10 Pro version 1803 OS build 17134.285

> dotnet --info
.NET Core SDK (reflecting any global.json):
 Version:   2.1.300
 Commit:    adab45bf0c

Runtime Environment:
 OS Name:     Windows
 OS Version:  10.0.17134
 OS Platform: Windows
 RID:         win10-x64
 Base Path:   C:\Program Files\dotnet\sdk\2.1.300\

Host (useful for support):
  Version: 2.1.0
  Commit:  caa7b7e2ba

.NET Core SDKs installed:
  2.1.300 [C:\Program Files\dotnet\sdk]

.NET Core runtimes installed:
  Microsoft.AspNetCore.All 2.1.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.All]
  Microsoft.AspNetCore.App 2.1.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.NETCore.App 2.1.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]

To install additional .NET Core runtimes or SDKs:
  https://aka.ms/dotnet-download

Erros on fable:

❯ yarn start
yarn run v1.9.4
$ cd tools && dotnet fable webpack-dev-server -- --config webpack.config.dev.js
Fable (1.3.8) daemon started on port 61225
CWD: D:\dev\examples\fable\tools
cmd /C node "D:\dev\examples\fable\node_modules\webpack-dev-server\bin\webpack-dev-server.js" --config webpack.config.dev.js
module.js:549
    throw err;
    ^

Error: Cannot find module 'D:\dev\examples\fable\node_modules\webpack-dev-server\bin\webpack-dev-server.js'
    at Function.Module._resolveFilename (module.js:547:15)
    at Function.Module._load (module.js:474:25)
    at Function.Module.runMain (module.js:693:10)
    at startup (bootstrap_node.js:191:16)
    at bootstrap_node.js:612:3
Closing Fable daemon...
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

Errors on SAFE:

 > fake build
The last restore is still up to date. Nothing left to do.
run Build
Building project with version: LocalBuild
Shortened DependencyGraph for Target Build:
<== Build
   <== InstallClient
      <== Clean

The running order is:
Group - 1
  - Clean
Group - 2
  - InstallClient
Group - 3
  - Build
Starting target 'Clean'
Finished (Success) 'Clean' in 00:00:00.0093850
Starting target 'InstallClient'
Node version:
C:\Program Files\nodejs\node.exe --version
v8.11.4
Yarn version:
C:\Program Files (x86)\Yarn\bin\yarn.cmd --version
1.9.4
C:\Program Files (x86)\Yarn\bin\yarn.cmd install --frozen-lockfile
yarn install v1.9.4
[1/4] Resolving packages...
[2/4] Fetching packages...
info [email protected]: The platform "win32" is incompatible with this module.
info "[email protected]" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...

Done in 2.59s.
Starting task 'DotNet:version': running dotnet --version
C:\Program Files\dotnet\dotnet.EXE    --version
2.1.300
Finished (Success) 'DotNet:version' in 00:00:00.2137558
C:\Program Files\dotnet\dotnet.EXE  restore
  Restoring packages for D:\dev\examples\safe\src\Client\Client.fsproj...
  Restore completed in 50,18 ms for D:\dev\examples\safe\src\Client\Client.fsproj.
  Generating MSBuild file D:\dev\examples\safe\src\Client\obj\Client.fsproj.nuget.g.props.
  Generating MSBuild file D:\dev\examples\safe\src\Client\obj\Client.fsproj.nuget.g.targets.
  Restore completed in 149,88 ms for D:\dev\examples\safe\src\Client\Client.fsproj.
Finished (Success) 'InstallClient' in 00:00:05.1148933
Starting target 'Build'
C:\Program Files\dotnet\dotnet.EXE  build
Microsoft (R) Build Engine version 15.7.179.6572 for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.

  Restoring packages for D:\dev\examples\safe\src\Server\Server.fsproj...
  Generating MSBuild file D:\dev\examples\safe\src\Server\obj\Server.fsproj.nuget.g.props.
  Generating MSBuild file D:\dev\examples\safe\src\Server\obj\Server.fsproj.nuget.g.targets.
  Restore completed in 841,2 ms for D:\dev\examples\safe\src\Server\Server.fsproj.
  Server -> D:\dev\examples\safe\src\Server\bin\Debug\netcoreapp2.1\Server.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:04.64
C:\Program Files\dotnet\dotnet.EXE  fable webpack --port free -- -p
Fable (1.3.17) daemon started on port 55511
CWD: D:\dev\examples\safe\src\Client
cmd /C node "D:\dev\examples\safe\node_modules\webpack\bin\webpack.js" -p
module.js:549
    throw err;
    ^

Error: Cannot find module 'D:\dev\examples\safe\node_modules\webpack\bin\webpack.js'
    at Function.Module._resolveFilename (module.js:547:15)
    at Function.Module._load (module.js:474:25)
    at Function.Module.runMain (module.js:693:10)
    at startup (bootstrap_node.js:191:16)
    at bootstrap_node.js:612:3
Closing Fable daemon...
Finished (Failed) 'Build' in 00:00:05.8980162

---------------------------------------------------------------------
Build Time Report
---------------------------------------------------------------------
Target          Duration
------          --------
Clean           00:00:00.0026767
InstallClient   00:00:05.1146914
Build           00:00:05.8976254   ('dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client)
Total:          00:00:11.1591742
Status:         Failure
---------------------------------------------------------------------
Script reported an error:
-> BuildFailedException: Target 'Build' failed.
-> One or more errors occurred. ('dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client)
-> 'dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client
Hint: To further diagnose the problem you can run fake in verbose mode `fake -v run ...` or set the 'FAKE_DETAILED_ERRORS' environment variable to 'true'
> fake -v run
runOrBuild ({Script = None;
 ScriptArguments = [];
 FsiArgLine = [];
 Debug = false;
 NoCache = false;
 RestoreOnlyGroup = false;
 VerboseLevel = Verbose;
 IsBuild = false;})
FAKE 5 - F# Make (5.6.1) (this line is written to standard error, see https://github.com/fsharp/FAKE/issues/2066)
prepareAndRunScriptRedirect(Script: D:\dev\examples\safe\build.fsx, fsiOptions: "")
Writing 'D:\dev\examples\safe\.fake\build.fsx\intellisense.fsx'
Restoring with paket...
The last restore is still up to date. Nothing left to do.
Known assemblies:
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\Microsoft.Win32.Primitives.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\mscorlib.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\netstandard.dll (2.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.AppContext.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Collections.Concurrent.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Collections.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Collections.NonGeneric.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Collections.Specialized.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ComponentModel.Composition.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ComponentModel.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ComponentModel.EventBasedAsync.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ComponentModel.Primitives.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ComponentModel.TypeConverter.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Console.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Core.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Data.Common.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Data.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.Contracts.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.Debug.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.FileVersionInfo.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.Process.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.StackTrace.dll (4.0.4.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.TextWriterTraceListener.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.Tools.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.TraceSource.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Diagnostics.Tracing.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Drawing.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Drawing.Primitives.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Dynamic.Runtime.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Globalization.Calendars.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Globalization.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Globalization.Extensions.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.Compression.dll (4.1.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.Compression.FileSystem.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.Compression.ZipFile.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.FileSystem.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.FileSystem.DriveInfo.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.FileSystem.Primitives.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.FileSystem.Watcher.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.IsolatedStorage.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.MemoryMappedFiles.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.Pipes.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.IO.UnmanagedMemoryStream.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Linq.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Linq.Expressions.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Linq.Parallel.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Linq.Queryable.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Http.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.NameResolution.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.NetworkInformation.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Ping.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Primitives.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Requests.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Security.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.Sockets.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.WebHeaderCollection.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.WebSockets.Client.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Net.WebSockets.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Numerics.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ObjectModel.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Reflection.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Reflection.Extensions.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Reflection.Primitives.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Resources.Reader.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Resources.ResourceManager.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Resources.Writer.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.CompilerServices.VisualC.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Extensions.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Handles.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.InteropServices.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Numerics.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Serialization.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Serialization.Formatters.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Serialization.Json.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Serialization.Primitives.dll (4.1.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Runtime.Serialization.Xml.dll (4.1.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Claims.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Cryptography.Algorithms.dll (4.2.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Cryptography.Csp.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Cryptography.Encoding.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Cryptography.Primitives.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Cryptography.X509Certificates.dll (4.1.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.Principal.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Security.SecureString.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ServiceModel.Web.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Text.Encoding.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Text.Encoding.Extensions.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Text.RegularExpressions.dll (4.1.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.Overlapped.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.Tasks.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.Tasks.Parallel.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.Thread.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.ThreadPool.dll (4.0.12.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Threading.Timer.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Transactions.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.ValueTuple.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Web.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Windows.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.Linq.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.ReaderWriter.dll (4.1.1.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.Serialization.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.XDocument.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.XmlDocument.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.XmlSerializer.dll (4.0.11.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.XPath.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\netstandard.library\2.0.2\build\netstandard2.0\ref\System.Xml.XPath.XDocument.dll (4.0.3.0)
         - lib: C:\Users\an_user\.nuget\packages\system.valuetuple\4.5.0\lib\netstandard1.0\System.ValueTuple.dll (4.0.3.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.compilerservices.unsafe\4.5.1\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll (4.0.4.0)
         - ref: C:\Users\an_user\.nuget\packages\system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll (4.0.4.0)
         - lib: C:\Users\an_user\.nuget\packages\system.numerics.vectors\4.5.0\lib\netstandard2.0\System.Numerics.Vectors.dll (4.1.4.0)
         - ref: C:\Users\an_user\.nuget\packages\system.numerics.vectors\4.5.0\ref\netstandard2.0\System.Numerics.Vectors.dll (4.1.3.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading.tasks.extensions\4.5.1\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll (4.2.0.0)
         - ref: C:\Users\an_user\.nuget\packages\system.threading.tasks.extensions\4.5.1\ref\netstandard2.0\System.Threading.Tasks.Extensions.dll (4.2.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.principal.windows\4.5.0\lib\netstandard2.0\System.Security.Principal.Windows.dll (4.1.1.0)
         - ref: C:\Users\an_user\.nuget\packages\system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading.thread\4.3.0\lib\netstandard1.3\System.Threading.Thread.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.accesscontrol\4.5.0\lib\netstandard2.0\System.Security.AccessControl.dll (4.1.1.0)
         - ref: C:\Users\an_user\.nuget\packages\system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.interopservices.windowsruntime\4.3.0\lib\netstandard1.3\System.Runtime.InteropServices.WindowsRuntime.dll (4.0.2.0)
         - ref: C:\Users\an_user\.nuget\packages\system.runtime.interopservices.windowsruntime\4.3.0\ref\netstandard1.0\System.Runtime.InteropServices.WindowsRuntime.dll (4.0.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.io.filesystem.primitives\4.3.0\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.componentmodel\4.3.0\lib\netstandard1.3\System.ComponentModel.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.appcontext\4.3.0\lib\netstandard1.6\System.AppContext.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading.threadpool\4.3.0\lib\netstandard1.3\System.Threading.ThreadPool.dll (4.0.11.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading\4.3.0\lib\netstandard1.3\System.Threading.dll (4.0.12.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reflection.emit.ilgeneration\4.3.0\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.diagnostics.diagnosticsource\4.5.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll (4.0.3.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading.overlapped\4.3.0\runtimes\win\lib\netstandard1.3\System.Threading.Overlapped.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.text.regularexpressions\4.3.0\lib\netstandard1.6\System.Text.RegularExpressions.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.primitives\4.3.0\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.serialization.primitives\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll (4.1.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.numerics\4.3.0\lib\netstandard1.3\System.Runtime.Numerics.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reflection.typeextensions\4.5.1\lib\netstandard1.5\System.Reflection.TypeExtensions.dll (4.1.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reflection.emit.lightweight\4.3.0\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reflection.emit\4.3.0\lib\netstandard1.3\System.Reflection.Emit.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.objectmodel\4.3.0\lib\netstandard1.3\System.ObjectModel.dll (4.0.13.0)
         - lib: C:\Users\an_user\.nuget\packages\system.net.webheadercollection\4.3.0\lib\netstandard1.3\System.Net.WebHeaderCollection.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.linq\4.3.0\lib\netstandard1.6\System.Linq.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.globalization.extensions\4.3.0\runtimes\win\lib\netstandard1.3\System.Globalization.Extensions.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.componentmodel.primitives\4.3.0\lib\netstandard1.0\System.ComponentModel.Primitives.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.collections.nongeneric\4.3.0\lib\netstandard1.3\System.Collections.NonGeneric.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.collections.concurrent\4.3.0\lib\netstandard1.3\System.Collections.Concurrent.dll (4.0.13.0)
         - lib: C:\Users\an_user\.nuget\packages\system.buffers\4.5.0\lib\netstandard2.0\System.Buffers.dll (4.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\system.buffers\4.5.0\ref\netstandard2.0\System.Buffers.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.xml.readerwriter\4.3.1\lib\netstandard1.3\System.Xml.ReaderWriter.dll (4.1.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.threading.tasks.parallel\4.3.0\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.encoding\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.runtime.serialization.formatters\4.3.0\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.memory\4.5.1\lib\netstandard2.0\System.Memory.dll (4.0.1.0)
         - ref: C:\Users\an_user\.nuget\packages\system.memory\4.5.1\ref\netstandard2.0\System.Memory.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.linq.expressions\4.3.0\lib\netstandard1.6\System.Linq.Expressions.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.io.filesystem.watcher\4.3.0\runtimes\win\lib\netstandard1.3\System.IO.FileSystem.Watcher.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.io.compression\4.3.0\runtimes\win\lib\netstandard1.3\System.IO.Compression.dll (4.1.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.collections.specialized\4.3.0\lib\netstandard1.3\System.Collections.Specialized.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.xml.xmldocument\4.3.0\lib\netstandard1.3\System.Xml.XmlDocument.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.xml.xdocument\4.3.0\lib\netstandard1.3\System.Xml.XDocument.dll (4.0.12.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.algorithms\4.3.1\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll (4.2.1.1)
         - lib: C:\Users\an_user\.nuget\packages\system.linq.queryable\4.3.0\lib\netstandard1.3\System.Linq.Queryable.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.io.compression.zipfile\4.3.0\lib\netstandard1.3\System.IO.Compression.ZipFile.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\system.dynamic.runtime\4.3.0\lib\netstandard1.3\System.Dynamic.Runtime.dll (4.0.12.0)
         - lib: C:\Users\an_user\.nuget\packages\system.componentmodel.typeconverter\4.3.0\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\microsoft.win32.registry\4.5.0\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll (4.1.1.0)
         - ref: C:\Users\an_user\.nuget\packages\microsoft.win32.registry\4.5.0\ref\netstandard2.0\Microsoft.Win32.Registry.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.openssl\4.5.0\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll (4.0.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.csp\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Csp.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.cng\4.5.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll (4.2.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive\4.1.0\lib\netstandard2.0\System.Reactive.dll (4.1.0.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive\4.1.0\lib\netstandard2.0\System.Reactive.dll (4.1.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.diagnostics.process\4.3.0\runtimes\win\lib\netstandard1.4\System.Diagnostics.Process.dll (4.1.1.0)
         - lib: C:\Users\an_user\.nuget\packages\system.security.cryptography.x509certificates\4.3.2\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll (4.1.1.2)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive.providers\4.1.0\lib\netstandard2.0\System.Reactive.Providers.dll (3.0.6000.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive.providers\4.1.0\lib\netstandard2.0\System.Reactive.Providers.dll (3.0.6000.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive.platformservices\4.1.0\lib\netstandard2.0\System.Reactive.PlatformServices.dll (3.0.6000.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive.platformservices\4.1.0\lib\netstandard2.0\System.Reactive.PlatformServices.dll (3.0.6000.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive.linq\4.1.0\lib\netstandard2.0\System.Reactive.Linq.dll (3.0.6000.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive.linq\4.1.0\lib\netstandard2.0\System.Reactive.Linq.dll (3.0.6000.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive.interfaces\4.1.0\lib\netstandard2.0\System.Reactive.Interfaces.dll (3.0.6000.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive.interfaces\4.1.0\lib\netstandard2.0\System.Reactive.Interfaces.dll (3.0.6000.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reactive.core\4.1.0\lib\netstandard2.0\System.Reactive.Core.dll (3.0.6000.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reactive.core\4.1.0\lib\netstandard2.0\System.Reactive.Core.dll (3.0.6000.0)
         - lib: C:\Users\an_user\.nuget\packages\system.net.requests\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.Requests.dll (4.0.12.0)
         - lib: C:\Users\an_user\.nuget\packages\system.collections.immutable\1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll (1.2.3.0)
         - ref: C:\Users\an_user\.nuget\packages\system.collections.immutable\1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll (1.2.3.0)
         - lib: C:\Users\an_user\.nuget\packages\microsoft.csharp\4.5.0\lib\netstandard1.3\Microsoft.CSharp.dll (4.0.2.0)
         - lib: C:\Users\an_user\.nuget\packages\fsharp.core\4.3.4\lib\netstandard1.6\FSharp.Core.dll (4.4.3.0)
         - ref: C:\Users\an_user\.nuget\packages\fsharp.core\4.3.4\lib\netstandard1.6\FSharp.Core.dll (4.4.3.0)
         - lib: C:\Users\an_user\.nuget\packages\system.reflection.metadata\1.6.0\lib\netstandard2.0\System.Reflection.Metadata.dll (1.4.3.0)
         - ref: C:\Users\an_user\.nuget\packages\system.reflection.metadata\1.6.0\lib\netstandard2.0\System.Reflection.Metadata.dll (1.4.3.0)
         - lib: C:\Users\an_user\.nuget\packages\newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll (11.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll (11.0.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fsharp.control.reactive\4.1.0\lib\netstandard2.0\FSharp.Control.Reactive.dll (4.0.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fsharp.control.reactive\4.1.0\lib\netstandard2.0\FSharp.Control.Reactive.dll (4.0.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsec.dll (1.0.3.0)
         - lib: C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsecCS.dll (1.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsec.dll (1.0.3.0)
         - ref: C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsecCS.dll (1.0.3.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.string\5.5.0\lib\netstandard2.0\Fake.Core.String.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.string\5.5.0\lib\netstandard2.0\Fake.Core.String.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.environment\5.5.0\lib\netstandard2.0\Fake.Core.Environment.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.environment\5.5.0\lib\netstandard2.0\Fake.Core.Environment.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.context\5.5.0\lib\netstandard2.0\Fake.Core.Context.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.context\5.5.0\lib\netstandard2.0\Fake.Core.Context.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\netstandard1.3\System.Diagnostics.FileVersionInfo.dll (4.0.1.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.fakevar\5.5.0\lib\netstandard2.0\Fake.Core.FakeVar.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.fakevar\5.5.0\lib\netstandard2.0\Fake.Core.FakeVar.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.commandlineparsing\5.5.0\lib\netstandard2.0\Fake.Core.CommandLineParsing.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.commandlineparsing\5.5.0\lib\netstandard2.0\Fake.Core.CommandLineParsing.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.io.filesystem\5.5.0\lib\netstandard2.0\Fake.IO.FileSystem.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.io.filesystem\5.5.0\lib\netstandard2.0\Fake.IO.FileSystem.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.trace\5.5.0\lib\netstandard2.0\Fake.Core.Trace.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.trace\5.5.0\lib\netstandard2.0\Fake.Core.Trace.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.process\5.5.0\lib\netstandard2.0\Fake.Core.Process.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.process\5.5.0\lib\netstandard2.0\Fake.Core.Process.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.dotnet.cli\5.5.0\lib\netstandard2.0\Fake.DotNet.Cli.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.dotnet.cli\5.5.0\lib\netstandard2.0\Fake.DotNet.Cli.dll (5.5.0.0)
         - lib: C:\Users\an_user\.nuget\packages\fake.core.target\5.5.0\lib\netstandard2.0\Fake.Core.Target.dll (5.5.0.0)
         - ref: C:\Users\an_user\.nuget\packages\fake.core.target\5.5.0\lib\netstandard2.0\Fake.Core.Target.dll (5.5.0.0)
Global resolve event: FSharp.Compiler.Service.resources, Version=25.0.1.0, Culture=en-US, PublicKeyToken=null
Global resolve event: FSharp.Compiler.Service.resources, Version=25.0.1.0, Culture=en, PublicKeyToken=null
Global resolve event: Microsoft.Build.Framework, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Using cache
Trying to resolve: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly load to known assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51 (Some "C:\ProgramData\chocolatey\lib\fake\bin\netstandard.dll")
Trying to resolve: FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (<null>)
Trying to resolve: Fake.DotNet.Cli, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.DotNet.Cli, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.DotNet.Cli, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.DotNet.Cli, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.dotnet.cli\5.5.0\lib\netstandard2.0\Fake.DotNet.Cli.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Trying to resolve: Fake.Core.Process, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.Core.Process, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.Process, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.Process, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.process\5.5.0\lib\netstandard2.0\Fake.Core.Process.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Trying to resolve: Fake.Core.Target, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.Core.Target, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.Target, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.Target, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.target\5.5.0\lib\netstandard2.0\Fake.Core.Target.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: Fake.Core.Environment, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.Core.Environment, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.Environment, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.Environment, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.environment\5.5.0\lib\netstandard2.0\Fake.Core.Environment.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Trying to resolve: System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.Runtime.dll")
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: Fake.IO.FileSystem, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.IO.FileSystem, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.IO.FileSystem, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.IO.FileSystem, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.io.filesystem\5.5.0\lib\netstandard2.0\Fake.IO.FileSystem.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: Fake.Core.CommandLineParsing, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.CommandLineParsing, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.CommandLineParsing, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.commandlineparsing\5.5.0\lib\netstandard2.0\Fake.Core.CommandLineParsing.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: Fake.Core.FakeVar, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.Core.FakeVar, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.FakeVar, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.FakeVar, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.fakevar\5.5.0\lib\netstandard2.0\Fake.Core.FakeVar.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: FParsecCS, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: FParsecCS, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: FParsecCS, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsecCS.dll")
Redirect assembly from 'System.Runtime, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: FParsec, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: FParsec, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: FParsec, Version=1.0.3.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fparsec\1.0.3\lib\netstandard1.6\FParsec.dll")
Redirect assembly from 'System.Runtime, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'FSharp.Core, Version=4.4.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: System.Globalization.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Globalization.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some
  "C:\ProgramData\chocolatey\lib\fake\bin\System.Globalization.Extensions.dll")
Redirect assembly from 'System.Globalization.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Globalization.Extensions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'FSharp.Core, Version=4.4.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.Globalization.dll")
Trying to resolve: System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.Text.Encoding.dll")
Trying to resolve: System.IO, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.IO, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.IO.dll")
Redirect assembly from 'System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Text.Encoding, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.Collections.dll")
Redirect assembly from 'System.Globalization, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Globalization, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Collections, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: Fake.Core.Context, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly from 'Fake.Core.Context, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null' to 'Fake.Core.Context, Version=5.6.1.0, Culture=neutral, PublicKeyToken=null' (<null>)
Trying to resolve: Fake.Core.Trace, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: Fake.Core.Trace, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: Fake.Core.Trace, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: Fake.Core.Trace, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fake.core.trace\5.5.0\lib\netstandard2.0\Fake.Core.Trace.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'Fake.Core.Context, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null' to previous loaded assembly 'Fake.Core.Context, Version=5.6.1.0, Culture=neutral, PublicKeyToken=null'
Trying to resolve: System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
Redirect assembly load to known assembly: System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a (Some "C:\ProgramData\chocolatey\lib\fake\bin\System.Console.dll")
Redirect assembly from 'System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.IO, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Trying to resolve: System.Reactive, Version=4.1.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263
Global resolve event: System.Reactive, Version=4.1.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263
Could not find assembly in the default load-context: System.Reactive, Version=4.1.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263
Redirect assembly load to known assembly: System.Reactive, Version=4.1.0.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263 (Some
  "C:\Users\an_user\.nuget\packages\system.reactive\4.1.0\lib\netstandard2.0\System.Reactive.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Trying to resolve: FSharp.Control.Reactive, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
Global resolve event: FSharp.Control.Reactive, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
Could not find assembly in the default load-context: FSharp.Control.Reactive, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null
Redirect assembly load to known assembly: FSharp.Control.Reactive, Version=4.0.0.0, Culture=neutral, PublicKeyToken=null (Some
  "C:\Users\an_user\.nuget\packages\fsharp.control.reactive\4.1.0\lib\netstandard2.0\FSharp.Control.Reactive.dll")
Redirect assembly load to previously loaded assembly: netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
Redirect assembly from 'FSharp.Core, Version=4.4.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
run Build
Redirect assembly from 'System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Console, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.IO, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Building project with version: LocalBuild
Shortened DependencyGraph for Target Build:
<== Build
   <== InstallClient
      <== Clean

The running order is:
Group - 1
  - Clean
Group - 2
  - InstallClient
Group - 3
  - Build
Starting target 'Clean'
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Finished (Success) 'Clean' in 00:00:00.0080011
Starting target 'InstallClient'
Redirect assembly from 'System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Console, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.IO, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Node version:
Redirect assembly from 'Fake.Core.Context, Version=5.5.0.0, Culture=neutral, PublicKeyToken=null' to previous loaded assembly 'Fake.Core.Context, Version=5.6.1.0, Culture=neutral, PublicKeyToken=null'
C:\Program Files\nodejs\node.exe --version
v8.11.4
Yarn version:
C:\Program Files (x86)\Yarn\bin\yarn.cmd --version
1.9.4
C:\Program Files (x86)\Yarn\bin\yarn.cmd install --frozen-lockfile
yarn install v1.9.4
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.55s.
Redirect assembly from 'FSharp.Core, Version=4.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'FSharp.Core, Version=4.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Redirect assembly from 'System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' to previous loaded assembly 'System.Runtime, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Starting task 'DotNet:version': running dotnet --version
C:\Program Files\dotnet\dotnet.EXE    --version
2.1.300
Finished (Success) 'DotNet:version' in 00:00:00.1545987
C:\Program Files\dotnet\dotnet.EXE  restore
  Restore completed in 21,63 ms for D:\dev\examples\safe\src\Client\Client.fsproj.
  Restore completed in 46,35 ms for D:\dev\examples\safe\src\Client\Client.fsproj.
Finished (Success) 'InstallClient' in 00:00:02.7983304
Starting target 'Build'
C:\Program Files\dotnet\dotnet.EXE  build
Microsoft (R) Build Engine version 15.7.179.6572 for .NET Core
Copyright (C) Microsoft Corporation. All rights reserved.

  Restore completed in 43,75 ms for D:\dev\examples\safe\src\Server\Server.fsproj.
  Server -> D:\dev\examples\safe\src\Server\bin\Debug\netcoreapp2.1\Server.dll

Build succeeded.
    0 Warning(s)
    0 Error(s)

Time Elapsed 00:00:00.97
C:\Program Files\dotnet\dotnet.EXE  fable webpack --port free -- -p
Fable (1.3.17) daemon started on port 55583
CWD: D:\dev\examples\safe\src\Client
cmd /C node "D:\dev\examples\safe\node_modules\webpack\bin\webpack.js" -p
module.js:549
    throw err;
    ^

Error: Cannot find module 'D:\dev\examples\safe\node_modules\webpack\bin\webpack.js'
    at Function.Module._resolveFilename (module.js:547:15)
    at Function.Module._load (module.js:474:25)
    at Function.Module.runMain (module.js:693:10)
    at startup (bootstrap_node.js:191:16)
    at bootstrap_node.js:612:3
Closing Fable daemon...
Finished (Failed) 'Build' in 00:00:02.2460189

---------------------------------------------------------------------
Build Time Report
---------------------------------------------------------------------
Target          Duration
------          --------
Clean           00:00:00.0021056
InstallClient   00:00:02.7980325
Build           00:00:02.2456283   ('dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client)
Total:          00:00:05.1365296
Status:         Failure
---------------------------------------------------------------------
saving cache...
Script reported an error, see standard error for details.
Script reported an error:
-> BuildFailedException: Target 'Build' failed.
   StackTrace:
        at Fake.Core.TargetModule.runInternal(Boolean singleTarget, Int32 parallelJobs, String targetName, FSharpList`1 args) in D:\a\1\s\src\app\Fake.Core.Target\Target.fs:line 723
        at [email protected](Boolean singleTarget, Int32 parallelJobs, FSharpList`1 arguments) in D:\a\1\s\src\app\Fake.Core.Target\Target.fs:line 836
        at Fake.Core.TargetModule.runWithDefault$cont@795-1(Boolean allowArgs, FSharpFunc`2 fDefault, FSharpMap`2 results, Unit unitVar) in D:\a\1\s\src\app\Fake.Core.Target\Target.fs:line 825
        at <StartupCode$build_53D779A6849C93B4E17ABC45EDE271A983F9E079E24DA6071CE6544C9EA41FF2>.$Build$fsx.main@() in D:\dev\examples\safe\build.fsx:line 116
-> One or more errors occurred. ('dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client)
-> 'dotnet fable webpack --port free -- -p' failed in D:\dev\examples\safe\src\Client
   StackTrace:
        at Microsoft.FSharp.Core.PrintfModule.PrintFormatToStringThenFail@1645.Invoke(String message)
        at Build.runDotNet(String cmd, String workingDir) in D:\dev\examples\safe\build.fsx:line 52
        at [email protected](TargetParameter _arg4) in D:\dev\examples\safe\build.fsx:line 82
        at Fake.Core.TargetModule.runSimpleInternal(TargetContext context, Target target) in D:\a\1\s\src\app\Fake.Core.Target\Target.fs:line 195
Hint: To further diagnose the problem you can set the 'FAKE_DETAILED_ERRORS' environment variable to 'true'
Performance:
 - Cli parsing: 214 milliseconds
 - Packages: 65 milliseconds
 - Script analyzing: 35 milliseconds
 - Script running: 5 seconds
 - Script cleanup: 8 milliseconds
 - Runtime: 6 seconds

No executable found matching command "dotnet-fable"

After installing this template, I get the following:

λ ~/scratch/ dotnet new fable -o FableApp && cd FableApp
The template "Simple Fable App" was created successfully.
λ ~/scratch/FableApp/ yarn install
yarn install v0.27.5
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
Done in 5.91s.
λ ~/scratch/FableApp/ dotnet restore
  Paket version 5.100.2
   - /Users/phillip/scratch/FableApp/src/obj/FableApp.fsproj.netstandard2.0.paket.resolved created
   - /Users/phillip/scratch/FableApp/src/obj/FableApp.fsproj.paket.clitools created
   - /Users/phillip/scratch/FableApp/src/obj/FableApp.fsproj.paket.props created
  Performance:
   - Disk IO: 495 milliseconds
   - Runtime: 3 seconds
  Restoring packages for /Users/phillip/scratch/FableApp/src/FableApp.fsproj...
  Restore completed in 38.93 ms for /Users/phillip/scratch/FableApp/src/FableApp.fsproj.
  Generating MSBuild file /Users/phillip/scratch/FableApp/src/obj/FableApp.fsproj.nuget.g.props.
  Generating MSBuild file /Users/phillip/scratch/FableApp/src/obj/FableApp.fsproj.nuget.g.targets.
  Restore completed in 683.66 ms for /Users/phillip/scratch/FableApp/src/FableApp.fsproj.
λ ~/scratch/FableApp/ dotnet fable yarn-run
No executable found matching command "dotnet-fable"
λ ~/scratch/FableApp/ 

I ran into this at dotnetconf and I can reproduce it today. Not sure if it's a local machine problem.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.