简体   繁体   English

具有C#6.0代码的MSBuild命令行无法构建

[英]MSBuild command line with C# 6.0 code fails to build

I am having an issue getting MSBuild to compile c# 6.0 code, it reports a failure when trying to build expression body syntax, etx. 我在让MSBuild编译c#6.0代码时出现问题,它在尝试构建表达式体语法时报告失败,etx。

So I've been creating build project like this for years. 所以我多年来一直在创建像这样的构建项目。 I have a powershell script that kicks of an msbuild with some parameters: 我有一个powershell脚本,可以使用一些参数来修复msbuild:

msbuild.exe _build\build.proj
        /p:Build_Number=1.2.0
        /p:Configuration=QA
        /p:SolutionName=MPGCS-Api.sln
        /ToolsVersion:14.0

I verified that msbuild.exe is coming from C:\\Program Files (x86)\\MSBuild\\14.0\\Bin , i did this by going into that folder and specifying the full physical path to the .proj file. 我验证了msbuild.exe来自C:\\ Program Files(x86)\\ MSBuild \\ 14.0 \\ Bin ,我这样做是通过进入该文件夹并指定.proj文件的完整物理路径。 I get the same exact errors. 我得到了同样的错误。

I have been looking for an example on how to setup a MSBuild project file with C# 6.0 with no luck, so this is my basic setup (this is the build.proj file). 我一直在寻找一个如何使用C#6.0设置MSBuild项目文件但没有运气的例子,所以这是我的基本设置(这是build.proj文件)。 If I had to guess I am not importing the correct targets, etc. But I am a little lost. 如果我不得不猜测我没有输入正确的目标等等。但我有点失落。 Here is my proj file: 这是我的proj文件:

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Root>$(MSBuildStartupDirectory)</Root>
    <NugetExe>$(Root)\_build\lib\nuget\nuget.exe</NugetExe>
    <Build_Number>0.0.0</Build_Number>
    <SolutionName></SolutionName>
    <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
    <VisualStudioVersion>14.0</VisualStudioVersion>
  </PropertyGroup>

  <Target Name="Clean">
    <!-- Clean up -->
    <ItemGroup>
      <FilesToDelete Include="$(Root)\_build\Artifacts\**\*.*" />
      <FilesToDelete Include="$(Root)\_build\Published\**\*.*" />
    </ItemGroup>
    <Delete Files="@(FilesToDelete)" ContinueOnError="false" />

    <!-- Ensure directories exists -->
    <MakeDir Directories="$(MSBuildProjectDirectory)\Artifacts" Condition="!Exists('$(MSBuildProjectDirectory)\Artifacts')" />
    <MakeDir Directories="$(MSBuildProjectDirectory)\Published" Condition="!Exists('$(MSBuildProjectDirectory)\Artifacts')" />
  </Target>

  <Target Name="Debug" AfterTargets="Clean">
    <!-- Diagnostics -->
    <Message Text="Diagnostics:"/>
    <Message Text="Build Number:    $(build_number)" />
    <Message Text="Configuration:    $(Configuration)" />
    <Message Text="VisualStudioVersion:    $(VisualStudioVersion)" />
    <Message Text="Project root:    $(Root)" />

    <!-- Restore Nuget Packages -->
    <Message Text="Restoring nuget..."/>
    <Exec Command="$(NugetExe) restore $(Root)\$(SolutionName)" />
  </Target>

  <Target Name="GenerateOctopackAPI" AfterTargets="Debug">
    <ItemGroup>
      <ProjectToBuild Include="$(Root)\MPG.CS.Api\MPG.CS.Api.csproj" />
    </ItemGroup>
    <MSBuild Projects="@(ProjectToBuild)" ContinueOnError="false" Targets="Rebuild" Properties="
      RunOctoPack=true;
      Configuration=$(ProjectBuildMode);
      Platform=AnyCpu;
      TargetFrameworkVersion=$(TargetFrameworkVersion);
      VisualStudioVersion=$(VisualStudioVersion);
      OctoPackPublishPackageToFileShare=$(Root)\_build\Artifacts;
      OctoPackPackageVersion=$(Build_Number);
      OctoPackProjectName=UI;
      OutputPath=bin\$(ProjectBuildMode)" />
    </Target>
</Project>

Here is some info from my "Debug" target, as you can see I am setting the VisualStudioVersion to 14.0 as per some suggestions I read online. 以下是我的“调试”目标中的一些信息,您可以看到我根据我在线阅读的一些建议将VisualStudioVersion设置为14.0

 Diagnostics:
  Build Number:    1.2.0
  Configuration:    QA
  VisualStudioVersion:    14.0
  Project root:    C:\dev\mpg\MPGCS-Api

Here is an example error, it's basically failing on c# 6.0 code, if I were to remove c# 6 code, everything will compile: 这是一个示例错误,它基本上在c#6.0代码上失败,如果我要删除c#6代码,一切都将编译:

TicketType.cs(19,28): error CS1002: ; expected [C:\dev\mpg\MPGCS-Api\MPG.CS.Model\MPG.CS.Model.csproj]
  TicketType.cs(19,44): error CS1519: Invalid token '(' in class, struct, or interface member declaration [C:\dev\mpg\MPGCS-Api\MPG.CS.Model\MPG.CS.Model.cs proj]
  TicketStatus.cs(16,36): error CS1002: ; expected [C:\dev\mpg\MPGCS-Api\MPG.CS.Model\MPG.CS.Model.csproj]
  TicketStatus.cs(16,53): error CS1519: Invalid token '(' in class, struct, or interface member declaration [C:\dev\mpg\MPGCS-Api\MPG.CS.Model\MPG.CS.Model. csproj]
  TicketStatus.cs(16,82): error CS1519: Invalid token '(' in class, struct, or interface member declaration [C:\dev\mpg\MPGCS-Api\MPG.CS.Model\MPG.CS.Model. csproj]

Here is a line it's failing on (C# 6 code): 这是一条失败的线(C#6代码):

public bool IsAbbreviated  => (Title.ToLower() == "open" || Title.ToLower() == "closed");

I'm at a loss, I thought just using the proper msbuild.exe will allow me to take advantage of c# 6.0. 我很茫然,我以为只使用正确的msbuild.exe就可以让我利用c#6.0。 Any help would be greatly appreciated. 任何帮助将不胜感激。

If you're running the powershell script on a build server, separate from your dev environment, you will need to make sure that the machine itself can handle C# 6.0. 如果您在构建服务器上运行powershell脚本,与开发环境分开,则需要确保机器本身可以处理C#6.0。 Since it uses a different compiler all together, it wouldn't work if VS 2015 wasn't installed. 由于它一起使用不同的编译器,如果没有安装VS 2015,它将无法工作。 Alternately, you can add the Microsoft.Net.Compilers nuget package as a dependency to allow VS 2012 and VS 2013 to compile it. 或者,您可以将Microsoft.Net.Compilers nuget包添加为依赖项,以允许VS 2012和VS 2013进行编译。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用命令行中的C#7代码构建.csproj(msbuild) - How to build .csproj with C# 7 code from command line (msbuild) 命令行MSBuild无法编译代码 - Command line MSBuild fails to compile code 使用“Process.Start”通过 C# 执行 MSBuild 失败并出现错误,但如果我在命令行中手动尝试则可以 - Executing MSBuild via C# using `Process.Start` fails with error but works if I try manually in the command line 如何使用msbuild从命令行编译我的c#解决方案 - How to compile my c# solution with msbuild from command line 如何从命令行或 C# 应用程序检测 msbuild 的状态 - How to detect the status of msbuild from command line or C# Application 代码中的C#命令行 - C# command line in code 使用C#代码中的msbuild构建Visual Studio解决方案 - Build visual studio solution using msbuild from c# code 在x86中引用C ++ / CLI DLL的C#项目进行编译时,MSBuild无法生成 - MSBuild fails to build when compiling C# project referencing C++/CLI DLL in x86 当尝试在C#项目上运行SonarQube Scanner for MSBuild时构建失败 - Build fails when try to run SonarQube Scanner for MSBuild on C# project 在命令行中运行C#示例代码 - Running C# sample code in command line
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM