Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,36 @@
#Programming F# Source Code#
This repro contains the source code for all things _Programming F#_, available from O'Reilly Media.
This repro contains the source code for all things _Programming F#_, available from O'Reilly Media.

Forgive me. But as a beginner, I am unable to get 'breakText' unresoved - from FsLexYacc extention, which I have installed in my project.

Any comment would be much appreciated.

Here is the Packages.config:

<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="FsLexYacc" version="6.1.0" targetFramework="net452" />
<package id="FsLexYacc.Runtime" version="6.1.0" targetFramework="net452" />
</packages>

Here is the App.config - which I was told to manually add the lines to import FsLexYacc:

<?xml version="1.0" encoding="utf-8" ?>

<configuration>
<Import Project="c:\FsLexYacc.6.0.1\bin\FsLexYacc.targets" />

<FsYacc Include="..\LexAndYaccMiniProject\Parser.fsy">
<OtherFlags>--module Parser</OtherFlags>
</FsYacc>
<FsLex Include="..\LexAndYaccMiniProject\Lexer.fsl">
<OtherFlags>--unicode</OtherFlags>
</FsLex>

<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />

</startup>
</configuration>

Where have I gone wrong, please?