Parse single instruction in neutral text
This commit is contained in:
@@ -1,20 +1,24 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup><Compile Include="LDText.fs" />
|
||||
<ItemGroup>
|
||||
<Compile Include="LDText.fs" />
|
||||
<FsLex Include="Lexer.fsl">
|
||||
<OtherFlags>--module Lexer</OtherFlags>
|
||||
</FsLex>
|
||||
<FsYacc Include="Parser.fsy">
|
||||
<OtherFlags>--module Parser</OtherFlags>
|
||||
</FsYacc>
|
||||
<Compile Include="Parser.fs">
|
||||
<OtherFlags>--strict-indentation-</OtherFlags>
|
||||
</Compile>
|
||||
<Compile Include="Lexer.fs">
|
||||
<OtherFlags>--strict-indentation-</OtherFlags>
|
||||
</Compile>
|
||||
<Compile Include="Library.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="FsLexYacc" Version="11.3.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
<Import Project=".paket\Paket.Restore.targets" />
|
||||
</Project>
|
Reference in New Issue
Block a user