-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDeepNet.fsproj
More file actions
112 lines (112 loc) · 5.26 KB
/
Copy pathDeepNet.fsproj
File metadata and controls
112 lines (112 loc) · 5.26 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
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>7c53d1c7-8ed2-4e04-8f2d-cf0384c51f33</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>DeepNet</RootNamespace>
<AssemblyName>DeepNet</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFSharpCoreVersion>4.4.1.0</TargetFSharpCoreVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Name>DeepNet</Name>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup>
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<Tailcalls>false</Tailcalls>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<DocumentationFile>bin\Debug\DeepNet.XML</DocumentationFile>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<WarningLevel>3</WarningLevel>
<DocumentationFile>bin\Release\DeepNet.XML</DocumentationFile>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<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)" />
<Target Name="AfterBuild" Condition=" '$(Configuration)' == 'Release'">
<Exec Command="..\dist\nuget.exe pack DeepNet.fsproj -Prop Configuration=$(Configuration) -Prop Platform=x64 -IncludeReferencedProjects -OutputDirectory ..\dist\$(Configuration) -Suffix "$(VERSUFFIX)"" />
</Target>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<None Include="DeepNet.nuspec" />
<Content Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="FSharp.Data">
<HintPath>..\packages\FSharp.Data.2.3.2\lib\net40\FSharp.Data.dll</HintPath>
</Reference>
<Reference Include="FSharp.Data.DesignTime">
<HintPath>..\packages\FSharp.Data.2.3.2\lib\net40\FSharp.Data.DesignTime.dll</HintPath>
</Reference>
<Reference Include="HDF.PInvoke">
<HintPath>..\Tensor\HDF5\HDF.PInvoke.dll</HintPath>
</Reference>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<ProjectReference Include="..\MLDatasets\MLDatasets.fsproj">
<Name>MLDatasets</Name>
<Project>{4e45833f-2658-465e-bb71-03400bba5534}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\MLModels\MLModels.fsproj">
<Name>MLModels</Name>
<Project>{28168025-4211-4de2-bb66-b267378f74a7}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\MLOptimizers\MLOptimizers.fsproj">
<Name>MLOptimizers</Name>
<Project>{c6ea7c8a-c74f-44df-828b-7c16b8a06329}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\SymTensorCuda\SymTensorCuda.fsproj">
<Name>SymTensorCuda</Name>
<Project>{816e58da-85a0-4272-b042-682bc6f0aa5b}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\SymTensor\SymTensor.fsproj">
<Name>SymTensor</Name>
<Project>{2e96a03e-7031-43c3-aeee-b9c9dc543448}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\Tensor\Tensor.fsproj">
<Name>Tensor</Name>
<Project>{82de3bae-bcec-4df8-9c46-07b7faf4e31a}</Project>
<Private>True</Private>
</ProjectReference>
<Reference Include="System.Xml.Linq" />
</ItemGroup>
</Project>