24 lines
776 B
XML
24 lines
776 B
XML
<?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" />
|
|
<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>
|
|
<Import Project=".paket\Paket.Restore.targets" />
|
|
</Project> |