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 117
|
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<FSharpPowerPackSourcesRoot>..</FSharpPowerPackSourcesRoot>
<SccProjectName>SAK</SccProjectName>
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
</PropertyGroup>
<Import Project="$(FSharpPowerPackSourcesRoot)\FSharpPowerPackSource.Settings.targets" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{649FA588-F02E-457C-9FCF-87E46407481F}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>FSharp.PowerPack</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TreatWarningsAsErrors>
</TreatWarningsAsErrors>
<DocumentationFile>FSharp.PowerPack.xml</DocumentationFile>
<NoWarn>$(NoWarn);9;44;60;35;42;62;86;47;40;51</NoWarn>
</PropertyGroup>
<!-- These dummy entries are needed for F# Beta2 -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<Import Project="$(FSharpPowerPackSourcesRoot)\FSharpPowerPackSource.targets" />
<ItemGroup>
<Compile Include="..\assemblyinfo.Common.fs">
<Link>assemblyinfo.Common.fs</Link>
</Compile>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="StructuredFormat.fsi" />
<Compile Include="StructuredFormat.fs" />
<Compile Include="math\q.fsi">
<Link>q.fsi</Link>
</Compile>
<Compile Include="math\q.fs">
<Link>q.fs</Link>
</Compile>
<Compile Include="ResizeArray.fsi" />
<Compile Include="ResizeArray.fs" />
<Compile Include="HashMultiMap.fsi" />
<Compile Include="HashMultiMap.fs" />
<Compile Include="AsyncOperations.fsi" />
<Compile Include="AsyncOperations.fs" />
<Compile Include="AsyncWorker.fsi" />
<Compile Include="AsyncWorker.fs" />
<Compile Include="AsyncStreamReader.fsi" />
<Compile Include="AsyncStreamReader.fs" />
<Compile Include="HashSet.fsi" />
<Compile Include="HashSet.fs" />
<Compile Include="TaggedCollections.fsi" />
<Compile Include="TaggedCollections.fs" />
<Compile Include="TaggedHash.fsi" />
<Compile Include="TaggedHash.fs" />
<Compile Include="Measure.fsi" />
<Compile Include="Measure.fs" />
<Compile Include="SI.fs" />
<Compile Include="PhysicalConstants.fs" />
<Compile Include="Lazy.fsi" />
<Compile Include="Lazy.fs" />
<Compile Include="Permutation.fsi" />
<Compile Include="Permutation.fs" />
<Compile Include="math\INumeric.fsi">
<Link>INumeric.fsi</Link>
</Compile>
<Compile Include="math\INumeric.fs">
<Link>INumeric.fs</Link>
</Compile>
<Compile Include="math\complex.fsi">
<Link>complex.fsi</Link>
</Compile>
<Compile Include="math\complex.fs">
<Link>complex.fs</Link>
</Compile>
<Compile Include="math\associations.fsi">
<Link>associations.fsi</Link>
</Compile>
<Compile Include="math\associations.fs">
<Link>associations.fs</Link>
</Compile>
<Compile Include="math\matrix.fsi">
<Link>matrix.fsi</Link>
</Compile>
<Compile Include="math\matrix.fs">
<Link>matrix.fs</Link>
</Compile>
<Compile Include="NativeArray.fsi" />
<Compile Include="NativeArray.fs" />
<Compile Include="math\NativeArrayExtensions.fsi">
<Link>NativeArrayExtensions.fsi</Link>
</Compile>
<Compile Include="math\NativeArrayExtensions.fs">
<Link>NativeArrayExtensions.fs</Link>
</Compile>
<Compile Include="Lexing.fsi" />
<Compile Include="Lexing.fs" />
<Compile Include="Parsing.fsi" />
<Compile Include="Parsing.fs" />
<Compile Include="Arg.fsi" />
<Compile Include="Arg.fs" />
<Compile Include="LazyList.fsi" />
<Compile Include="LazyList.fs" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.Numerics" Condition="'$(TargetFrameworkVersion)' == 'v4.0'" />
<Reference Condition="'$(TargetFramework)' == 'Silverlight'" Include="System.Net" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition="Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
<Import Condition="'$(TargetFramework)'=='Silverlight'" Project="$(MSBuildExtensionsPath32)\Microsoft\Silverlight\$(SilverlightVersion)\Microsoft.Silverlight.Common.targets"/>
</Project>
|