/Euler/Euler.fsproj
MSBuild | 66 lines | 59 code | 0 blank | 7 comment | 0 complexity | bf9415da7f31a29bcf4596d8de145b43 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 <PropertyGroup> 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Platform Condition=" '$(Platform)' == '' ">x86</Platform> 6 <ProductVersion>8.0.30703</ProductVersion> 7 <SchemaVersion>2.0</SchemaVersion> 8 <ProjectGuid>{cbe525b8-17f7-47e9-a74c-97b17ab3e9cd}</ProjectGuid> 9 <OutputType>Exe</OutputType> 10 <RootNamespace>Euler</RootNamespace> 11 <AssemblyName>Euler</AssemblyName> 12 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 13 <Name>Euler</Name> 14 </PropertyGroup> 15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> 16 <DebugSymbols>true</DebugSymbols> 17 <DebugType>full</DebugType> 18 <Optimize>false</Optimize> 19 <Tailcalls>false</Tailcalls> 20 <OutputPath>bin\Debug\</OutputPath> 21 <DefineConstants>DEBUG;TRACE</DefineConstants> 22 <WarningLevel>3</WarningLevel> 23 <PlatformTarget>x86</PlatformTarget> 24 <DocumentationFile>bin\Debug\Euler.XML</DocumentationFile> 25 </PropertyGroup> 26 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> 27 <DebugType>pdbonly</DebugType> 28 <Optimize>true</Optimize> 29 <Tailcalls>true</Tailcalls> 30 <OutputPath>bin\Release\</OutputPath> 31 <DefineConstants>TRACE</DefineConstants> 32 <WarningLevel>3</WarningLevel> 33 <PlatformTarget>x86</PlatformTarget> 34 <DocumentationFile>bin\Release\Euler.XML</DocumentationFile> 35 </PropertyGroup> 36 <ItemGroup> 37 <Reference Include="mscorlib" /> 38 <Reference Include="FSharp.Core" /> 39 <Reference Include="System" /> 40 <Reference Include="System.Core" /> 41 </ItemGroup> 42 <ItemGroup> 43 <Compile Include="Problem1.fs" /> 44 <Compile Include="Problem2.fs" /> 45 <Compile Include="Problem3.fs" /> 46 <Compile Include="Problem4.fs" /> 47 <Compile Include="Problem25.fs" /> 48 <Compile Include="Program.fs" /> 49 </ItemGroup> 50 <ItemGroup> 51 <ProjectReference Include="..\Euler.Lib\Euler.Lib.fsproj"> 52 <Name>Euler.Lib</Name> 53 <Project>{d770a8ad-faa2-4d23-9e29-6563ba7dca0e}</Project> 54 <Private>True</Private> 55 </ProjectReference> 56 </ItemGroup> 57 <Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" /> 58 <Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" /> 59 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 60 Other similar extension points exist, see Microsoft.Common.targets. 61 <Target Name="BeforeBuild"> 62 </Target> 63 <Target Name="AfterBuild"> 64 </Target> 65 --> 66</Project>