mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="utf-8"?>
 | 
						|
<Project ToolsVersion="12.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>
 | 
						|
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 | 
						|
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 | 
						|
    <SchemaVersion>2.0</SchemaVersion>
 | 
						|
    <ProjectGuid>6cfa7a11-a5cd-4301-bd7b-b210d4d51a29</ProjectGuid>
 | 
						|
    <OutputType>Exe</OutputType>
 | 
						|
    <RootNamespace>fsproj_sample</RootNamespace>
 | 
						|
    <AssemblyName>fsproj_sample</AssemblyName>
 | 
						|
    <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
 | 
						|
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
 | 
						|
    <TargetFSharpCoreVersion>4.3.1.0</TargetFSharpCoreVersion>
 | 
						|
    <Name>fsproj-sample</Name>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 | 
						|
    <DebugSymbols>true</DebugSymbols>
 | 
						|
    <DebugType>full</DebugType>
 | 
						|
    <Optimize>false</Optimize>
 | 
						|
    <Tailcalls>false</Tailcalls>
 | 
						|
    <OutputPath>bin\Debug\</OutputPath>
 | 
						|
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 | 
						|
    <WarningLevel>3</WarningLevel>
 | 
						|
    <PlatformTarget>AnyCPU</PlatformTarget>
 | 
						|
    <DocumentationFile>bin\Debug\fsproj_sample.XML</DocumentationFile>
 | 
						|
    <Prefer32Bit>true</Prefer32Bit>
 | 
						|
  </PropertyGroup>
 | 
						|
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 | 
						|
    <DebugType>pdbonly</DebugType>
 | 
						|
    <Optimize>true</Optimize>
 | 
						|
    <Tailcalls>true</Tailcalls>
 | 
						|
    <OutputPath>bin\Release\</OutputPath>
 | 
						|
    <DefineConstants>TRACE</DefineConstants>
 | 
						|
    <WarningLevel>3</WarningLevel>
 | 
						|
    <PlatformTarget>AnyCPU</PlatformTarget>
 | 
						|
    <DocumentationFile>bin\Release\fsproj_sample.XML</DocumentationFile>
 | 
						|
    <Prefer32Bit>true</Prefer32Bit>
 | 
						|
  </PropertyGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <Reference Include="mscorlib" />
 | 
						|
    <Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
 | 
						|
      <Private>True</Private>
 | 
						|
    </Reference>
 | 
						|
    <Reference Include="System" />
 | 
						|
    <Reference Include="System.Core" />
 | 
						|
    <Reference Include="System.Numerics" />
 | 
						|
  </ItemGroup>
 | 
						|
  <ItemGroup>
 | 
						|
    <Compile Include="Program.fs" />
 | 
						|
    <None Include="App.config" />
 | 
						|
  </ItemGroup>
 | 
						|
  <PropertyGroup>
 | 
						|
    <MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
 | 
						|
  </PropertyGroup>
 | 
						|
  <Choose>
 | 
						|
    <When Condition="'$(VisualStudioVersion)' == '11.0'">
 | 
						|
      <PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')">
 | 
						|
        <FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath>
 | 
						|
      </PropertyGroup>
 | 
						|
    </When>
 | 
						|
    <Otherwise>
 | 
						|
      <PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets')">
 | 
						|
        <FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
 | 
						|
      </PropertyGroup>
 | 
						|
    </Otherwise>
 | 
						|
  </Choose>
 | 
						|
  <Import Project="$(FSharpTargetsPath)" />
 | 
						|
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
 | 
						|
       Other similar extension points exist, see Microsoft.Common.targets.
 | 
						|
  <Target Name="BeforeBuild">
 | 
						|
  </Target>
 | 
						|
  <Target Name="AfterBuild">
 | 
						|
  </Target>
 | 
						|
  -->
 | 
						|
</Project> |