forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsyacc.fsproj
More file actions
27 lines (23 loc) · 869 Bytes
/
fsyacc.fsproj
File metadata and controls
27 lines (23 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<DefineConstants>INTERNALIZED_FSLEXYACC_RUNTIME;$(DefineConstants)</DefineConstants>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
</PropertyGroup>
<ItemGroup>
<Compile Include="Lexing.fsi" />
<Compile Include="Lexing.fs" />
<Compile Include="Parsing.fsi" />
<Compile Include="Parsing.fs" />
<Compile Include="Arg.fsi" />
<Compile Include="Arg.fs" />
<Compile Include="fsyaccast.fs" />
<Compile Include="fsyaccpars.fs" />
<Compile Include="fsyacclex.fs" />
<Compile Include="fsyacc.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)..\..\fsharp\FSharp.Core\FSharp.Core.fsproj" />
</ItemGroup>
</Project>