Home
last modified time | relevance | path

Searched refs:errorTask (Results 1 – 7 of 7) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/rx/Rx/NET/Source/packages/Microsoft.Bcl.Build.1.0.10/tools/
H A DInstall.ps126 $errorTask = $target.AddTask("Error") variable
27 $errorTask.Condition = "!Exists('$relativePath')"
28 …$errorTask.SetParameter("Text", "This project references NuGet package(s) that are missing on this…
29 $errorTask.SetParameter("HelpKeyword", "BCLBUILD2001");
32 $errorTask = $target.AddTask("Error") variable
33 $errorTask.Condition = "Exists('$relativePath')"
34 …$errorTask.SetParameter("Text", "The build restored NuGet packages. Build the project again to inc…
35 $errorTask.SetParameter("HelpKeyword", "BCLBUILD2002");
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/projectexplorer/
H A Dgccparser.cpp1036 errorTask("ld.lld: error: undefined symbol: func()"), in testGccOutputParsers_data()
1039 errorTask("collect2: error: ld returned 1 exit status")}) in testGccOutputParsers_data()
1050 errorTask("ld.lld: error: undefined symbol: someFunc()"), in testGccOutputParsers_data()
1064 errorTask("ld.lld: error: undefined symbol: func()"), in testGccOutputParsers_data()
1067 errorTask("collect2: error: ld returned 1 exit status")} in testGccOutputParsers_data()
1093 errorTask("ld.lld: error: duplicate symbol: func()"), in testGccOutputParsers_data()
1098 errorTask("collect2: error: ld returned 1 exit status")} in testGccOutputParsers_data()
1110 errorTask("ld.lld: error: duplicate symbol: theFunc()"), in testGccOutputParsers_data()
1119 errorTask("collect2: error: ld returned 1 exit status")} in testGccOutputParsers_data()
1131 errorTask("ld.lld: error: duplicate symbol: func()"), in testGccOutputParsers_data()
[all …]
H A Dtargetsetupwidget.cpp234 const Task errorTask = Utils::findOrDefault(tasks, Utils::equal(&Task::type, Task::Error)); in update() local
238 if (!errorTask.isNull()) { in update()
/dports/devel/msbuild/msbuild-0.06/src/Build.UnitTests/BackEnd/
H A DMockTaskBuilder.cs98 ProjectOnErrorInstance errorTask = task as ProjectOnErrorInstance; in ExecuteTask()
99 if (null != errorTask) in ExecuteTask()
101 ErrorTasks.Add(errorTask); in ExecuteTask()
/dports/net-im/kopete/kopete-21.12.3/protocols/oscar/liboscar/
H A Dclient.cpp128 ErrorTask* errorTask; member in Oscar::Client::ClientPrivate
191 d->errorTask = nullptr; in Client()
817 d->errorTask = new ErrorTask( c->rootTask() ); in initializeStaticTasks()
847 connect( d->errorTask, SIGNAL(messageError(QString,uint)), in initializeStaticTasks()
1763 delete d->errorTask; in deleteStaticTasks()
1775 d->errorTask = 0; in deleteStaticTasks()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Solution/
H A DSolutionWrapperProject.cs1930 …BuildTask errorTask = AddErrorWarningMessageElement(initialTarget, XMakeElements.error, false /* d… in AddInitialTargets()
1932errorTask.Condition = "('$(CurrentSolutionConfigurationContents)' == '') and ('$(SkipInvalidConfig… in AddInitialTargets()
/dports/devel/msbuild/msbuild-0.06/src/Build/Construction/Solution/
H A DSolutionProjectGenerator.cs2289 ProjectTaskInstance errorTask = AddErrorWarningMessageInstance in AddValidateSolutionConfigurationTarget()