-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFSharp-JVM-Life.fsproj
116 lines (116 loc) · 5.45 KB
/
FSharp-JVM-Life.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{ACDD5C45-7357-403A-9A30-9E2A2EF0F39F}</ProjectGuid>
<WebSharperProject>Bundle</WebSharperProject>
<WebSharperBundleOutputDir>src\main\resources</WebSharperBundleOutputDir>
<OutputType>Library</OutputType>
<RootNamespace>FSharp_JVM_Life</RootNamespace>
<AssemblyName>FSharp_JVM_Life</AssemblyName>
<TargetFSharpCoreVersion>4.3.1.0</TargetFSharpCoreVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
<Tailcalls>false</Tailcalls>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<OutputPath>bin\Release</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
<Name>FSharp_JVM_Life</Name>
<RootNamespace>FSharp_JVM_Life</RootNamespace>
<AssemblyName>FSharp_JVM_Life</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="src\main\fsharp\Life.fs" />
<Compile Include="src\main\fsharp\Game.fs" />
<Compile Include="src\main\fsharp\Canvas.fs" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="FSharp.Core">
<Private>True</Private>
</Reference>
<Reference Include="WebSharper.Core.JavaScript">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Core.JavaScript.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Core">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Core.dll</HintPath>
</Reference>
<Reference Include="WebSharper.InterfaceGenerator">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.InterfaceGenerator.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Html.Server">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Html.Server.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Html.Client">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Html.Client.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Sitelets">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Sitelets.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Web">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Web.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Main">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Main.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Collections">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Collections.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Control">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Control.dll</HintPath>
</Reference>
<Reference Include="WebSharper.JavaScript">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.JavaScript.dll</HintPath>
</Reference>
<Reference Include="WebSharper.JQuery">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.JQuery.dll</HintPath>
</Reference>
<Reference Include="WebSharper.Testing">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\WebSharper.Testing.dll</HintPath>
</Reference>
<Reference Include="IntelliFactory.Xml">
<HintPath>packages\WebSharper.3.4.14.193\lib\net40\IntelliFactory.Xml.dll</HintPath>
</Reference>
</ItemGroup>
<!-- F# targets -->
<Choose>
<When Condition="'$(VisualStudioVersion)' == '11.0'">
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')">
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets')">
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
</PropertyGroup>
</Otherwise>
</Choose>
<Import Project="$(FSharpTargetsPath)" />
<Import Project="packages\WebSharper.3.4.14.193\build\WebSharper.targets" Condition="Exists('packages\WebSharper.3.4.14.193\build\WebSharper.targets')" />
<ItemGroup>
<Folder Include="src\" />
<Folder Include="src\main\" />
<Folder Include="src\main\fsharp\" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
</Project>