-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFSharpASTExtractor.fsproj
60 lines (60 loc) · 2.54 KB
/
FSharpASTExtractor.fsproj
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{2A9E8B7B-8B30-4475-AA1D-0893E75CC5E3}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>FSharpASTExtractor</RootNamespace>
<AssemblyName>FSharpASTExtractor</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<Externalconsole>true</Externalconsole>
<Tailcalls>false</Tailcalls>
<PlatformTarget>x86</PlatformTarget>
<Commandlineparameters>extendedLetExtract /Users/mkubicek/Dropbox/Uni/FSharp/CompilerServicesUtil/CompilerServicesUtil/bin/Debug/input.fsharp out.txt</Commandlineparameters>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
<Tailcalls>true</Tailcalls>
<DebugSymbols>true</DebugSymbols>
<DefineConstants>
</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core">
<HintPath>..\..\..\..\..\fsharp\lib\release\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="FSharp.Compiler.Service">
<HintPath>..\packages\FSharp.Compiler.Service.0.0.86\lib\net40\FSharp.Compiler.Service.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="GetAST.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.1\Framework\v4.0\Microsoft.FSharp.Targets" />
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="input.fsharp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>