forked from SuaveIO/suave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infra] paket install, add FSharp.Core to LibUv
- Loading branch information
Showing
4 changed files
with
135 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FSharp.Core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,140 +1,129 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" 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)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{3DC9193E-BD0C-4486-9C58-56B630C36623}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Suave</RootNamespace> | ||
<AssemblyName>Suave</AssemblyName> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<Name>Suave</Name> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<ConsolePause>false</ConsolePause> | ||
<Tailcalls>false</Tailcalls> | ||
<WarningLevel>3</WarningLevel> | ||
<DocumentationFile>bin\Debug\Suave.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>true</Optimize> | ||
<Tailcalls>true</Tailcalls> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<ConsolePause>false</ConsolePause> | ||
<WarningLevel>3</WarningLevel> | ||
<DocumentationFile>bin\Release\Suave.xml</DocumentationFile> | ||
<DefineConstants> | ||
</DefineConstants> | ||
<DebugType>pdbonly</DebugType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion> | ||
</PropertyGroup> | ||
<Choose> | ||
<When Condition="'$(VisualStudioVersion)' == '11.0'"> | ||
<PropertyGroup> | ||
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise> | ||
<PropertyGroup> | ||
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
<Import Project="$(FSharpTargetsPath)" Condition="Exists('$(FSharpTargetsPath)')" /> | ||
<Import Project="..\..\tools\paket.targets" /> | ||
<Choose> | ||
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And $(TargetFrameworkVersion) == 'v4.5'"> | ||
<ItemGroup> | ||
<Reference Include="FSharp.Core"> | ||
<HintPath>..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll</HintPath> | ||
<Private>True</Private> | ||
<Paket>True</Paket> | ||
</Reference> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
<Choose> | ||
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And $(TargetFrameworkVersion) == 'v4.5'"> | ||
<ItemGroup> | ||
<Reference Include="FsPickler"> | ||
<HintPath>..\..\packages\FsPickler\lib\net45\FsPickler.dll</HintPath> | ||
<Private>True</Private> | ||
<Paket>True</Paket> | ||
</Reference> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
<ItemGroup> | ||
<Compile Include="Utils\Aether.fs" /> | ||
<Compile Include="Utils\Async.fs" /> | ||
<Compile Include="Utils\Collections.fs" /> | ||
<Compile Include="Utils\UTF8.fs" /> | ||
<Compile Include="Utils\ASCII.fs" /> | ||
<Compile Include="Utils\String.fs" /> | ||
<Compile Include="Utils\Option.fs" /> | ||
<Compile Include="Utils\Map.fs" /> | ||
<Compile Include="Utils\Choice.fs" /> | ||
<Compile Include="Utils\Random.fs" /> | ||
<Compile Include="Utils\Bytes.fs" /> | ||
<Compile Include="Utils\Encoding.fs" /> | ||
<Compile Include="Utils\Crypto.fs" /> | ||
<Compile Include="Utils\Parsing.fs" /> | ||
<Compile Include="Utils\Serialisation.fs" /> | ||
<Compile Include="Globals.fs" /> | ||
<Compile Include="Logging\LogLevel.fs" /> | ||
<Compile Include="Logging\TraceHeader.fs" /> | ||
<Compile Include="Logging\LogLine.fs" /> | ||
<Compile Include="Logging\Logger.fs" /> | ||
<Compile Include="Log.fs" /> | ||
<Compile Include="Sockets\SocketBinding.fs" /> | ||
<Compile Include="Sockets\BufferManager.fs" /> | ||
<Compile Include="Sockets\ConcurrentPool.fs" /> | ||
<Compile Include="Sockets\AsyncUserToken.fs" /> | ||
<Compile Include="Sockets\SocketOp.fs" /> | ||
<Compile Include="Sockets\ITransport.fs" /> | ||
<Compile Include="Sockets\TcpTransport.fs" /> | ||
<Compile Include="Sockets\Connection.fs" /> | ||
<Compile Include="Sockets\SocketMonad.fs" /> | ||
<Compile Include="Sockets\AsyncSocket.fs" /> | ||
<Compile Include="Tcp.fs" /> | ||
<Compile Include="Sscanf.fs" /> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Model.fs" /> | ||
<Compile Include="Compression.fs" /> | ||
<Compile Include="Http.fsi" /> | ||
<Compile Include="Http.fs" /> | ||
<Compile Include="Cookie.fsi" /> | ||
<Compile Include="Cookie.fs" /> | ||
<Compile Include="State.fs" /> | ||
<Compile Include="Auth.fs" /> | ||
<Compile Include="Web.fs" /> | ||
<Compile Include="Owin.fs" /> | ||
<Compile Include="WebSocket.fs" /> | ||
<Compile Include="Json.fs" /> | ||
<Compile Include="Proxy.fs" /> | ||
<Compile Include="AssemblyVersionInfo.fs" Condition="Exists('AssemblyVersionInfo.fs')" /> | ||
<None Include="paket.references" /> | ||
<Content Include="App.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="mscorlib" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Numerics" /> | ||
<Reference Include="System.Runtime.Caching" /> | ||
<Reference Include="System.Runtime.Serialization" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Web.Extensions" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" 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)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{3DC9193E-BD0C-4486-9C58-56B630C36623}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<RootNamespace>Suave</RootNamespace> | ||
<AssemblyName>Suave</AssemblyName> | ||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | ||
<Name>Suave</Name> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<ConsolePause>false</ConsolePause> | ||
<Tailcalls>false</Tailcalls> | ||
<WarningLevel>3</WarningLevel> | ||
<DocumentationFile>bin\Debug\Suave.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<Optimize>true</Optimize> | ||
<Tailcalls>true</Tailcalls> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<ConsolePause>false</ConsolePause> | ||
<WarningLevel>3</WarningLevel> | ||
<DocumentationFile>bin\Release\Suave.xml</DocumentationFile> | ||
<DefineConstants> | ||
</DefineConstants> | ||
<DebugType>pdbonly</DebugType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion> | ||
</PropertyGroup> | ||
<Choose> | ||
<When Condition="'$(VisualStudioVersion)' == '11.0'"> | ||
<PropertyGroup> | ||
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise> | ||
<PropertyGroup> | ||
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
<Import Project="$(FSharpTargetsPath)" Condition="Exists('$(FSharpTargetsPath)')" /> | ||
<Import Project="..\..\tools\paket.targets" /> | ||
<ItemGroup> | ||
<Compile Include="Utils\Aether.fs" /> | ||
<Compile Include="Utils\Async.fs" /> | ||
<Compile Include="Utils\Collections.fs" /> | ||
<Compile Include="Utils\UTF8.fs" /> | ||
<Compile Include="Utils\ASCII.fs" /> | ||
<Compile Include="Utils\String.fs" /> | ||
<Compile Include="Utils\Option.fs" /> | ||
<Compile Include="Utils\Map.fs" /> | ||
<Compile Include="Utils\Choice.fs" /> | ||
<Compile Include="Utils\Random.fs" /> | ||
<Compile Include="Utils\Bytes.fs" /> | ||
<Compile Include="Utils\Encoding.fs" /> | ||
<Compile Include="Utils\Crypto.fs" /> | ||
<Compile Include="Utils\Parsing.fs" /> | ||
<Compile Include="Utils\Serialisation.fs" /> | ||
<Compile Include="Globals.fs" /> | ||
<Compile Include="Logging\LogLevel.fs" /> | ||
<Compile Include="Logging\TraceHeader.fs" /> | ||
<Compile Include="Logging\LogLine.fs" /> | ||
<Compile Include="Logging\Logger.fs" /> | ||
<Compile Include="Log.fs" /> | ||
<Compile Include="Sockets\SocketBinding.fs" /> | ||
<Compile Include="Sockets\BufferManager.fs" /> | ||
<Compile Include="Sockets\ConcurrentPool.fs" /> | ||
<Compile Include="Sockets\AsyncUserToken.fs" /> | ||
<Compile Include="Sockets\SocketOp.fs" /> | ||
<Compile Include="Sockets\ITransport.fs" /> | ||
<Compile Include="Sockets\TcpTransport.fs" /> | ||
<Compile Include="Sockets\Connection.fs" /> | ||
<Compile Include="Sockets\SocketMonad.fs" /> | ||
<Compile Include="Sockets\AsyncSocket.fs" /> | ||
<Compile Include="Tcp.fs" /> | ||
<Compile Include="Sscanf.fs" /> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Model.fs" /> | ||
<Compile Include="Compression.fs" /> | ||
<Compile Include="Http.fsi" /> | ||
<Compile Include="Http.fs" /> | ||
<Compile Include="Cookie.fsi" /> | ||
<Compile Include="Cookie.fs" /> | ||
<Compile Include="State.fs" /> | ||
<Compile Include="Auth.fs" /> | ||
<Compile Include="Web.fs" /> | ||
<Compile Include="Owin.fs" /> | ||
<Compile Include="WebSocket.fs" /> | ||
<Compile Include="Json.fs" /> | ||
<Compile Include="Proxy.fs" /> | ||
<Compile Include="AssemblyVersionInfo.fs" Condition="Exists('AssemblyVersionInfo.fs')" /> | ||
<None Include="paket.references" /> | ||
<Content Include="App.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="mscorlib" /> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Numerics" /> | ||
<Reference Include="System.Runtime.Caching" /> | ||
<Reference Include="System.Runtime.Serialization" /> | ||
<Reference Include="System.Web" /> | ||
<Reference Include="System.Web.Extensions" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<Choose> | ||
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And $(TargetFrameworkVersion) == 'v4.5'"> | ||
<ItemGroup> | ||
<Reference Include="FSharp.Core"> | ||
<HintPath>..\..\packages\FSharp.Core\lib\net40\FSharp.Core.dll</HintPath> | ||
<Private>True</Private> | ||
<Paket>True</Paket> | ||
</Reference> | ||
</ItemGroup> | ||
</When> | ||
</Choose> | ||
</Project> |