1
0

QSParse.fsproj 582 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net461</TargetFramework>
  5. <Optimize>true</Optimize>
  6. <Tailcalls>true</Tailcalls>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <None Include="App.config" />
  10. <Compile Include="Ast.fs" />
  11. <Compile Include="Parser.fs" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <None Include="App.config" />
  15. <Reference Include="System.Runtime" />
  16. <Reference Include="$(FsharpMyExtension)" />
  17. </ItemGroup>
  18. <Import Project="..\.paket\Paket.Restore.targets" />
  19. </Project>