Concord.csproj 2.2 KB
Newer Older
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -->
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
J
Jared Parsons 已提交
4
  <Import Project="..\..\..\..\..\build\Targets\VSL.Settings.targets" />
5 6 7 8 9 10 11 12 13
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{5002636A-FE8D-40BF-8818-AB513A2194FA}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>Microsoft.CodeAnalysis.ExpressionEvaluator</RootNamespace>
    <AssemblyName>Microsoft.CodeAnalysis.ExpressionEvaluator.Concord.DoNotUse</AssemblyName>
    <ConcordDir>$(MSBuildThisFileDirectory)</ConcordDir>
    <NonShipping>true</NonShipping>
14 15 16
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
    <TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
17 18 19 20 21
    <FakeSignToolPath>$(NuGetPackageRoot)\FakeSign\0.9.2\tools\FakeSign.exe</FakeSignToolPath>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
  <ItemGroup>
22
    <None Include="project.json" />
23 24
  </ItemGroup>
  <ItemGroup>
25 26 27 28 29 30
    <Content Include="$(NuGetPackageRoot)\Microsoft.VisualStudio.Debugger.Engine\14.3.25422\lib\portable-net45+win8\Microsoft.VisualStudio.Debugger.Engine.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
    <Content Include="$(NuGetPackageRoot)\Microsoft.VisualStudio.Debugger.Metadata\14.3.25421\lib\portable-net45+win8\Microsoft.VisualStudio.Debugger.Metadata.dll">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
31
  </ItemGroup>
32 33
  <Target Name="SignConcord" BeforeTargets="PrepareForRun">
    <Exec Command='"$(FakeSignToolPath)" -f "$(OutDir)%(Content.Filename)%(Extension)"' />
34
  </Target>
J
Jared Parsons 已提交
35 36
  <Import Project="..\..\..\..\..\build\Targets\VSL.Imports.targets" />
</Project>