LanguageServiceProfiling.fsproj 3.6 KB
Newer Older
V
Vasily Kirichenko 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.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>
    <FSharpSourcesRoot>$(MSBuildProjectDirectory)\..\..\..\src</FSharpSourcesRoot>
    <ProjectLanguage>FSharp</ProjectLanguage>
  </PropertyGroup>
  <Import Project="$(FSharpSourcesRoot)\FSharpSource.settings.targets" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>e7fa3a71-51af-4fca-9c2f-7c853e515903</ProjectGuid>
    <OutputType>Exe</OutputType>
    <RootNamespace>LanguageServiceProfiling</RootNamespace>
    <AssemblyName>LanguageServiceProfiling</AssemblyName>
    <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
19
    <TargetFSharpCoreVersion>4.4.3.0</TargetFSharpCoreVersion>
V
Vasily Kirichenko 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
    <Name>LanguageServiceProfiling</Name>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <Optimize>false</Optimize>
    <Tailcalls>false</Tailcalls>
    <OutputPath>bin\$(Configuration)\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <WarningLevel>3</WarningLevel>
    <PlatformTarget>x86</PlatformTarget>
    <DocumentationFile>
    </DocumentationFile>
    <Prefer32Bit>true</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <Optimize>true</Optimize>
    <Tailcalls>true</Tailcalls>
    <OutputPath>bin\$(Configuration)\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <WarningLevel>3</WarningLevel>
    <PlatformTarget>x86</PlatformTarget>
    <DocumentationFile>
    </DocumentationFile>
    <Prefer32Bit>true</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="AssemblyInfo.fs" />
    <Compile Include="ProjectCracker.fs" />
    <Compile Include="Options.fs" />
    <Compile Include="Program.fs" />
    <None Include="App.config" />
    <Content Include="packages.config" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="mscorlib" />
    <Reference Include="System" />
    <Reference Include="System.Core" />
    <Reference Include="System.Numerics" />
    <Reference Include="System.ValueTuple">
59
      <HintPath>$(FSharpSourcesRoot)\..\packages\System.ValueTuple.4.3.1\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
V
Vasily Kirichenko 已提交
60 61 62 63 64 65 66 67 68
    </Reference>
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\..\src\fsharp\FSharp.Core\FSharp.Core.fsproj">
      <Name>FSharp.Core</Name>
      <Project>{ded3bbd7-53f4-428a-8c9f-27968e768605}</Project>
      <Private>True</Private>
    </ProjectReference>
D
Don Syme 已提交
69
    <ProjectReference Include="..\..\..\src\fsharp\FSharp.Compiler.Private\FSharp.Compiler.Private.fsproj">
D
Don Syme 已提交
70
      <Project>{2E4D67B4-522D-4CF7-97E4-BA940F0B18F3}</Project>
D
Don Syme 已提交
71
      <Name>FSharp.Compiler.Private</Name>
V
Vasily Kirichenko 已提交
72 73
      <Private>True</Private>
    </ProjectReference>
74 75 76 77 78
    <Reference Include="System.ValueTuple">
      <HintPath>$(FSharpSourcesRoot)\..\packages\System.ValueTuple.4.3.1\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
      <Private>true</Private>
    </Reference>
   </ItemGroup>
D
Don Syme 已提交
79
  <Import Project="$(FSharpSourcesRoot)\FSharpSource.targets" />
V
Vasily Kirichenko 已提交
80
</Project>