我正在尝试使用GitLab的CI功能自动构建C#解决方案。 但是,每当我尝试在类属性中编译包含get / set函数的代码时,构建都会失败:
Checking out 0c431438 as master...
Skipping Git submodules setup
$ echo "Release build..."
"Release build..."
$ "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe" /consoleloggerparameters:ErrorsOnly /maxcpucount /nologo /property:Configuration=Release /verbosity:quiet "%PROJECT_NAME%.sln"
Program.cs(18,38): error CS1043: { oder ; erwartet. [C:\Gitlab\builds\734260e3\0\dransfeld\citest\CITest\CITest.csproj]
ERROR: Job failed: exit status 1
我使用Jeff的.gitlab-ci.yml调用msbuild.exe来构建解决方案:https://stackoverflow.com/a/38211190/882746 我的跑步机安装了Visual Studio Community 2017,并且可以在GUI内正常工作。
为什么从cmd调用时,MSBuild为什么在get / set函数中引发语法错误?是否缺少ENV变量?我知道VS使用一些cmd / bat文件来设置特定工具的环境。
此StackOverflow答案表明某些依赖关系可能已过期:Compile errors when using C# 7 features in new VS Studio 2017 ASP.NET MVC 5.2.3 project
但是我不使用NuGet数据包(至少我没有配置任何数据包),即使在这种非常简单的解决方案中也会发生错误:
using System;
namespace CITest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
TestClass tc = new TestClass();
Console.ReadLine();
}
}
class TestClass
{
private string testVar1;
public string TestVar1 { get => testVar1; set => testVar1 = value; }
public TestClass()
{
Console.WriteLine("TestClass");
}
}
}
我只是简单地调用了错误版本的MSBuild吗?该解决方案的目标版本是4.5-但是C:\Windows\Microsoft.NET\Framework64
编辑:案例已结案!为了我的德语同事和完整性起见,这是msbuild.exe的输出,带有详细输出。对于任何不说德语的人,输出将显示The project file contains ToolsVersion="15.0". This Toolset is unknown or unavailable. [...] Assuming ToolsVersion="4.0"
Die Projekte in dieser Projektmappe werden nacheinander erstellt. Um eine parallele Erstellung zu ermöglichen, müssen Sie den Schalter "/m" hinzufügen.
Der Buildvorgang wurde am 21.06.2018 17:15:07 gestartet.
Projekt "C:\Gitlab\builds\734260e3\0\dransfeld\citest\CITest.sln" auf Knoten "1" (Standardziele).
ValidateSolutionConfiguration:
Die Projektmappenkonfiguration "Release|Any CPU" wird erstellt.
Das Projekt "C:\Gitlab\builds\734260e3\0\dransfeld\citest\CITest.sln" (1) erstellt "C:\Gitlab\builds\734260e3\0\dransfe
ld\citest\CITest\CITest.csproj" (2) auf Knoten "1" (Standardziele).
Die Projektdatei enthält ToolsVersion="15.0". Dieses Toolset ist möglicherweise nicht bekannt oder nicht vorhanden. In
diesem Fall können Sie das Problem möglicherweise beheben, indem Sie die entsprechende Version von MSBuild installieren
. Oder für den Build wurde aufgrund der Richtlinie eine bestimmte ToolsVersion erzwungen. Das Projekt wird behandelt, a
ls enthielte es ToolsVersion="4.0". Weitere Informationen finden Sie unter http://go.microsoft.com/fwlink/?LinkId=29133
3.
CoreCompile:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /platform:anycpu32bitp
referred /errorreport:prompt /warn:4 /define:TRACE /highentropyva+ /reference:"C:\Program Files (x86)\Reference Assem
blies\Microsoft\Framework\.NETFramework\v4.5.2\Microsoft.CSharp.dll" /reference:"C:\Program Files (x86)\Reference Ass
emblies\Microsoft\Framework\.NETFramework\v4.5.2\mscorlib.dll" /reference:"C:\Program Files (x86)\Reference Assemblie
s\Microsoft\Framework\.NETFramework\v4.5.2\System.Core.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\M
icrosoft\Framework\.NETFramework\v4.5.2\System.Data.DataSetExtensions.dll" /reference:"C:\Program Files (x86)\Referen
ce Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\System.Data.dll" /reference:"C:\Program Files (x86)\Reference
Assemblies\Microsoft\Framework\.NETFramework\v4.5.2\System.dll" /reference:"C:\Program Files (x86)\Reference Assembli
es\Microsoft\Framework\.NETFramework\v4.5.2\System.Net.Http.dll" /reference:"C:\Program Files (x86)\Reference Assembl
ies\Microsoft\Framework\.NETFramework\v4.5.2\System.Xml.dll" /reference:"C:\Program Files (x86)\Reference Assemblies\
Microsoft\Framework\.NETFramework\v4.5.2\System.Xml.Linq.dll" /debug:pdbonly /filealign:512 /optimize+ /out:obj\Relea
se\CITest.exe /subsystemversion:6.00 /target:exe /utf8output Program.cs Properties\AssemblyInfo.cs "C:\Users\Administ
rator.SKIBAPRO\AppData\Local\Temp\3\.NETFramework,Version=v4.5.2.AssemblyAttributes.cs"
Program.cs(18,38): error CS1043: { oder ; erwartet. [C:\Gitlab\builds\734260e3\0\dransfeld\citest\CITest\CITest.csproj]
Die Erstellung des Projekts "C:\Gitlab\builds\734260e3\0\dransfeld\citest\CITest\CITest.csproj" ist abgeschlossen (Stan
dardziele) -- FEHLER.
答案 0 :(得分:2)
是的,那是使用错误的MSBuild版本。我强烈怀疑它将使用C#5编译器。您要定位的.NET Framework版本在这里无关紧要-重要的是语言版本。
使用Visual Studio附带的MSBuild版本。例如,对我而言:
//Get the attachmentJar from node for attachmentHash.
val attachmentJar: InputStream = cordaRPCOps.openAttachment(attachmentHash)
//Read the content of Jar to get file name and data.
var file_name_data: Pair<String, ByteArray>? = null
JarInputStream(attachment).use { jar ->
while (true) {
val nje = jar.nextEntry ?: break
if (nje.isDirectory) {
continue
}
file_name_data = Pair(nje.name, jar.readBytes())
}
}
我不知道它在GitLab CI机器上的位置,但是很可能在同一地方。您 甚至可以依靠正确的版本。