/FingTest/FingTest.fsproj

http://github.com/sandersn/fing · MSBuild · 61 lines · 54 code · 0 blank · 7 comment · 6 complexity · 0295892a49298c71540afcafd838d405 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)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{a61f597a-6803-4754-9484-7b13a27b7193}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>FingTest</RootNamespace>
  11. <AssemblyName>FingTest</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <Name>FingTest</Name>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <Tailcalls>true</Tailcalls>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <WarningLevel>3</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="FSharp.PowerPack.Metadata, Version=2.0.0.0, Culture=neutral, PublicKeyToken=a19089b1c74d0809" />
  34. <Reference Include="mscorlib" />
  35. <Reference Include="FSharp.Core" />
  36. <Reference Include="nunit.framework, Version=2.5.8.10295, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="TestCases.fs" />
  42. <None Include="Script.fsx" />
  43. <Compile Include="Tester.fs" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <ProjectReference Include="..\Fing\Fing.fsproj">
  47. <Name>Fing</Name>
  48. <Project>{52a60ca3-ff6b-4e59-a606-c738d6d14281}</Project>
  49. <Private>True</Private>
  50. </ProjectReference>
  51. </ItemGroup>
  52. <Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll')" />
  53. <Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition="Exists('$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll')" />
  54. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  55. Other similar extension points exist, see Microsoft.Common.targets.
  56. <Target Name="BeforeBuild">
  57. </Target>
  58. <Target Name="AfterBuild">
  59. </Target>
  60. -->
  61. </Project>