Created
August 20, 2013 11:01
-
-
Save joastbg/6280065 to your computer and use it in GitHub Desktop.
F# project file (fsproj)
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"> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | |
<ProductVersion>8.0.30703</ProductVersion> | |
<SchemaVersion>2.0</SchemaVersion> | |
<ProjectGuid>{a9120397-fd09-4e7f-9384-c7fd8976acc5}</ProjectGuid> | |
<OutputType>Exe</OutputType> | |
<RootNamespace>ApplicativeFParsec</RootNamespace> | |
<AssemblyName>ApplicativeFParsec</AssemblyName> | |
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
<TargetFrameworkProfile>Client</TargetFrameworkProfile> | |
<Name>ApplicativeFParsec</Name> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> | |
<DebugSymbols>true</DebugSymbols> | |
<DebugType>full</DebugType> | |
<Optimize>false</Optimize> | |
<Tailcalls>false</Tailcalls> | |
<OutputPath>bin\Debug\</OutputPath> | |
<DefineConstants>DEBUG;TRACE</DefineConstants> | |
<WarningLevel>3</WarningLevel> | |
<PlatformTarget>x86</PlatformTarget> | |
<DocumentationFile>bin\Debug\ApplicativeFParsec.XML</DocumentationFile> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> | |
<DebugType>pdbonly</DebugType> | |
<Optimize>true</Optimize> | |
<Tailcalls>true</Tailcalls> | |
<OutputPath>bin\Release\</OutputPath> | |
<DefineConstants>TRACE</DefineConstants> | |
<WarningLevel>3</WarningLevel> | |
<PlatformTarget>x86</PlatformTarget> | |
<DocumentationFile>bin\Release\ApplicativeFParsec.XML</DocumentationFile> | |
</PropertyGroup> | |
<ItemGroup> | |
<Reference Include="FParsec"> | |
<HintPath>.\FParsec.dll</HintPath> | |
</Reference> | |
<Reference Include="FParsecCS"> | |
<HintPath>.\FParsecCS.dll</HintPath> | |
</Reference> | |
<Reference Include="mscorlib" /> | |
<Reference Include="FSharp.Core" /> | |
<Reference Include="System" /> | |
<Reference Include="System.Core" /> | |
<Reference Include="System.Numerics" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Include="main.fs" /> | |
</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')" /> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment