RunIfChange.fsproj 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>{554b1e12-dfa8-4972-9e9b-f5abe1fc272a}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>RunIfChange</RootNamespace>
  11. <AssemblyName>RunIfChange</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  14. <Name>RunIfChange</Name>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <Tailcalls>false</Tailcalls>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <WarningLevel>3</WarningLevel>
  24. <PlatformTarget>x86</PlatformTarget>
  25. <DocumentationFile>bin\Debug\RunIfChange.XML</DocumentationFile>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <Tailcalls>true</Tailcalls>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <WarningLevel>3</WarningLevel>
  34. <PlatformTarget>x86</PlatformTarget>
  35. <DocumentationFile>bin\Release\RunIfChange.XML</DocumentationFile>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="mscorlib" />
  39. <Reference Include="FSharp.Core" />
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Numerics" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="Program.fs" />
  46. </ItemGroup>
  47. <Import Project="$(MSBuildExtensionsPath32)\FSharp\1.0\Microsoft.FSharp.Targets" Condition="!Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
  48. <Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" Condition=" Exists('$(MSBuildBinPath)\Microsoft.Build.Tasks.v4.0.dll')" />
  49. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  50. Other similar extension points exist, see Microsoft.Common.targets.
  51. <Target Name="BeforeBuild">
  52. </Target>
  53. <Target Name="AfterBuild">
  54. </Target>
  55. -->
  56. </Project>