Last active
December 15, 2015 02:19
-
-
Save haf/5186846 to your computer and use it in GitHub Desktop.
F# 2.0 MD5
This file contains hidden or 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
| MD5 (vendor/FSharp.Core.dll) = cf4b5f8cf939563f08b834d7d84dde25 |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="4.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)' == '' ">AnyCPU</Platform> | |
| <SchemaVersion>2.0</SchemaVersion> | |
| <ProjectGuid>{8f108b6a-0fbe-4d6e-8daa-b5ba1429c925}</ProjectGuid> | |
| <OutputType>Library</OutputType> | |
| <RootNamespace>$safeprojectname$</RootNamespace> | |
| <AssemblyName>$safeprojectname$</AssemblyName> | |
| <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
| <Name>EmptyFSharpProject</Name> | |
| </PropertyGroup> | |
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
| <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\EmptyFSharpProject.xml</DocumentationFile> | |
| </PropertyGroup> | |
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
| <DebugType>pdbonly</DebugType> | |
| <Optimize>true</Optimize> | |
| <Tailcalls>true</Tailcalls> | |
| <OutputPath>bin\Release\</OutputPath> | |
| <DefineConstants>TRACE</DefineConstants> | |
| <WarningLevel>3</WarningLevel> | |
| <DocumentationFile>bin\Release\EmptyFSharpProject.xml</DocumentationFile> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <Reference Include="FSharp.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | |
| <HintPath>..\vendor\FSharp.Core.dll</HintPath> | |
| <Private>True</Private> | |
| </Reference> | |
| <Reference Include="mscorlib" /> | |
| <Reference Include="System" /> | |
| <Reference Include="System.Core" /> | |
| <Reference Include="System.Numerics" /> | |
| </ItemGroup> | |
| <ItemGroup> | |
| <Compile Include="Library.fs" /> | |
| <None Include="Script.fsx" /> | |
| </ItemGroup> | |
| <PropertyGroup> | |
| <MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion> | |
| </PropertyGroup> | |
| <Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')" /> | |
| <Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll') And Exists('$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets')" /> | |
| <Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll') And Exists('$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets') And !Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')" /> | |
| </Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment