-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunity-fsharp-repl-client.fsproj
More file actions
43 lines (43 loc) · 1.75 KB
/
unity-fsharp-repl-client.fsproj
File metadata and controls
43 lines (43 loc) · 1.75 KB
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
<?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)' == '' ">AnyCPU</Platform>
<ProductVersion>0.0.1</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5AEF821D-2B77-4D40-96F8-4046F5F6B000}</ProjectGuid>
<OutputType>Exe</OutputType>
<AssemblyName>unity-fsharp-repl-client</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<IntermediateOutputPath>obj</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<OutputPath>bin\debug\client</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<ConsolePause>False</ConsolePause>
<PlatformTarget />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\release\client</OutputPath>
<ErrorReport>prompt</ErrorReport>
<Tailcalls>true</Tailcalls>
<ConsolePause>False</ConsolePause>
<PlatformTarget />
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core">
<HintPath>lib\FSharp.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="src\client\client.fs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.5\Microsoft.FSharp.Targets" />
</Project>