Created
January 19, 2017 06:11
-
-
Save ellismg/f54a8d559ea9c29119224400497c3f2d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
CROSSGEN=${1:-} | |
COREFX_ROOT=${2:-} | |
if [ -z $CROSSGEN ] || [ -z $COREFX_ROOT ]; then | |
echo "usage: $0 [path-to-crossgen] [path-to-corefx-root]" | |
exit 1 | |
fi | |
TOOLS_LOCATION="$COREFX_ROOT/Tools" | |
SHARED_FRAMEWORK_LOCATION="$TOOLS_LOCATION/dotnetcli/shared/Microsoft.NETCore.App/1.1.0" | |
if [ ! -d "$TOOLS_LOCATION" ]; then | |
echo "error: CoreFX tools have not been restored, run init-tools.sh" | |
exit 1 | |
fi | |
if [ ! -d "$SHARED_FRAMEWORK_LOCATION" ]; then | |
echo "error: CoreFX is not using 1.1.0 shared framework, which this script expects" | |
exit 1 | |
fi | |
function crossgen-assembly { | |
echo "crossgen: $(basename $1)" | |
set +e | |
$CROSSGEN -ReadyToRun -JitPath "$SHARED_FRAMEWORK_LOCATION/libclrjit.so" -Platform_Assemblies_Paths "$TOOLS_LOCATION:$SHARED_FRAMEWORK_LOCATION" -In "$1" -Out "$1.readytorun" > /dev/null 2>&1 | |
if [ $? -ne 0 ]; then | |
echo "warning: crossgen failed for $(basename $1)" | |
else | |
mv "$1.readytorun" "$1" | |
fi | |
set -e | |
} | |
for ASSEMBLY in "$TOOLS_LOCATION"/{*.dll,*.exe}; | |
do | |
crossgen-assembly $ASSEMBLY | |
done |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Build started 1/18/17 5:41:53 PM. | |
The target "ResolveAssemblyReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/targetingpacks.props (5,49)" does not exist in the project, and will be ignored. | |
The target "BeforeResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (65,11)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/dir.targets (20,11)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/ReferenceAssemblies.targets (41,120)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeAnalysis.targets (54,45)" does not exist in the project, and will be ignored. | |
The target "CopyFilesToOutputDirectory" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (12,69)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (12,43)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (51,49)" does not exist in the project, and will be ignored. | |
The target "ResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (59,7)" does not exist in the project, and will be ignored. | |
The target "ResolveAssemblyReferences" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (105,54)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (128,46)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (137,62)" does not exist in the project, and will be ignored. | |
The target "ResolveProjectReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (243,7)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/sign.targets (38,28)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/sign.targets (42,11)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/PackageLibs.targets (13,49)" does not exist in the project, and will be ignored. | |
The target "CopyFilesToOutputDirectory" listed in an AfterTargets attribute at "/home/matell/git/corefx/binplace.targets (14,77)" does not exist in the project, and will be ignored. | |
The target "_CleanGetCurrentAndPriorFileWrites" listed in a BeforeTargets attribute at "/home/matell/git/corefx/binplace.targets (56,55)" does not exist in the project, and will be ignored. | |
The target "IncrementalClean" listed in a BeforeTargets attribute at "/home/matell/git/corefx/binplace.targets (63,56)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/dir.targets (66,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
1>Project "/home/matell/git/corefx/build.proj" on node 1 (default targets). | |
1>Project "/home/matell/git/corefx/build.proj" (1) is building "/home/matell/git/corefx/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj" (2) on node 1 (default targets). | |
2>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/". | |
RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/src/Tools/CoreFx.Tools/project.json" | |
2>/home/matell/git/corefx/Tools/Microsoft.Common.CurrentVersion.targets(1819,5): warning MSB3277: Found conflicts between different versions of the same dependent assembly that could not be resolved. These reference conflicts are listed in the build log when log verbosity is set to detailed. [/home/matell/git/corefx/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj] | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/packages/Microsoft.Build/0.1.0-preview-00022/lib/dotnet/Microsoft.Build.dll /reference:/home/matell/git/corefx/packages/Microsoft.Build.Framework/0.1.0-preview-00022/lib/dotnet/Microsoft.Build.Framework.dll /reference:/home/matell/git/corefx/packages/Microsoft.Build.Tasks.Core/0.1.0-preview-00022/lib/dotnet/Microsoft.Build.Tasks.Core.dll /reference:/home/matell/git/corefx/packages/Microsoft.Build.Utilities.Core/0.1.0-preview-00022/lib/dotnet/Microsoft.Build.Utilities.Core.dll /reference:/home/matell/git/corefx/packages/Microsoft.CSharp/4.0.1/ref/netstandard1.0/Microsoft.CSharp.dll /reference:/home/matell/git/corefx/packages/Microsoft.DotNet.PlatformAbstractions/1.2.0-beta-001090/lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll /reference:/home/matell/git/corefx/packages/Microsoft.Win32.Primitives/4.0.1/ref/netstandard1.3/Microsoft.Win32.Primitives.dll /reference:/home/matell/git/corefx/packages/Microsoft.Win32.Registry/4.0.0-beta-23516/ref/dotnet5.2/Microsoft.Win32.Registry.dll /reference:/home/matell/git/corefx/packages/Newtonsoft.Json/9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll /reference:/home/matell/git/corefx/packages/System.AppContext/4.1.0/ref/netstandard1.3/System.AppContext.dll /reference:/home/matell/git/corefx/packages/System.Collections.Concurrent/4.0.12/ref/netstandard1.3/System.Collections.Concurrent.dll /reference:/home/matell/git/corefx/packages/System.Collections/4.0.11/ref/netstandard1.3/System.Collections.dll /reference:/home/matell/git/corefx/packages/System.Collections.Immutable/1.1.37/lib/dotnet/System.Collections.Immutable.dll /reference:/home/matell/git/corefx/packages/System.Collections.NonGeneric/4.0.1-rc2-23712/ref/dotnet5.4/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/packages/System.Console/4.0.0/ref/netstandard1.3/System.Console.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.Contracts/4.0.1-rc2-23712/ref/dotnet5.1/System.Diagnostics.Contracts.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.Debug/4.0.11/ref/netstandard1.3/System.Diagnostics.Debug.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.FileVersionInfo/4.0.0-rc2-23712/ref/dotnet5.4/System.Diagnostics.FileVersionInfo.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.Process/4.1.0-rc2-23712/ref/dotnet5.5/System.Diagnostics.Process.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.Tools/4.0.1/ref/netstandard1.0/System.Diagnostics.Tools.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.TraceSource/4.0.0-rc2-23712/ref/dotnet5.4/System.Diagnostics.TraceSource.dll /reference:/home/matell/git/corefx/packages/System.Diagnostics.Tracing/4.1.0/ref/netstandard1.5/System.Diagnostics.Tracing.dll /reference:/home/matell/git/corefx/packages/System.Dynamic.Runtime/4.0.11/ref/netstandard1.3/System.Dynamic.Runtime.dll /reference:/home/matell/git/corefx/packages/System.Globalization.Calendars/4.0.1/ref/netstandard1.3/System.Globalization.Calendars.dll /reference:/home/matell/git/corefx/packages/System.Globalization/4.0.11/ref/netstandard1.3/System.Globalization.dll /reference:/home/matell/git/corefx/packages/System.IO.Compression/4.1.0/ref/netstandard1.3/System.IO.Compression.dll /reference:/home/matell/git/corefx/packages/System.IO.Compression.ZipFile/4.0.1/ref/netstandard1.3/System.IO.Compression.ZipFile.dll /reference:/home/matell/git/corefx/packages/System.IO/4.1.0/ref/netstandard1.5/System.IO.dll /reference:/home/matell/git/corefx/packages/System.IO.FileSystem/4.0.1/ref/netstandard1.3/System.IO.FileSystem.dll /reference:/home/matell/git/corefx/packages/System.IO.FileSystem.DriveInfo/4.0.0-beta-23302/ref/dotnet/System.IO.FileSystem.DriveInfo.dll /reference:/home/matell/git/corefx/packages/System.IO.FileSystem.Primitives/4.0.1/ref/netstandard1.3/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/packages/System.IO.Pipes/4.0.0-rc2-23712/ref/dotnet5.4/System.IO.Pipes.dll /reference:/home/matell/git/corefx/packages/System.Linq/4.1.0/ref/netstandard1.0/System.Linq.dll /reference:/home/matell/git/corefx/packages/System.Linq.Expressions/4.1.0/ref/netstandard1.3/System.Linq.Expressions.dll /reference:/home/matell/git/corefx/packages/System.Net.Http/4.1.0/ref/netstandard1.3/System.Net.Http.dll /reference:/home/matell/git/corefx/packages/System.Net.Primitives/4.0.11/ref/netstandard1.3/System.Net.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Net.Sockets/4.1.0/ref/netstandard1.3/System.Net.Sockets.dll /reference:/home/matell/git/corefx/packages/System.ObjectModel/4.0.12/ref/netstandard1.3/System.ObjectModel.dll /reference:/home/matell/git/corefx/packages/System.Reflection/4.1.0/ref/netstandard1.5/System.Reflection.dll /reference:/home/matell/git/corefx/packages/System.Reflection.Extensions/4.0.1/ref/netstandard1.0/System.Reflection.Extensions.dll /reference:/home/matell/git/corefx/packages/System.Reflection.Metadata/1.1.0/lib/dotnet5.2/System.Reflection.Metadata.dll /reference:/home/matell/git/corefx/packages/System.Reflection.Primitives/4.0.1/ref/netstandard1.0/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Reflection.TypeExtensions/4.1.0/ref/netstandard1.5/System.Reflection.TypeExtensions.dll /reference:/home/matell/git/corefx/packages/System.Resources.ReaderWriter/4.0.0-rc2-23712/ref/dotnet5.4/System.Resources.ReaderWriter.dll /reference:/home/matell/git/corefx/packages/System.Resources.ResourceManager/4.0.1/ref/netstandard1.0/System.Resources.ResourceManager.dll /reference:/home/matell/git/corefx/packages/System.Runtime/4.1.0/ref/netstandard1.5/System.Runtime.dll /reference:/home/matell/git/corefx/packages/System.Runtime.Extensions/4.1.0/ref/netstandard1.5/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/packages/System.Runtime.Handles/4.0.1/ref/netstandard1.3/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/packages/System.Runtime.InteropServices/4.1.0/ref/netstandard1.5/System.Runtime.InteropServices.dll /reference:/home/matell/git/corefx/packages/System.Runtime.InteropServices.RuntimeInformation/4.0.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/home/matell/git/corefx/packages/System.Runtime.Loader/4.0.0-rc2-23712/ref/dotnet5.5/System.Runtime.Loader.dll /reference:/home/matell/git/corefx/packages/System.Runtime.Numerics/4.0.1/ref/netstandard1.1/System.Runtime.Numerics.dll /reference:/home/matell/git/corefx/packages/System.Runtime.Serialization.Primitives/4.1.1/ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Security.AccessControl/4.0.0-rc2-23512/ref/dotnet5.4/System.Security.AccessControl.dll /reference:/home/matell/git/corefx/packages/System.Security.Claims/4.0.0/ref/dotnet/System.Security.Claims.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Algorithms/4.2.0/ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Encoding/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Encoding.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Primitives/4.0.0/ref/netstandard1.3/System.Security.Cryptography.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.X509Certificates/4.1.0/ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll /reference:/home/matell/git/corefx/packages/System.Security.Principal/4.0.0/ref/dotnet/System.Security.Principal.dll /reference:/home/matell/git/corefx/packages/System.Security.Principal.Windows/4.0.0-rc2-23712/ref/dotnet5.4/System.Security.Principal.Windows.dll /reference:/home/matell/git/corefx/packages/System.Text.Encoding/4.0.11/ref/netstandard1.3/System.Text.Encoding.dll /reference:/home/matell/git/corefx/packages/System.Text.Encoding.Extensions/4.0.11/ref/netstandard1.3/System.Text.Encoding.Extensions.dll /reference:/home/matell/git/corefx/packages/System.Text.RegularExpressions/4.1.0/ref/netstandard1.3/System.Text.RegularExpressions.dll /reference:/home/matell/git/corefx/packages/System.Threading/4.0.11/ref/netstandard1.3/System.Threading.dll /reference:/home/matell/git/corefx/packages/System.Threading.Tasks.Dataflow/4.5.26-rc2-23712/lib/dotnet5.2/System.Threading.Tasks.Dataflow.dll /reference:/home/matell/git/corefx/packages/System.Threading.Tasks/4.0.11/ref/netstandard1.3/System.Threading.Tasks.dll /reference:/home/matell/git/corefx/packages/System.Threading.Tasks.Parallel/4.0.1-beta-23516/ref/dotnet5.2/System.Threading.Tasks.Parallel.dll /reference:/home/matell/git/corefx/packages/System.Threading.Thread/4.0.0-rc2-23712/ref/dotnet5.4/System.Threading.Thread.dll /reference:/home/matell/git/corefx/packages/System.Threading.ThreadPool/4.0.10-rc2-23712/ref/dotnet5.4/System.Threading.ThreadPool.dll /reference:/home/matell/git/corefx/packages/System.Threading.Timer/4.0.1/ref/netstandard1.2/System.Threading.Timer.dll /reference:/home/matell/git/corefx/packages/System.Xml.ReaderWriter/4.0.11/ref/netstandard1.3/System.Xml.ReaderWriter.dll /reference:/home/matell/git/corefx/packages/System.Xml.XDocument/4.0.11/ref/netstandard1.3/System.Xml.XDocument.dll /reference:/home/matell/git/corefx/packages/System.Xml.XmlDocument/4.0.1-rc2-23712/ref/dotnet5.4/System.Xml.XmlDocument.dll /reference:/home/matell/git/corefx/packages/System.Xml.XPath/4.0.0/ref/dotnet/System.Xml.XPath.dll /reference:/home/matell/git/corefx/packages/System.Xml.XPath.XmlDocument/4.0.1-rc2-23712/ref/dotnet5.4/System.Xml.XPath.XmlDocument.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/CoreFx.Tools.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll ConfigurationTask.cs BuildTask.cs Configuration/Configuration.cs Configuration/ConfigurationFactory.cs Configuration/PropertyValue.cs Configuration/PropertyInfo.cs GenerateConfigurationProps.cs FindBestConfiguration.cs GenerateDepsJson.cs TryGetManagedAssemblyName.cs /home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/CoreFx.Tools.dll.oss_signed" because "AlwaysCreate" was specified. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/CoreFx.Tools.dll" to "/home/matell/git/corefx/Tools/CoreFx.Tools.dll". | |
CoreFx.Tools -> /home/matell/git/corefx/Tools/CoreFx.Tools.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/CoreFx.Tools.pdb" to "/home/matell/git/corefx/Tools/CoreFx.Tools.pdb". | |
2>Done Building Project "/home/matell/git/corefx/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj" (default targets). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
1>Project "/home/matell/git/corefx/build.proj" (1) is building "/home/matell/git/corefx/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj" (2:2) on node 1 (default targets). | |
2>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/". | |
RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/src/Tools/CoreFx.Tools/project.json" | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/Microsoft.Build.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/Microsoft.Build.Framework.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/Microsoft.Build.Utilities.v4.0.dll /reference:/home/matell/git/corefx/packages/Microsoft.DotNet.PlatformAbstractions/1.2.0-beta-001090/lib/net45/Microsoft.DotNet.PlatformAbstractions.dll /reference:/home/matell/git/corefx/packages/Microsoft.Win32.Primitives/4.0.1/ref/net46/Microsoft.Win32.Primitives.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/mscorlib.dll /reference:/home/matell/git/corefx/packages/Newtonsoft.Json/9.0.1/lib/net45/Newtonsoft.Json.dll /reference:/home/matell/git/corefx/packages/System.AppContext/4.1.0/ref/net46/System.AppContext.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/System.Collections.dll /reference:/home/matell/git/corefx/packages/System.Collections.Immutable/1.3.1/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll /reference:/home/matell/git/corefx/packages/System.Console/4.0.0/ref/net46/System.Console.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/System.Core.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/System.dll /reference:/home/matell/git/corefx/packages/System.Globalization.Calendars/4.0.1/ref/net46/System.Globalization.Calendars.dll /reference:/home/matell/git/corefx/packages/System.IO.Compression/4.1.0/ref/net46/System.IO.Compression.dll /reference:/home/matell/git/corefx/packages/System.IO.Compression.ZipFile/4.0.1/ref/net46/System.IO.Compression.ZipFile.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/System.IO.dll /reference:/home/matell/git/corefx/packages/System.IO.FileSystem/4.0.1/ref/net46/System.IO.FileSystem.dll /reference:/home/matell/git/corefx/packages/System.IO.FileSystem.Primitives/4.0.1/ref/net46/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Net.Http/4.1.0/ref/net46/System.Net.Http.dll /reference:/home/matell/git/corefx/packages/System.Net.Sockets/4.1.0/ref/net46/System.Net.Sockets.dll /reference:/home/matell/git/corefx/packages/System.Reflection.Metadata/1.4.2/lib/portable-net45+win8/System.Reflection.Metadata.dll /reference:/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6/1.0.1/lib/net46/System.Runtime.dll /reference:/home/matell/git/corefx/packages/System.Runtime.InteropServices.RuntimeInformation/4.0.0/ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Algorithms/4.2.0/ref/net46/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Encoding/4.0.0/ref/net46/System.Security.Cryptography.Encoding.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.Primitives/4.0.0/ref/net46/System.Security.Cryptography.Primitives.dll /reference:/home/matell/git/corefx/packages/System.Security.Cryptography.X509Certificates/4.1.0/ref/net46/System.Security.Cryptography.X509Certificates.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/CoreFx.Tools.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll ConfigurationTask.cs BuildTask.cs Configuration/Configuration.cs Configuration/ConfigurationFactory.cs Configuration/PropertyValue.cs Configuration/PropertyInfo.cs GenerateConfigurationProps.cs FindBestConfiguration.cs GenerateDepsJson.cs TryGetManagedAssemblyName.cs BuildTask.net45.cs AssemblyResolver.cs /home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/CoreFx.Tools.dll.oss_signed" because "AlwaysCreate" was specified. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/CoreFx.Tools.dll" to "/home/matell/git/corefx/Tools/net45/CoreFx.Tools.dll". | |
CoreFx.Tools -> /home/matell/git/corefx/Tools/net45/CoreFx.Tools.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/CoreFx.Tools/net46/CoreFx.Tools.pdb" to "/home/matell/git/corefx/Tools/net45/CoreFx.Tools.pdb". | |
2>Done Building Project "/home/matell/git/corefx/src/Tools/CoreFx.Tools/CoreFx.Tools.csproj" (default targets). | |
The target "ResolveAssemblyReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/targetingpacks.props (5,49)" does not exist in the project, and will be ignored. | |
1>Project "/home/matell/git/corefx/build.proj" (1) is building "/home/matell/git/corefx/src/Tools/GenerateProps/GenerateProps.proj" (3) on node 1 (default targets). | |
3>Build: | |
Running on OS with RID ubuntu.14.04-x64, so defaulting RuntimeOS to 'ubuntu.14.04' | |
3>Done Building Project "/home/matell/git/corefx/src/Tools/GenerateProps/GenerateProps.proj" (default targets). | |
The target "ResolveAssemblyReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/targetingpacks.props (5,49)" does not exist in the project, and will be ignored. | |
The target "BeforeResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (65,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
1>Project "/home/matell/git/corefx/build.proj" (1) is building "/home/matell/git/corefx/external/dir.proj" (4) on node 1 (Build target(s)). | |
4>Project "/home/matell/git/corefx/external/dir.proj" (4) is building "/home/matell/git/corefx/external/coreclr/coreclr.depproj" (5) on node 1 (Build target(s)). | |
5>GenerateProjectJsonFromTemplates: | |
Skipping target "GenerateProjectJsonFromTemplates" because all output files are up-to-date with respect to the input files. | |
RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/bin/obj/AnyOS.AnyCPU.Debug/coreclr/netcoreapp/x64/project.json" | |
CoreCompile: | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetAppHost/1.2.0-beta-001259-00/runtimes/ubuntu.14.04-x64/native/apphost (runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetAppHost.1.2.0-beta-001259-00) -> apphost | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHost/1.2.0-beta-001259-00/runtimes/ubuntu.14.04-x64/native/dotnet (runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHost.1.2.0-beta-001259-00) -> dotnet | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHostPolicy/1.2.0-beta-001259-00/runtimes/ubuntu.14.04-x64/native/libhostpolicy.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHostPolicy.1.2.0-beta-001259-00) -> libhostpolicy.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHostResolver/1.2.0-beta-001259-00/runtimes/ubuntu.14.04-x64/native/libhostfxr.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.DotNetHostResolver.1.2.0-beta-001259-00) -> libhostfxr.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Jit/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libclrjit.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Jit.1.2.0-beta-24904-03) -> libclrjit.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/System.Globalization.Native.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> System.Globalization.Native.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/System.Private.CoreLib.ni.dll (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> System.Private.CoreLib.ni.dll | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libcoreclr.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libcoreclr.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libcoreclrtraceptprovider.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libcoreclrtraceptprovider.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libdbgshim.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libdbgshim.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libmscordaccore.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libmscordaccore.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libmscordbi.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libmscordbi.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libsos.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libsos.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/libsosplugin.so (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> libsosplugin.so | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/mscorlib.ni.dll (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> mscorlib.ni.dll | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/sosdocsunix.txt (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> sosdocsunix.txt | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/lib/netstandard1.0/SOS.NETCore.dll (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> SOS.NETCore.dll | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/lib/netstandard1.0/System.Private.CoreLib.dll (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> System.Private.CoreLib.dll | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/lib/netstandard1.0/mscorlib.dll (runtime.ubuntu.14.04-x64.Microsoft.NETCore.Runtime.CoreCLR.1.2.0-beta-24904-03) -> mscorlib.dll | |
/home/matell/git/corefx/packages/runtime.ubuntu.14.04-x64.Microsoft.NETCore.TestHost/1.2.0-beta-24904-03/runtimes/ubuntu.14.04-x64/native/corerun (runtime.ubuntu.14.04-x64.Microsoft.NETCore.TestHost.1.2.0-beta-24904-03) -> corerun | |
5>Done Building Project "/home/matell/git/corefx/external/coreclr/coreclr.depproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
4>Project "/home/matell/git/corefx/external/dir.proj" (4) is building "/home/matell/git/corefx/external/netstandard20/netstandard20.depproj" (6) on node 2 (Build target(s)). | |
6>RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/external/netstandard20/project.json" | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
4>Project "/home/matell/git/corefx/external/dir.proj" (4) is building "/home/matell/git/corefx/external/net461/net461.depproj" (7) on node 3 (Build target(s)). | |
7>RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/external/net461/project.json" | |
4>Project "/home/matell/git/corefx/external/dir.proj" (4) is building "/home/matell/git/corefx/external/test-runtime/XUnit.Runtime.depproj" (8) on node 4 (Build target(s)). | |
8>RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/external/test-runtime/project.json" | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/Microsoft.Win32.Primitives.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> Microsoft.Win32.Primitives.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.AppContext.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.AppContext.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Collections.Concurrent.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Collections.Concurrent.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Collections.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Collections.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Console.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Console.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Core.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Core.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Diagnostics.Debug.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Diagnostics.Debug.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Diagnostics.Process.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Diagnostics.Process.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Diagnostics.Tools.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Diagnostics.Tools.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Diagnostics.Tracing.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Diagnostics.Tracing.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Drawing.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Drawing.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Globalization.Calendars.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Globalization.Calendars.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Globalization.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Globalization.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.IO.Compression.ZipFile.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.IO.Compression.ZipFile.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.IO.Compression.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.IO.Compression.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.IO.FileSystem.Primitives.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.IO.FileSystem.Primitives.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.IO.FileSystem.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.IO.FileSystem.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.IO.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.IO.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Linq.Expressions.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Linq.Expressions.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Linq.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Linq.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Net.Http.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Net.Http.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Net.Primitives.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Net.Primitives.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Net.Sockets.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Net.Sockets.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Numerics.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Numerics.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.ObjectModel.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.ObjectModel.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Reflection.Extensions.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Reflection.Extensions.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Reflection.Primitives.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Reflection.Primitives.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Reflection.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Reflection.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Resources.ResourceManager.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Resources.ResourceManager.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.Extensions.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.Extensions.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.Handles.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.Handles.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.InteropServices.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.InteropServices.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Core.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Core.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.Numerics.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.Numerics.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Drawing.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Drawing.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.Serialization.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.Serialization.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Numerics.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Numerics.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Runtime.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Runtime.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Security.Cryptography.Algorithms.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Security.Cryptography.Algorithms.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Runtime.Serialization.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Runtime.Serialization.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Security.Cryptography.Encoding.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Security.Cryptography.Encoding.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Web.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Web.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Security.Cryptography.Primitives.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Security.Cryptography.Primitives.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Xml.Linq.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Xml.Linq.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Security.Cryptography.X509Certificates.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Security.Cryptography.X509Certificates.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.Xml.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.Xml.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Text.Encoding.Extensions.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Text.Encoding.Extensions.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/System.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> System.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Text.Encoding.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Text.Encoding.dll | |
7>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.NETFramework.v4.6.1/1.0.1/lib/net461/mscorlib.dll (Microsoft.TargetingPack.NETFramework.v4.6.1.1.0.1) -> mscorlib.dll | |
6>CoreCompile: | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Text.RegularExpressions.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Text.RegularExpressions.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Threading.Tasks.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Threading.Tasks.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Threading.Timer.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Threading.Timer.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Threading.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Threading.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Web.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Web.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Xml.Linq.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Xml.Linq.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Xml.ReaderWriter.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Xml.ReaderWriter.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Xml.XDocument.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Xml.XDocument.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.Xml.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.Xml.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/System.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> System.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/mscorlib.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> mscorlib.dll | |
/home/matell/git/corefx/packages/NETStandard.Library2/2.0.0-beta-24815-05/ref/netstandard1.7/netstandard.dll (NETStandard.Library2.2.0.0-beta-24815-05) -> netstandard.dll | |
7>Done Building Project "/home/matell/git/corefx/external/net461/net461.depproj" (Build target(s)). | |
6>Done Building Project "/home/matell/git/corefx/external/netstandard20/netstandard20.depproj" (Build target(s)). | |
8>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0040/lib/netstandard1.3/xunit.performance.core.dll (Microsoft.DotNet.xunit.performance.run.core.1.0.0-alpha-build0040) -> xunit.performance.core.dll | |
/home/matell/git/corefx/packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0040/lib/netstandard1.3/xunit.performance.core.pdb (Microsoft.DotNet.xunit.performance.run.core.1.0.0-alpha-build0040) -> xunit.performance.core.pdb | |
/home/matell/git/corefx/packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0040/lib/netstandard1.3/xunit.performance.run.core.dll (Microsoft.DotNet.xunit.performance.run.core.1.0.0-alpha-build0040) -> xunit.performance.run.core.dll | |
/home/matell/git/corefx/packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0040/lib/netstandard1.3/xunit.performance.run.core.pdb (Microsoft.DotNet.xunit.performance.run.core.1.0.0-alpha-build0040) -> xunit.performance.run.core.pdb | |
/home/matell/git/corefx/packages/Microsoft.xunit.netcore.extensions/1.0.1-prerelease-01001-04/lib/netstandard1.0/Xunit.NetCore.Extensions.dll (Microsoft.xunit.netcore.extensions.1.0.1-prerelease-01001-04) -> Xunit.NetCore.Extensions.dll | |
/home/matell/git/corefx/packages/Newtonsoft.Json/9.0.1/lib/netstandard1.0/Newtonsoft.Json.dll (Newtonsoft.Json.9.0.1) -> Newtonsoft.Json.dll | |
/home/matell/git/corefx/packages/xunit.abstractions/2.0.1-rc2/lib/netstandard1.0/xunit.abstractions.dll (xunit.abstractions.2.0.1-rc2) -> xunit.abstractions.dll | |
/home/matell/git/corefx/packages/xunit.assert/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.assert.dll (xunit.assert.2.2.0-beta2-build3300) -> xunit.assert.dll | |
/home/matell/git/corefx/packages/xunit.assert/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.assert.pdb (xunit.assert.2.2.0-beta2-build3300) -> xunit.assert.pdb | |
/home/matell/git/corefx/packages/xunit.console.netcore/1.0.3-prerelease-00921-01/runtimes/any/native/xunit.console.netcore.exe (xunit.console.netcore.1.0.3-prerelease-00921-01) -> xunit.console.netcore.exe | |
/home/matell/git/corefx/packages/xunit.extensibility.core/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.core.dll (xunit.extensibility.core.2.2.0-beta2-build3300) -> xunit.core.dll | |
/home/matell/git/corefx/packages/xunit.extensibility.core/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.core.pdb (xunit.extensibility.core.2.2.0-beta2-build3300) -> xunit.core.pdb | |
/home/matell/git/corefx/packages/xunit.extensibility.execution/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.execution.dotnet.dll (xunit.extensibility.execution.2.2.0-beta2-build3300) -> xunit.execution.dotnet.dll | |
/home/matell/git/corefx/packages/xunit.extensibility.execution/2.2.0-beta2-build3300/lib/netstandard1.0/xunit.execution.dotnet.pdb (xunit.extensibility.execution.2.2.0-beta2-build3300) -> xunit.execution.dotnet.pdb | |
/home/matell/git/corefx/packages/xunit.runner.utility/2.2.0-beta2-build3300/lib/netstandard1.1/xunit.runner.utility.dotnet.dll (xunit.runner.utility.2.2.0-beta2-build3300) -> xunit.runner.utility.dotnet.dll | |
/home/matell/git/corefx/packages/xunit.runner.utility/2.2.0-beta2-build3300/lib/netstandard1.1/xunit.runner.utility.dotnet.pdb (xunit.runner.utility.2.2.0-beta2-build3300) -> xunit.runner.utility.dotnet.pdb | |
8>Done Building Project "/home/matell/git/corefx/external/test-runtime/XUnit.Runtime.depproj" (Build target(s)). | |
4>Done Building Project "/home/matell/git/corefx/external/dir.proj" (Build target(s)). | |
The target "ResolveAssemblyReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/targetingpacks.props (5,49)" does not exist in the project, and will be ignored. | |
The target "BeforeResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (65,11)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/dir.targets (20,11)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/ReferenceAssemblies.targets (41,120)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeAnalysis.targets (54,45)" does not exist in the project, and will be ignored. | |
The target "CopyFilesToOutputDirectory" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (12,69)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (12,43)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/codeOptimization.targets (51,49)" does not exist in the project, and will be ignored. | |
The target "ResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (59,7)" does not exist in the project, and will be ignored. | |
The target "ResolveAssemblyReferences" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (105,54)" does not exist in the project, and will be ignored. | |
The target "CoreCompile" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (128,46)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/FrameworkTargeting.targets (137,62)" does not exist in the project, and will be ignored. | |
The target "ResolveProjectReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (243,7)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/sign.targets (38,28)" does not exist in the project, and will be ignored. | |
The target "AfterBuild" listed in an AfterTargets attribute at "/home/matell/git/corefx/Tools/sign.targets (42,11)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/PackageLibs.targets (13,49)" does not exist in the project, and will be ignored. | |
The target "CopyFilesToOutputDirectory" listed in an AfterTargets attribute at "/home/matell/git/corefx/binplace.targets (14,77)" does not exist in the project, and will be ignored. | |
The target "_CleanGetCurrentAndPriorFileWrites" listed in a BeforeTargets attribute at "/home/matell/git/corefx/binplace.targets (56,55)" does not exist in the project, and will be ignored. | |
The target "IncrementalClean" listed in a BeforeTargets attribute at "/home/matell/git/corefx/binplace.targets (63,56)" does not exist in the project, and will be ignored. | |
The target "AssignProjectConfiguration" listed in a BeforeTargets attribute at "/home/matell/git/corefx/dir.targets (66,11)" does not exist in the project, and will be ignored. | |
The target "ResolveAssemblyReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/targetingpacks.props (5,49)" does not exist in the project, and will be ignored. | |
The target "BeforeResolveReferences" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (65,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
1>Project "/home/matell/git/corefx/build.proj" (1) is building "/home/matell/git/corefx/src/dirs.proj" (9) on node 1 (Build target(s)). | |
9>Project "/home/matell/git/corefx/src/dirs.proj" (9) is building "/home/matell/git/corefx/src/ref.builds" (10) on node 2 (Build target(s)). | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.VisualBasic/ref/Microsoft.VisualBasic.csproj" (14:2) on node 1 (Build target(s)). | |
14>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.WinRT/ref/Microsoft.TargetingPack.Private.WinRT.depproj" (13:2) on node 4 (Build target(s)). | |
13>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Windows/999.999.999.999/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.CSharp/ref/Microsoft.CSharp.csproj" (11:2) on node 2 (Build target(s)). | |
11>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/". | |
13>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Windows/999.999.999.999/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.CoreCLR/ref/Microsoft.TargetingPack.Private.CoreCLR.depproj" (12:2) on node 3 (Build target(s)). | |
12>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Private.CoreLib/999.999.999.999/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Private.CoreLib/999.999.999.999/netcoreapp/". | |
13>RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.WinRT/ref/project.json" | |
12>RestorePackages: | |
"/home/matell/git/corefx/Tools/dotnetcli/dotnet" restore --no-cache --packages "/home/matell/git/corefx/packages" --source https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json --source https://www.nuget.org/api/v2/ "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.CoreCLR/ref/project.json" | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
14:2>Project "/home/matell/git/corefx/src/Microsoft.VisualBasic/ref/Microsoft.VisualBasic.csproj" (14:2) is building "/home/matell/git/corefx/src/System.Runtime/ref/System.Runtime.csproj" (118:4) on node 1 (default targets). | |
118>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Runtime.cs System.Runtime.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/coreAssembly.rsp @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Buffers/ref/System.Buffers.csproj" (19:2) on node 2 (Build target(s)). | |
19>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/". | |
12>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.Private.CoreCLR/1.2.0-beta-24904-03/lib/netstandard1.0/System.Private.CoreLib.dll (Microsoft.TargetingPack.Private.CoreCLR.1.2.0-beta-24904-03) -> System.Private.CoreLib.dll | |
13>CoreCompile: | |
/home/matell/git/corefx/packages/Microsoft.TargetingPack.Private.WinRT/1.0.3/lib/netstandard1.0/Windows.winmd (Microsoft.TargetingPack.Private.WinRT.1.0.3) -> Windows.winmd | |
12>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/packages/Microsoft.TargetingPack.Private.CoreCLR/1.2.0-beta-24904-03/lib/netstandard1.0/System.Private.CoreLib.dll" to "/home/matell/git/corefx/bin/ref/System.Private.CoreLib/999.999.999.999/netcoreapp/System.Private.CoreLib.dll". | |
13>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/packages/Microsoft.TargetingPack.Private.WinRT/1.0.3/lib/netstandard1.0/Windows.winmd" to "/home/matell/git/corefx/bin/ref/Windows/999.999.999.999/netcoreapp/Windows.winmd". | |
12>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Private.CoreLib/999.999.999.999/netcoreapp/System.Private.CoreLib.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Private.CoreLib.dll". | |
13>BinPlaceReferenceAssembly: | |
Creating directory "/home/matell/git/corefx/bin/ref/netcoreapp". | |
Copying file from "/home/matell/git/corefx/bin/ref/Windows/999.999.999.999/netcoreapp/Windows.winmd" to "/home/matell/git/corefx/bin/ref/netcoreapp/Windows.winmd". | |
13>Done Building Project "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.WinRT/ref/Microsoft.TargetingPack.Private.WinRT.depproj" (Build target(s)). | |
12>Done Building Project "/home/matell/git/corefx/src/Microsoft.TargetingPack.Private.CoreCLR/ref/Microsoft.TargetingPack.Private.CoreCLR.depproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj" (16:2) on node 6 (Build target(s)). | |
16>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry.AccessControl/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry.AccessControl/4.0.2.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj" (15:2) on node 5 (Build target(s)). | |
15>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj" (17:2) on node 7 (Build target(s)). | |
17>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.AppContext/ref/System.AppContext.csproj" (18:2) on node 8 (Build target(s)). | |
18>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj" (22:2) on node 3 (Build target(s)). | |
22>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.CodeDom/ref/System.CodeDom.csproj" (20:2) on node 4 (Build target(s)). | |
20>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.CodeDom/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.CodeDom/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Collections.Specialized/ref/System.Collections.Specialized.csproj" (23:2) on node 6 (Build target(s)). | |
23>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.ComponentModel.Annotations/ref/System.ComponentModel.Annotations.csproj" (25:2) on node 5 (Build target(s)). | |
25>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
17:2>Project "/home/matell/git/corefx/src/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj" (17:2) is building "/home/matell/git/corefx/src/System.Runtime.Handles/ref/System.Runtime.Handles.csproj" (106:3) on node 7 (default targets). | |
106>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj" (26:2) on node 8 (Build target(s)). | |
26>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj" (27:2) on node 4 (Build target(s)). | |
27>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj" (28:2) on node 6 (Build target(s)). | |
28>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ComponentModel.TypeConverter/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.TypeConverter/4.2.0.0/netcoreapp/". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
25:2>Project "/home/matell/git/corefx/src/System.ComponentModel.Annotations/ref/System.ComponentModel.Annotations.csproj" (25:2) is building "/home/matell/git/corefx/src/System.ComponentModel/ref/System.ComponentModel.csproj" (29:3) on node 5 (default targets). | |
29>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Console/ref/System.Console.csproj" (31:2) on node 8 (Build target(s)). | |
31>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Data.Common/ref/System.Data.Common.csproj" (32:2) on node 4 (Build target(s)). | |
32>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Data.Common/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Data.Common/4.2.0.0/netcoreapp/". | |
11:2>Project "/home/matell/git/corefx/src/Microsoft.CSharp/ref/Microsoft.CSharp.csproj" (11:2) is building "/home/matell/git/corefx/src/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj" (49:3) on node 2 (default targets). | |
49>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Data.SqlClient/ref/System.Data.SqlClient.csproj" (33:2) on node 7 (Build target(s)). | |
33>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Data.SqlClient/4.1.2.0/netcoreapp/". | |
49>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/". | |
33>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Data.SqlClient/4.1.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj" (34:2) on node 7 (Build target(s)). | |
34>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/". | |
22:2>Project "/home/matell/git/corefx/src/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj" (22:2) is building "/home/matell/git/corefx/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj" (105:5) on node 3 (default targets). | |
105>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj" (35:2) on node 4 (Build target(s)). | |
35>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/". | |
22:2>Project "/home/matell/git/corefx/src/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj" (22:2) is building "/home/matell/git/corefx/src/System.Globalization/ref/System.Globalization.csproj" (52:3) on node 3 (default targets). | |
52>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj" (36:2) on node 5 (Build target(s)). | |
36>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
16:2>Project "/home/matell/git/corefx/src/Microsoft.Win32.Registry.AccessControl/ref/Microsoft.Win32.Registry.AccessControl.csproj" (16:2) is building "/home/matell/git/corefx/src/System.Security.AccessControl/ref/System.Security.AccessControl.csproj" (119:3) on node 6 (default targets). | |
119>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.AccessControl/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.AccessControl/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
49:3>Project "/home/matell/git/corefx/src/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj" (49:3) is building "/home/matell/git/corefx/src/System.ObjectModel/ref/System.ObjectModel.csproj" (91:3) on node 2 (default targets). | |
91>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
49:3>Project "/home/matell/git/corefx/src/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj" (49:3) is building "/home/matell/git/corefx/src/System.Linq.Expressions/ref/System.Linq.Expressions.csproj" (67:4) on node 2 (default targets). | |
67>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj" (38:2) on node 4 (Build target(s)). | |
38>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/". | |
31:2>Project "/home/matell/git/corefx/src/System.Console/ref/System.Console.csproj" (31:2) is building "/home/matell/git/corefx/src/System.Text.Encoding/ref/System.Text.Encoding.csproj" (138:3) on node 8 (default targets). | |
138>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj" (37:2) on node 5 (Build target(s)). | |
37>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj" (39:2) on node 3 (Build target(s)). | |
39>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj" (40:2) on node 5 (Build target(s)). | |
40>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
33:2>Project "/home/matell/git/corefx/src/System.Data.SqlClient/ref/System.Data.SqlClient.csproj" (33:2) is building "/home/matell/git/corefx/src/System.Threading.Tasks/ref/System.Threading.Tasks.csproj" (143:3) on node 7 (default targets). | |
143>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj" (41:2) on node 2 (Build target(s)). | |
41>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
118>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll.oss_signed" because "AlwaysCreate" was specified. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll". | |
System.Runtime -> /home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.dll". | |
Creating directory "/home/matell/git/corefx/bin/netcoreapp/pkg/ref". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.dll". | |
118>Done Building Project "/home/matell/git/corefx/src/System.Runtime/ref/System.Runtime.csproj" (default targets). | |
26:2>Project "/home/matell/git/corefx/src/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj" (26:2) is building "/home/matell/git/corefx/src/System.Threading/ref/System.Threading.csproj" (147:3) on node 8 (default targets). | |
147>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/". | |
14>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/disabledAnalyzers.config Microsoft.VisualBasic.cs /home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
28:2>Project "/home/matell/git/corefx/src/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj" (28:2) is building "/home/matell/git/corefx/src/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj" (48:3) on node 6 (default targets). | |
48>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/". | |
52>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Globalization.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
143>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.Tasks.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
37>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.FileVersionInfo.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
147>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.cs /home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
19>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Buffers.cs /home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
38>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.PerformanceCounter.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
48>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Drawing.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
52>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll". | |
System.Globalization -> /home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Globalization.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Globalization.dll". | |
52>Done Building Project "/home/matell/git/corefx/src/System.Globalization/ref/System.Globalization.csproj" (default targets). | |
28:2>Project "/home/matell/git/corefx/src/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj" (28:2) is building "/home/matell/git/corefx/src/System.Security.Permissions/ref/System.Security.Permissions.csproj" (131:4) on node 3 (default targets). | |
131>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Permissions/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Permissions/4.0.0.0/netcoreapp/". | |
14>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll". | |
Microsoft.VisualBasic -> /home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/Microsoft.VisualBasic.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.VisualBasic/10.0.0.0/netcoreapp/Microsoft.VisualBasic.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/Microsoft.VisualBasic.dll". | |
14>Done Building Project "/home/matell/git/corefx/src/Microsoft.VisualBasic/ref/Microsoft.VisualBasic.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj" (42:2) on node 1 (Build target(s)). | |
42>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.Tools.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
105:5>Project "/home/matell/git/corefx/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj" (105:5) is building "/home/matell/git/corefx/src/System.Security.Principal/ref/System.Security.Principal.csproj" (133:3) on node 3 (default targets). | |
133>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.Principal.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
37>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll.oss_signed" because "AlwaysCreate" was specified. | |
19>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
37>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
19>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll" to "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll". | |
37>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll". | |
System.Diagnostics.FileVersionInfo -> /home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.pdb". | |
19>CopyFilesToOutputDirectory: | |
System.Buffers -> /home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.pdb" to "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.pdb". | |
143>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
37>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.FileVersionInfo.dll". | |
19>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Buffers.dll". | |
37>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.FileVersionInfo.dll". | |
19>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Buffers/4.0.2.0/netcoreapp/System.Buffers.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Buffers.dll". | |
147>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
143>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
System.Threading.Tasks -> /home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
147>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll". | |
System.Threading -> /home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll | |
143>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.Tasks.dll". | |
147>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.pdb". | |
143>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.Tasks.dll". | |
19>Done Building Project "/home/matell/git/corefx/src/System.Buffers/ref/System.Buffers.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
37>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.FileVersionInfo/ref/System.Diagnostics.FileVersionInfo.csproj" (Build target(s)). | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
147>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.dll". | |
38>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll". | |
System.Diagnostics.PerformanceCounter -> /home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.pdb". | |
143>Done Building Project "/home/matell/git/corefx/src/System.Threading.Tasks/ref/System.Threading.Tasks.csproj" (default targets). | |
38>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.PerformanceCounter/4.0.0.0/netcoreapp/System.Diagnostics.PerformanceCounter.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.PerformanceCounter.dll". | |
147>Done Building Project "/home/matell/git/corefx/src/System.Threading/ref/System.Threading.csproj" (default targets). | |
91:3>Project "/home/matell/git/corefx/src/System.ObjectModel/ref/System.ObjectModel.csproj" (91:3) is building "/home/matell/git/corefx/src/System.Collections/ref/System.Collections.csproj" (24:4) on node 2 (default targets). | |
24>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/". | |
38>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.PerformanceCounter/ref/System.Diagnostics.PerformanceCounter.csproj" (Build target(s)). | |
48>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll". | |
System.Drawing.Primitives -> /home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.pdb". | |
36>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.DiagnosticSource.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
48>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Drawing.Primitives/4.1.0.0/netcoreapp/System.Drawing.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Drawing.Primitives.dll". | |
34>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.Contracts.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
48>Done Building Project "/home/matell/git/corefx/src/System.Drawing.Primitives/ref/System.Drawing.Primitives.csproj" (default targets). | |
35>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.Debug.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
138>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Text.Encoding.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
24>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Collections.cs /home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
28:2>Project "/home/matell/git/corefx/src/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj" (28:2) is building "/home/matell/git/corefx/src/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj" (102:3) on node 6 (default targets). | |
102>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/". | |
42>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll". | |
System.Diagnostics.Tools -> /home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.Tools.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tools/4.1.0.0/netcoreapp/System.Diagnostics.Tools.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.Tools.dll". | |
42>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.Tools/ref/System.Diagnostics.Tools.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj" (44:2) on node 1 (Build target(s)). | |
44>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/". | |
133>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll.oss_signed" because "AlwaysCreate" was specified. | |
44>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.Tracing.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
133>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
28:2>Project "/home/matell/git/corefx/src/System.ComponentModel.TypeConverter/ref/System.ComponentModel.TypeConverter.csproj" (28:2) is building "/home/matell/git/corefx/src/System.Resources.Writer/ref/System.Resources.Writer.csproj" (103:3) on node 6 (default targets). | |
103>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/". | |
133>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
System.Security.Principal -> /home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Security.Principal.dll". | |
119:3>Project "/home/matell/git/corefx/src/System.Security.AccessControl/ref/System.Security.AccessControl.csproj" (119:3) is building "/home/matell/git/corefx/src/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj" (132:4) on node 6 (default targets). | |
132>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Principal.Windows/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Principal.Windows/4.1.0.0/netcoreapp/". | |
133>Done Building Project "/home/matell/git/corefx/src/System.Security.Principal/ref/System.Security.Principal.csproj" (default targets). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
105>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Runtime.Extensions.cs System.Runtime.Extensions.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
138>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.DirectoryServices.AccountManagement/ref/System.DirectoryServices.AccountManagement.csproj" (45:2) on node 6 (Build target(s)). | |
45>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/". | |
138>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll". | |
System.Text.Encoding -> /home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Text.Encoding.dll". | |
138>Done Building Project "/home/matell/git/corefx/src/System.Text.Encoding/ref/System.Text.Encoding.csproj" (default targets). | |
45>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/disabledAnalyzers.config System.DirectoryServices.AccountManagement.cs /home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
36>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll". | |
System.Diagnostics.DiagnosticSource -> /home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll | |
18>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/disabledAnalyzers.config System.AppContext.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
36>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.DiagnosticSource.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.DiagnosticSource/4.0.2.0/netcoreapp/System.Diagnostics.DiagnosticSource.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.DiagnosticSource.dll". | |
36>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.DiagnosticSource/ref/System.Diagnostics.DiagnosticSource.csproj" (Build target(s)). | |
34>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll". | |
System.Diagnostics.Contracts -> /home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.Contracts.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Contracts/4.0.3.0/netcoreapp/System.Diagnostics.Contracts.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.Contracts.dll". | |
34>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.Contracts/ref/System.Diagnostics.Contracts.csproj" (Build target(s)). | |
35>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll.oss_signed" because "AlwaysCreate" was specified. | |
29>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/disabledAnalyzers.config System.ComponentModel.cs /home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
35>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
System.Diagnostics.Debug -> /home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.Debug.dll". | |
35>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.Debug/ref/System.Diagnostics.Debug.csproj" (Build target(s)). | |
24>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Runtime.dll". | |
106>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Runtime.Handles.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
24>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll". | |
System.Collections -> /home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Collections.dll". | |
20:2>Project "/home/matell/git/corefx/src/System.CodeDom/ref/System.CodeDom.csproj" (20:2) is building "/home/matell/git/corefx/src/System.IO/ref/System.IO.csproj" (66:9) on node 4 (default targets). | |
66>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/". | |
24>Done Building Project "/home/matell/git/corefx/src/System.Collections/ref/System.Collections.csproj" (default targets). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.DirectoryServices.Protocols/ref/System.DirectoryServices.Protocols.csproj" (46:2) on node 4 (Build target(s)). | |
46>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/". | |
91>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.ObjectModel.cs /home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
45>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll". | |
System.DirectoryServices.AccountManagement -> /home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.DirectoryServices.AccountManagement/4.1.0.0/netcoreapp/System.DirectoryServices.AccountManagement.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.DirectoryServices.AccountManagement.dll". | |
18>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
46>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/disabledAnalyzers.config System.DirectoryServices.Protocols.cs /home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
18>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll" to "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll". | |
45>Done Building Project "/home/matell/git/corefx/src/System.DirectoryServices.AccountManagement/ref/System.DirectoryServices.AccountManagement.csproj" (Build target(s)). | |
18>CopyFilesToOutputDirectory: | |
System.AppContext -> /home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll | |
46>CoreCompile: | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
18>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.pdb" to "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.pdb". | |
44>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll". | |
System.Diagnostics.Tracing -> /home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.Tracing.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Tracing/4.2.0.0/netcoreapp/System.Diagnostics.Tracing.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.Tracing.dll". | |
44>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.Tracing/ref/System.Diagnostics.Tracing.csproj" (Build target(s)). | |
18>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.AppContext.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.AppContext/4.2.0.0/netcoreapp/System.AppContext.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.AppContext.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.DirectoryServices/ref/System.DirectoryServices.csproj" (47:2) on node 1 (Build target(s)). | |
47>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/disabledAnalyzers.config System.DirectoryServices.cs /home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj" (50:2) on node 6 (Build target(s)). | |
50>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/". | |
18>Done Building Project "/home/matell/git/corefx/src/System.AppContext/ref/System.AppContext.csproj" (Build target(s)). | |
20:2>Project "/home/matell/git/corefx/src/System.CodeDom/ref/System.CodeDom.csproj" (20:2) is building "/home/matell/git/corefx/src/System.Reflection/ref/System.Reflection.csproj" (100:6) on node 8 (default targets). | |
100>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj" (51:2) on node 6 (Build target(s)). | |
51>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/". | |
105>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
System.Runtime.Extensions -> /home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll | |
106>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll.oss_signed" because "AlwaysCreate" was specified. | |
105>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
106>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
105>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.Extensions.dll". | |
106>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
100>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Reflection.cs System.Reflection.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
106>CopyFilesToOutputDirectory: | |
System.Runtime.Handles -> /home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.Handles.dll". | |
105>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Extensions/ref/System.Runtime.Extensions.csproj" (default targets). | |
29>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.Compression/ref/System.IO.Compression.csproj" (54:2) on node 6 (Build target(s)). | |
54>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/". | |
29>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll". | |
System.ComponentModel -> /home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.pdb". | |
106>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Handles/ref/System.Runtime.Handles.csproj" (default targets). | |
29>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.ComponentModel.dll". | |
29>Done Building Project "/home/matell/git/corefx/src/System.ComponentModel/ref/System.ComponentModel.csproj" (default targets). | |
46>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
22>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Collections.NonGeneric.cs /home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
17>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/disabledAnalyzers.config Microsoft.Win32.Registry.cs /home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
22>CoreCompile: | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
17>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
22>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
51>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Globalization.Extensions.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
46>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll". | |
System.DirectoryServices.Protocols -> /home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll | |
47>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll". | |
System.DirectoryServices -> /home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.DirectoryServices/4.1.0.0/netcoreapp/System.DirectoryServices.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.DirectoryServices.dll". | |
47>Done Building Project "/home/matell/git/corefx/src/System.DirectoryServices/ref/System.DirectoryServices.csproj" (Build target(s)). | |
46>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.pdb" to "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj" (55:2) on node 1 (Build target(s)). | |
55>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.AccessControl/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.AccessControl/4.0.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
46>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.DirectoryServices.Protocols/4.1.0.0/netcoreapp/System.DirectoryServices.Protocols.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.DirectoryServices.Protocols.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
55:2>Project "/home/matell/git/corefx/src/System.IO.FileSystem.AccessControl/ref/System.IO.FileSystem.AccessControl.csproj" (55:2) is building "/home/matell/git/corefx/src/System.IO.FileSystem/ref/System.IO.FileSystem.csproj" (59:3) on node 1 (default targets). | |
59>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/". | |
59:3>Project "/home/matell/git/corefx/src/System.IO.FileSystem/ref/System.IO.FileSystem.csproj" (59:3) is building "/home/matell/git/corefx/src/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj" (57:4) on node 1 (default targets). | |
57>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.FileSystem.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
46>Done Building Project "/home/matell/git/corefx/src/System.DirectoryServices.Protocols/ref/System.DirectoryServices.Protocols.csproj" (Build target(s)). | |
15>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/disabledAnalyzers.config Microsoft.Win32.Primitives.cs /home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj" (56:2) on node 4 (Build target(s)). | |
56>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/". | |
91>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll". | |
System.ObjectModel -> /home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.pdb" to "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ObjectModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.ObjectModel.dll". | |
100>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll". | |
System.Reflection -> /home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
91>Done Building Project "/home/matell/git/corefx/src/System.ObjectModel/ref/System.ObjectModel.csproj" (default targets). | |
100>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Reflection.dll". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.FileSystem.Watcher/ref/System.IO.FileSystem.Watcher.csproj" (58:2) on node 4 (Build target(s)). | |
58>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Watcher/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Watcher/4.1.0.0/netcoreapp/". | |
100>Done Building Project "/home/matell/git/corefx/src/System.Reflection/ref/System.Reflection.csproj" (default targets). | |
32:2>Project "/home/matell/git/corefx/src/System.Data.Common/ref/System.Data.Common.csproj" (32:2) is building "/home/matell/git/corefx/src/System.Transactions/ref/System.Transactions.csproj" (148:3) on node 8 (default targets). | |
148>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
67>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Linq.Expressions.cs /home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
66>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/disabledAnalyzers.config System.IO.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
51>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
148:3>Project "/home/matell/git/corefx/src/System.Transactions/ref/System.Transactions.csproj" (148:3) is building "/home/matell/git/corefx/src/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj" (114:3) on node 8 (default targets). | |
114>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/". | |
50>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Globalization.Calendars.Forwards.cs /home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
114>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Runtime.Serialization.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
22>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Globalization.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Globalization.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
57>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
System.IO.FileSystem.Primitives -> /home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.FileSystem.Primitives.dll". | |
57>Done Building Project "/home/matell/git/corefx/src/System.IO.FileSystem.Primitives/ref/System.IO.FileSystem.Primitives.csproj" (default targets). | |
22>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
System.Collections.NonGeneric -> /home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll | |
17>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll.oss_signed" because "AlwaysCreate" was specified. | |
22>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj" (60:2) on node 1 (Build target(s)). | |
60>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/". | |
17>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj" (61:2) on node 1 (Build target(s)). | |
61>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/". | |
22>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Collections.NonGeneric.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Collections.NonGeneric.dll". | |
61:2>Project "/home/matell/git/corefx/src/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj" (61:2) is building "/home/matell/git/corefx/src/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj" (65:3) on node 1 (default targets). | |
65>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/". | |
17>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll". | |
Microsoft.Win32.Registry -> /home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.Packaging/ref/System.IO.Packaging.csproj" (62:2) on node 1 (Build target(s)). | |
62>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/". | |
17>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Registry/4.1.0.0/netcoreapp/Microsoft.Win32.Registry.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/Microsoft.Win32.Registry.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
22>Done Building Project "/home/matell/git/corefx/src/System.Collections.NonGeneric/ref/System.Collections.NonGeneric.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.IO.Pipes.AccessControl/ref/System.IO.Pipes.AccessControl.csproj" (63:2) on node 1 (Build target(s)). | |
63>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.Pipes.AccessControl/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes.AccessControl/4.0.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
63:2>Project "/home/matell/git/corefx/src/System.IO.Pipes.AccessControl/ref/System.IO.Pipes.AccessControl.csproj" (63:2) is building "/home/matell/git/corefx/src/System.IO.Pipes/ref/System.IO.Pipes.csproj" (64:3) on node 1 (default targets). | |
64>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Linq.Parallel/ref/System.Linq.Parallel.csproj" (68:2) on node 1 (Build target(s)). | |
68>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/". | |
17>Done Building Project "/home/matell/git/corefx/src/Microsoft.Win32.Registry/ref/Microsoft.Win32.Registry.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
32:2>Project "/home/matell/git/corefx/src/System.Data.Common/ref/System.Data.Common.csproj" (32:2) is building "/home/matell/git/corefx/src/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj" (151:4) on node 7 (default targets). | |
151>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
15>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
68:2>Project "/home/matell/git/corefx/src/System.Linq.Parallel/ref/System.Linq.Parallel.csproj" (68:2) is building "/home/matell/git/corefx/src/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj" (21:3) on node 1 (default targets). | |
21>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/". | |
15>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Linq.Queryable/ref/System.Linq.Queryable.csproj" (69:2) on node 1 (Build target(s)). | |
69>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Memory/ref/System.Memory.csproj" (71:2) on node 1 (Build target(s)). | |
71>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/". | |
15>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Microsoft.Win32.Primitives -> /home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll | |
71>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Memory.cs /home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
15>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/Microsoft.Win32.Primitives.dll". | |
68:2>Project "/home/matell/git/corefx/src/System.Linq.Parallel/ref/System.Linq.Parallel.csproj" (68:2) is building "/home/matell/git/corefx/src/System.Linq/ref/System.Linq.csproj" (70:3) on node 7 (default targets). | |
70>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
15>Done Building Project "/home/matell/git/corefx/src/Microsoft.Win32.Primitives/ref/Microsoft.Win32.Primitives.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
131:4>Project "/home/matell/git/corefx/src/System.Security.Permissions/ref/System.Security.Permissions.csproj" (131:4) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj" (127:3) on node 3 (default targets). | |
127>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
131:4>Project "/home/matell/git/corefx/src/System.Security.Permissions/ref/System.Security.Permissions.csproj" (131:4) is building "/home/matell/git/corefx/src/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj" (129:3) on node 5 (default targets). | |
129>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
66>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll.oss_signed" because "AlwaysCreate" was specified. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
70>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Linq.cs /home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
63:2>Project "/home/matell/git/corefx/src/System.IO.Pipes.AccessControl/ref/System.IO.Pipes.AccessControl.csproj" (63:2) is building "/home/matell/git/corefx/src/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj" (109:8) on node 3 (default targets). | |
109>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
50>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll.oss_signed" because "AlwaysCreate" was specified. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Http.Rtc/ref/System.Net.Http.Rtc.csproj" (72:2) on node 4 (Build target(s)). | |
72>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Http.Rtc/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Http.Rtc/4.0.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
67>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Collections.pdb". | |
109:8>Project "/home/matell/git/corefx/src/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj" (109:8) is building "/home/matell/git/corefx/src/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj" (98:3) on node 3 (default targets). | |
98>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/". | |
67>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll". | |
System.Linq.Expressions -> /home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Linq.Expressions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Linq.Expressions.dll". | |
114>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
System.Runtime.Serialization.Primitives -> /home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb". | |
67>Done Building Project "/home/matell/git/corefx/src/System.Linq.Expressions/ref/System.Linq.Expressions.csproj" (default targets). | |
25>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/disabledAnalyzers.config System.ComponentModel.Annotations.cs /home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
114>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
23>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Collections.Specialized.cs /home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
27>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/disabledAnalyzers.config System.ComponentModel.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
114>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Serialization.Primitives/ref/System.Runtime.Serialization.Primitives.csproj" (default targets). | |
148:3>Project "/home/matell/git/corefx/src/System.Transactions/ref/System.Transactions.csproj" (148:3) is building "/home/matell/git/corefx/src/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj" (112:3) on node 8 (default targets). | |
112>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/". | |
98>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Reflection.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
71>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
49>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll /reference:/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Dynamic.Runtime.cs /home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
71>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll" to "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll". | |
System.Memory -> /home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.pdb" to "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.pdb". | |
49>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
71>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Memory/4.0.0.0/netcoreapp/System.Memory.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Memory.dll". | |
71>Done Building Project "/home/matell/git/corefx/src/System.Memory/ref/System.Memory.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Http.WinHttpHandler/ref/System.Net.Http.WinHttpHandler.csproj" (73:2) on node 1 (Build target(s)). | |
73>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Http.WinHttpHandler/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Http.WinHttpHandler/4.0.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
73:2>Project "/home/matell/git/corefx/src/System.Net.Http.WinHttpHandler/ref/System.Net.Http.WinHttpHandler.csproj" (73:2) is building "/home/matell/git/corefx/src/System.Net.Http/ref/System.Net.Http.csproj" (74:3) on node 1 (default targets). | |
74>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
74:3>Project "/home/matell/git/corefx/src/System.Net.Http/ref/System.Net.Http.csproj" (74:3) is building "/home/matell/git/corefx/src/System.Net.Primitives/ref/System.Net.Primitives.csproj" (80:5) on node 1 (default targets). | |
80>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.HttpListener/ref/System.Net.HttpListener.csproj" (75:2) on node 8 (Build target(s)). | |
75>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.HttpListener/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.HttpListener/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.NameResolution/ref/System.Net.NameResolution.csproj" (77:2) on node 1 (Build target(s)). | |
77>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Mail/ref/System.Net.Mail.csproj" (76:2) on node 8 (Build target(s)). | |
76>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Mail/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Mail/4.0.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj" (78:2) on node 1 (Build target(s)). | |
78>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Ping/ref/System.Net.Ping.csproj" (79:2) on node 1 (Build target(s)). | |
79>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Requests/ref/System.Net.Requests.csproj" (81:2) on node 1 (Build target(s)). | |
81>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Requests/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Requests/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
81:2>Project "/home/matell/git/corefx/src/System.Net.Requests/ref/System.Net.Requests.csproj" (81:2) is building "/home/matell/git/corefx/src/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj" (86:3) on node 1 (default targets). | |
86>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/". | |
70>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Runtime.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Collections.pdb". | |
81:2>Project "/home/matell/git/corefx/src/System.Net.Requests/ref/System.Net.Requests.csproj" (81:2) is building "/home/matell/git/corefx/src/System.Net.Security/ref/System.Net.Security.csproj" (82:3) on node 1 (default targets). | |
82>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.Sockets/ref/System.Net.Sockets.csproj" (84:2) on node 1 (Build target(s)). | |
84>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.WebClient/ref/System.Net.WebClient.csproj" (85:2) on node 1 (Build target(s)). | |
85>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.WebClient/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.WebClient/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.WebProxy/ref/System.Net.WebProxy.csproj" (87:2) on node 1 (Build target(s)). | |
87>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj" (88:2) on node 1 (Build target(s)). | |
88>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/". | |
76:2>Project "/home/matell/git/corefx/src/System.Net.Mail/ref/System.Net.Mail.csproj" (76:2) is building "/home/matell/git/corefx/src/System.Net.ServicePoint/ref/System.Net.ServicePoint.csproj" (83:4) on node 8 (default targets). | |
83>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
21>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Collections.Concurrent.cs /home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj" (90:2) on node 7 (Build target(s)). | |
90>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.Context/ref/System.Reflection.Context.csproj" (92:2) on node 8 (Build target(s)). | |
92>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/". | |
90>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/disabledAnalyzers.config System.Numerics.Vectors.cs /home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj" (93:2) on node 8 (Build target(s)). | |
93>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/". | |
25>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.pdb". | |
23>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
49>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll.oss_signed" because "AlwaysCreate" was specified. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Linq.Expressions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.ObjectModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.ObjectModel.pdb" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.ObjectModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.pdb" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Linq.Expressions.pdb". | |
25>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll". | |
49>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ObjectModel/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Collections.pdb". | |
25>CopyFilesToOutputDirectory: | |
System.ComponentModel.Annotations -> /home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.pdb". | |
27>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
25>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ComponentModel.Annotations.dll". | |
27>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.pdb". | |
25>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Annotations/4.2.0.0/netcoreapp/System.ComponentModel.Annotations.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.ComponentModel.Annotations.dll". | |
27>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
98>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj" (94:2) on node 8 (Build target(s)). | |
94>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/". | |
66>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll". | |
System.IO -> /home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb". | |
132:4>Project "/home/matell/git/corefx/src/System.Security.Principal.Windows/ref/System.Security.Principal.Windows.csproj" (132:4) is building "/home/matell/git/corefx/src/System.Security.Claims/ref/System.Security.Claims.csproj" (120:3) on node 6 (default targets). | |
120>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Claims/4.1.0.0/netcoreapp/". | |
98>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll". | |
System.Reflection.Primitives -> /home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll | |
49>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll". | |
98>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb". | |
66>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.dll". | |
98>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Primitives.dll". | |
49>CopyFilesToOutputDirectory: | |
System.Dynamic.Runtime -> /home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll | |
98>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Reflection.Primitives.dll". | |
49>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.pdb". | |
25>Done Building Project "/home/matell/git/corefx/src/System.ComponentModel.Annotations/ref/System.ComponentModel.Annotations.csproj" (Build target(s)). | |
49>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Dynamic.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Dynamic.Runtime.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
66>Done Building Project "/home/matell/git/corefx/src/System.IO/ref/System.IO.csproj" (default targets). | |
98>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Primitives/ref/System.Reflection.Primitives.csproj" (default targets). | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj" (95:2) on node 8 (Build target(s)). | |
95>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/". | |
49>Done Building Project "/home/matell/git/corefx/src/System.Dynamic.Runtime/ref/System.Dynamic.Runtime.csproj" (default targets). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.Emit/ref/System.Reflection.Emit.csproj" (96:2) on node 6 (Build target(s)). | |
96>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
40>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.StackTrace.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj" (97:2) on node 6 (Build target(s)). | |
97>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj" (99:2) on node 4 (Build target(s)). | |
99>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/". | |
11>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/disabledAnalyzers.config Microsoft.CSharp.cs /home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
109>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:618,1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Runtime.InteropServices.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
21>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Threading.Tasks.pdb". | |
64>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.Pipes.cs System.IO.Pipes.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
94>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Reflection.Emit.ILGeneration.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
97>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Reflection.Extensions.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
99>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/disabledAnalyzers.config System.Reflection.TypeExtensions.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
97>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
90>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll" to "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll". | |
System.Numerics.Vectors -> /home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.pdb" to "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Numerics.Vectors.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Numerics.Vectors/4.1.3.0/netcoreapp/System.Numerics.Vectors.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Numerics.Vectors.dll". | |
90>Done Building Project "/home/matell/git/corefx/src/System.Numerics.Vectors/ref/System.Numerics.Vectors.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Resources.Reader/ref/System.Resources.Reader.csproj" (101:2) on node 7 (Build target(s)). | |
101>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj" (104:2) on node 7 (Build target(s)). | |
104>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Runtime.CompilerServices.VisualC.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
40>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj" (107:2) on node 5 (Build target(s)). | |
107>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/". | |
97>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb". | |
11>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Dynamic.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Linq.Expressions.dll". | |
107>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Runtime.InteropServices.RuntimeInformation.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
11>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.ObjectModel.dll". | |
107>CoreCompile: | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
11>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Dynamic.Runtime/4.1.0.0/netcoreapp/System.Dynamic.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Dynamic.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Linq.Expressions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.ObjectModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/System.Collections.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll". | |
Microsoft.CSharp -> /home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.pdb" to "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/Microsoft.CSharp.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.CSharp/4.0.3.0/netcoreapp/Microsoft.CSharp.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/Microsoft.CSharp.dll". | |
94>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb". | |
109>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.dll". | |
11>Done Building Project "/home/matell/git/corefx/src/Microsoft.CSharp/ref/Microsoft.CSharp.csproj" (Build target(s)). | |
109>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Reflection.Primitives.pdb". | |
103>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Resources.Writer.cs /home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
109>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
103>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
109>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
99>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.pdb". | |
41:2>Project "/home/matell/git/corefx/src/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj" (41:2) is building "/home/matell/git/corefx/src/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj" (43:3) on node 2 (default targets). | |
43>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj" (108:2) on node 4 (Build target(s)). | |
108>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
64>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
21>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll". | |
System.Collections.Concurrent -> /home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Collections.Concurrent.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Collections.Concurrent.dll". | |
21>Done Building Project "/home/matell/git/corefx/src/System.Collections.Concurrent/ref/System.Collections.Concurrent.csproj" (default targets). | |
59>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.FileSystem.cs /home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.Loader/ref/System.Runtime.Loader.csproj" (110:2) on node 2 (Build target(s)). | |
110>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/". | |
127>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Security.Cryptography.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
108>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Runtime.InteropServices.WindowsRuntime.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
93>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Reflection.DispatchProxy.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
104>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
110>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Runtime.Loader.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
104>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll". | |
System.Runtime.CompilerServices.VisualC -> /home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.CompilerServices.VisualC/4.1.0.0/netcoreapp/System.Runtime.CompilerServices.VisualC.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.CompilerServices.VisualC.dll". | |
104>Done Building Project "/home/matell/git/corefx/src/System.Runtime.CompilerServices.VisualC/ref/System.Runtime.CompilerServices.VisualC.csproj" (Build target(s)). | |
70>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll". | |
System.Linq -> /home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Linq.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Linq.dll". | |
70>Done Building Project "/home/matell/git/corefx/src/System.Linq/ref/System.Linq.csproj" (default targets). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj" (111:2) on node 7 (Build target(s)). | |
111>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Runtime.Numerics.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
107>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll". | |
System.Runtime.InteropServices.RuntimeInformation -> /home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.pdb". | |
103>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
107>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll". | |
103>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
107>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.RuntimeInformation/4.0.2.0/netcoreapp/System.Runtime.InteropServices.RuntimeInformation.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.InteropServices.RuntimeInformation.dll". | |
107>Done Building Project "/home/matell/git/corefx/src/System.Runtime.InteropServices.RuntimeInformation/ref/System.Runtime.InteropServices.RuntimeInformation.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj" (113:2) on node 5 (Build target(s)). | |
113>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
54>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/ECMA.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/disabledAnalyzers.config System.IO.Compression.cs /home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
113:2>Project "/home/matell/git/corefx/src/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj" (113:2) is building "/home/matell/git/corefx/src/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj" (115:3) on node 5 (default targets). | |
115>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/". | |
127>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.IO.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj" (116:2) on node 5 (Build target(s)). | |
116>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
93>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll.oss_signed" because "AlwaysCreate" was specified. | |
116:2>Project "/home/matell/git/corefx/src/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj" (116:2) is building "/home/matell/git/corefx/src/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj" (117:3) on node 5 (default targets). | |
117>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/". | |
93>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
59>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
62>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/disabledAnalyzers.config System.IO.Packaging.cs /home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
93>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll". | |
System.Reflection.DispatchProxy -> /home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj" (121:3) on node 5 (Build target(s)). | |
121>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/". | |
108>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
110>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll.oss_signed" because "AlwaysCreate" was specified. | |
93>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.DispatchProxy.dll". | |
110>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.IO.dll". | |
93>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.DispatchProxy/4.0.3.0/netcoreapp/System.Reflection.DispatchProxy.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Reflection.DispatchProxy.dll". | |
110>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Reflection.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Security.Principal.pdb". | |
108>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll". | |
System.Runtime.InteropServices.WindowsRuntime -> /home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.pdb". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices.WindowsRuntime/4.0.3.0/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.InteropServices.WindowsRuntime.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
93>Done Building Project "/home/matell/git/corefx/src/System.Reflection.DispatchProxy/ref/System.Reflection.DispatchProxy.csproj" (Build target(s)). | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj" (122:2) on node 2 (Build target(s)). | |
122>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/". | |
108>Done Building Project "/home/matell/git/corefx/src/System.Runtime.InteropServices.WindowsRuntime/ref/System.Runtime.InteropServices.WindowsRuntime.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
27>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll". | |
System.ComponentModel.Primitives -> /home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll | |
94>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll". | |
27>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb". | |
94>CopyFilesToOutputDirectory: | |
System.Reflection.Emit.ILGeneration -> /home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb". | |
27>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ComponentModel.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.ComponentModel.Primitives.dll". | |
94>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Emit.ILGeneration.dll". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj" (125:2) on node 2 (Build target(s)). | |
125>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj" (123:2) on node 3 (Build target(s)). | |
123>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
121:3>Project "/home/matell/git/corefx/src/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj" (121:3) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj" (124:4) on node 3 (default targets). | |
124>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/". | |
94>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Emit.ILGeneration/ref/System.Reflection.Emit.ILGeneration.csproj" (Build target(s)). | |
27>Done Building Project "/home/matell/git/corefx/src/System.ComponentModel.Primitives/ref/System.ComponentModel.Primitives.csproj" (Build target(s)). | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj" (126:2) on node 2 (Build target(s)). | |
126>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
111>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj" (128:2) on node 5 (Build target(s)). | |
128>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/". | |
111>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll". | |
System.Runtime.Numerics -> /home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Numerics.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Numerics/4.1.0.0/netcoreapp/System.Runtime.Numerics.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.Numerics.dll". | |
127>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
System.Security.Cryptography.Primitives -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj" (130:2) on node 4 (Build target(s)). | |
130>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/". | |
127>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Security.Cryptography.Primitives.dll". | |
54>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Text.Encoding.dll". | |
111>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Numerics/ref/System.Runtime.Numerics.csproj" (Build target(s)). | |
54>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Security.SecureString/ref/System.Security.SecureString.csproj" (134:2) on node 7 (Build target(s)). | |
134>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
127>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Primitives/ref/System.Security.Cryptography.Primitives.csproj" (default targets). | |
54>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll". | |
System.IO.Compression -> /home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.pdb". | |
92>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Reflection.Context.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
54>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.Compression.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.Compression/4.2.0.0/netcoreapp/System.IO.Compression.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.Compression.dll". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj" (135:2) on node 2 (Build target(s)). | |
135>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/". | |
128>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.ProtectedData.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Text.Encoding.CodePages/ref/System.Text.Encoding.CodePages.csproj" (136:2) on node 7 (Build target(s)). | |
136>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/". | |
54>Done Building Project "/home/matell/git/corefx/src/System.IO.Compression/ref/System.IO.Compression.csproj" (Build target(s)). | |
130>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Xml.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
23>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
System.Collections.Specialized -> /home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
62>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Collections.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll". | |
System.IO.Packaging -> /home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.Packaging/4.0.2.0/netcoreapp/System.IO.Packaging.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.Packaging.dll". | |
62>Done Building Project "/home/matell/git/corefx/src/System.IO.Packaging/ref/System.IO.Packaging.csproj" (Build target(s)). | |
59>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll". | |
System.IO.FileSystem -> /home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.FileSystem.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.FileSystem.dll". | |
23>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Collections.Specialized.dll". | |
59>Done Building Project "/home/matell/git/corefx/src/System.IO.FileSystem/ref/System.IO.FileSystem.csproj" (default targets). | |
23>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Collections.Specialized.dll". | |
64>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll". | |
System.IO.Pipes -> /home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.Pipes/4.1.0.0/netcoreapp/System.IO.Pipes.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.Pipes.dll". | |
64>Done Building Project "/home/matell/git/corefx/src/System.IO.Pipes/ref/System.IO.Pipes.csproj" (default targets). | |
60>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.IsolatedStorage.cs /home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
124>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Encoding.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
23>Done Building Project "/home/matell/git/corefx/src/System.Collections.Specialized/ref/System.Collections.Specialized.csproj" (Build target(s)). | |
50>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll". | |
System.Globalization.Calendars -> /home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Globalization.Calendars.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization.Calendars/4.1.0.0/netcoreapp/System.Globalization.Calendars.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Globalization.Calendars.dll". | |
50>Done Building Project "/home/matell/git/corefx/src/System.Globalization.Calendars/ref/System.Globalization.Calendars.csproj" (Build target(s)). | |
51>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll". | |
System.Globalization.Extensions -> /home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.pdb". | |
135>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/disabledAnalyzers.config System.ServiceProcess.ServiceController.cs /home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
51>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Globalization.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization.Extensions/4.1.0.0/netcoreapp/System.Globalization.Extensions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Globalization.Extensions.dll". | |
136>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Text.Encoding.CodePages.cs /home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
51>Done Building Project "/home/matell/git/corefx/src/System.Globalization.Extensions/ref/System.Globalization.Extensions.csproj" (Build target(s)). | |
103>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll". | |
System.Resources.Writer -> /home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.pdb". | |
92>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
103>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Resources.Writer.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.Writer/4.1.0.0/netcoreapp/System.Resources.Writer.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Resources.Writer.dll". | |
92>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll". | |
System.Reflection.Context -> /home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.pdb". | |
103>Done Building Project "/home/matell/git/corefx/src/System.Resources.Writer/ref/System.Resources.Writer.csproj" (default targets). | |
92>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Context/4.0.3.0/netcoreapp/System.Reflection.Context.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Context.dll". | |
128>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
92>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Context/ref/System.Reflection.Context.csproj" (Build target(s)). | |
128>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll". | |
System.Security.Cryptography.ProtectedData -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.pdb". | |
130>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
128>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.ProtectedData/4.0.2.0/netcoreapp/System.Security.Cryptography.ProtectedData.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.ProtectedData.dll". | |
130>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll". | |
System.Security.Cryptography.Xml -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Xml/4.0.0.0/netcoreapp/System.Security.Cryptography.Xml.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Xml.dll". | |
128>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.ProtectedData/ref/System.Security.Cryptography.ProtectedData.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
130>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Xml/ref/System.Security.Cryptography.Xml.csproj" (Build target(s)). | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj" (137:2) on node 6 (Build target(s)). | |
137>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/". | |
31>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Console.cs /home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
124>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj" (139:2) on node 5 (Build target(s)). | |
139>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/". | |
124>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
System.Security.Cryptography.Encoding -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
135>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
124>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Security.Cryptography.Encoding.dll". | |
136>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.pdb". | |
60>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.FileSystem.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll". | |
System.IO.IsolatedStorage -> /home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.IsolatedStorage/4.1.0.0/netcoreapp/System.IO.IsolatedStorage.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.IsolatedStorage.dll". | |
135>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll". | |
60>Done Building Project "/home/matell/git/corefx/src/System.IO.IsolatedStorage/ref/System.IO.IsolatedStorage.csproj" (Build target(s)). | |
75:2>Project "/home/matell/git/corefx/src/System.Net.HttpListener/ref/System.Net.HttpListener.csproj" (75:2) is building "/home/matell/git/corefx/src/System.Net.WebSockets/ref/System.Net.WebSockets.csproj" (89:5) on node 1 (default targets). | |
89>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/". | |
135>CopyFilesToOutputDirectory: | |
System.ServiceProcess.ServiceController -> /home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.pdb" to "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.pdb". | |
136>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.AccessControl/ref/System.Threading.AccessControl.csproj" (140:2) on node 1 (Build target(s)). | |
140>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.AccessControl/4.0.2.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.AccessControl/4.0.2.0/netcoreapp/". | |
136>CopyFilesToOutputDirectory: | |
System.Text.Encoding.CodePages -> /home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll | |
135>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ServiceProcess.ServiceController/4.2.0.0/netcoreapp/System.ServiceProcess.ServiceController.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ServiceProcess.ServiceController.dll". | |
136>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj" (141:2) on node 1 (Build target(s)). | |
141>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/". | |
CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.Overlapped.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
124>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Encoding/ref/System.Security.Cryptography.Encoding.csproj" (default targets). | |
136>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding.CodePages/4.1.0.0/netcoreapp/System.Text.Encoding.CodePages.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Text.Encoding.CodePages.dll". | |
56>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.FileSystem.DriveInfo.cs /home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
135>Done Building Project "/home/matell/git/corefx/src/System.ServiceProcess.ServiceController/ref/System.ServiceProcess.ServiceController.csproj" (Build target(s)). | |
137>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Text.Encoding.Extensions.cs /home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj" (142:2) on node 3 (Build target(s)). | |
142>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/". | |
136>Done Building Project "/home/matell/git/corefx/src/System.Text.Encoding.CodePages/ref/System.Text.Encoding.CodePages.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.Thread/ref/System.Threading.Thread.csproj" (144:2) on node 2 (Build target(s)). | |
144>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj" (145:2) on node 7 (Build target(s)). | |
145>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/". | |
139>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Text.RegularExpressions.cs System.Text.RegularExpressions.netcoreapp.cs /home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Threading.Timer/ref/System.Threading.Timer.csproj" (146:2) on node 7 (Build target(s)). | |
146>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj" (150:2) on node 2 (Build target(s)). | |
150>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/". | |
142>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Threading.Tasks.Parallel.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
146>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.Timer.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj" (153:2) on node 2 (Build target(s)). | |
153>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/". | |
31>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.IO.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Runtime.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj" (154:2) on node 2 (Build target(s)). | |
154>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/". | |
31>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll". | |
System.Console -> /home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Console/4.1.0.0/netcoreapp/System.Console.pdb" to "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Console.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Console.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Console/4.1.0.0/netcoreapp/System.Console.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Console.dll". | |
31>Done Building Project "/home/matell/git/corefx/src/System.Console/ref/System.Console.csproj" (Build target(s)). | |
144>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.Thread.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
137>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.pdb". | |
56>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
137>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll". | |
System.Text.Encoding.Extensions -> /home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.pdb". | |
56>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll". | |
137>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Text.Encoding.Extensions.dll". | |
56>CopyFilesToOutputDirectory: | |
System.IO.FileSystem.DriveInfo -> /home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.pdb". | |
137>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding.Extensions/4.1.0.0/netcoreapp/System.Text.Encoding.Extensions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Text.Encoding.Extensions.dll". | |
56>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.DriveInfo/4.1.0.0/netcoreapp/System.IO.FileSystem.DriveInfo.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.FileSystem.DriveInfo.dll". | |
95>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Reflection.Emit.Lightweight.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
137>Done Building Project "/home/matell/git/corefx/src/System.Text.Encoding.Extensions/ref/System.Text.Encoding.Extensions.csproj" (Build target(s)). | |
97>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll". | |
56>Done Building Project "/home/matell/git/corefx/src/System.IO.FileSystem.DriveInfo/ref/System.IO.FileSystem.DriveInfo.csproj" (Build target(s)). | |
97>CopyFilesToOutputDirectory: | |
System.Reflection.Extensions -> /home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll | |
99>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll". | |
97>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.pdb". | |
99>CopyFilesToOutputDirectory: | |
System.Reflection.TypeExtensions -> /home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.pdb". | |
97>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Extensions/4.1.0.0/netcoreapp/System.Reflection.Extensions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Reflection.Extensions.dll". | |
99>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.TypeExtensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.TypeExtensions/4.1.2.0/netcoreapp/System.Reflection.TypeExtensions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Reflection.TypeExtensions.dll". | |
97>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Extensions/ref/System.Reflection.Extensions.csproj" (Build target(s)). | |
99>Done Building Project "/home/matell/git/corefx/src/System.Reflection.TypeExtensions/ref/System.Reflection.TypeExtensions.csproj" (Build target(s)). | |
141>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll". | |
System.Threading.Overlapped -> /home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.Overlapped.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.Overlapped.dll". | |
141>Done Building Project "/home/matell/git/corefx/src/System.Threading.Overlapped/ref/System.Threading.Overlapped.csproj" (Build target(s)). | |
68>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /reference:/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Linq.Parallel.cs /home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
139>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll". | |
System.Text.RegularExpressions -> /home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.pdb" to "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.pdb". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj" (155:2) on node 4 (Build target(s)). | |
155>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/". | |
139>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Text.RegularExpressions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.RegularExpressions/4.2.0.0/netcoreapp/System.Text.RegularExpressions.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Text.RegularExpressions.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
139>Done Building Project "/home/matell/git/corefx/src/System.Text.RegularExpressions/ref/System.Text.RegularExpressions.csproj" (Build target(s)). | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
40>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll". | |
96>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Reflection.Emit.cs /home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
40>CopyFilesToOutputDirectory: | |
System.Diagnostics.StackTrace -> /home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll | |
96>CoreCompile: | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
40>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.StackTrace/4.1.0.0/netcoreapp/System.Diagnostics.StackTrace.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.StackTrace.dll". | |
142>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Collections.Concurrent.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Collections.Concurrent.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.pdb". | |
40>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.StackTrace/ref/System.Diagnostics.StackTrace.csproj" (Build target(s)). | |
142>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll". | |
146>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll.oss_signed" because "AlwaysCreate" was specified. | |
142>CopyFilesToOutputDirectory: | |
System.Threading.Tasks.Parallel -> /home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll | |
146>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Runtime.dll". | |
142>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.pdb". | |
146>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
142>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.Tasks.Parallel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.Parallel.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.Tasks.Parallel.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
146>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
CopyFilesToOutputDirectory: | |
System.Threading.Timer -> /home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.Timer.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Timer/4.1.0.0/netcoreapp/System.Threading.Timer.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.Timer.dll". | |
155:2>Project "/home/matell/git/corefx/src/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj" (155:2) is building "/home/matell/git/corefx/src/System.Xml.XDocument/ref/System.Xml.XDocument.csproj" (152:3) on node 4 (default targets). | |
152>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/". | |
142>Done Building Project "/home/matell/git/corefx/src/System.Threading.Tasks.Parallel/ref/System.Threading.Tasks.Parallel.csproj" (Build target(s)). | |
109>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
System.Runtime.InteropServices -> /home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
146>Done Building Project "/home/matell/git/corefx/src/System.Threading.Timer/ref/System.Threading.Timer.csproj" (Build target(s)). | |
109>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Runtime.InteropServices.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
155:2>Project "/home/matell/git/corefx/src/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj" (155:2) is building "/home/matell/git/corefx/src/System.Xml.XPath/ref/System.Xml.XPath.csproj" (157:3) on node 4 (default targets). | |
157>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/". | |
10>Project "/home/matell/git/corefx/src/ref.builds" (10) is building "/home/matell/git/corefx/src/System.Xml.XPath.XmlDocument/ref/System.Xml.XPath.XmlDocument.csproj" (156:2) on node 7 (Build target(s)). | |
156>PrepareForBuild: | |
Creating directory "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/". | |
Creating directory "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/". | |
109>Done Building Project "/home/matell/git/corefx/src/System.Runtime.InteropServices/ref/System.Runtime.InteropServices.csproj" (default targets). | |
117>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1698,1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /reference:/home/matell/git/corefx/bin/ref/Windows/999.999.999.999/netcoreapp/Windows.winmd /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/ECMA.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/disabledAnalyzers.config System.Runtime.WindowsRuntime.cs System.Runtime.WindowsRuntime.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
144>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
The target "TestAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/buildvertical.targets (13,11)" does not exist in the project, and will be ignored. | |
The target "BuildAllProjects" listed in a BeforeTargets attribute at "/home/matell/git/corefx/Tools/versioning.targets (218,11)" does not exist in the project, and will be ignored. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.pdb". | |
95>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb". | |
110>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll". | |
System.Runtime.Loader -> /home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.pdb". | |
95>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll". | |
System.Reflection.Emit.Lightweight -> /home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll | |
110>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Loader/4.0.2.0/netcoreapp/System.Runtime.Loader.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Loader.dll". | |
95>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.Lightweight/4.0.3.0/netcoreapp/System.Reflection.Emit.Lightweight.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Emit.Lightweight.dll". | |
110>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Loader/ref/System.Runtime.Loader.csproj" (Build target(s)). | |
134>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.SecureString.cs /home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
95>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Emit.Lightweight/ref/System.Reflection.Emit.Lightweight.csproj" (Build target(s)). | |
26>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/disabledAnalyzers.config System.ComponentModel.EventBasedAsync.cs /home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
68>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Collections.Concurrent.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Concurrent/4.0.14.0/netcoreapp/System.Collections.Concurrent.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Collections.Concurrent.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Collections.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Threading.Tasks.pdb". | |
69>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll /reference:/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Linq.Queryable.cs /home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
96>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Primitives/4.1.0.0/netcoreapp/System.Reflection.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit.ILGeneration/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.ILGeneration.pdb". | |
102>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Resources.ResourceManager.cs /home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
117>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Windows/999.999.999.999/netcoreapp/Windows.winmd" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/Windows.winmd". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Security.Principal.pdb". | |
134>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll". | |
System.Security.SecureString -> /home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.SecureString/4.1.0.0/netcoreapp/System.Security.SecureString.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.SecureString.dll". | |
134>Done Building Project "/home/matell/git/corefx/src/System.Security.SecureString/ref/System.Security.SecureString.csproj" (Build target(s)). | |
121>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Algorithms.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
26>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Threading.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel/4.0.3.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading/4.1.0.0/netcoreapp/System.Threading.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Threading.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
69>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Expressions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.ObjectModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Linq.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.Linq.Expressions.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Expressions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq/4.2.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Collections.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Expressions/4.2.0.0/netcoreapp/System.ObjectModel.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.ObjectModel.pdb". | |
68>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll". | |
System.Linq.Parallel -> /home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Linq.Parallel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Parallel/4.0.3.0/netcoreapp/System.Linq.Parallel.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Linq.Parallel.dll". | |
68>Done Building Project "/home/matell/git/corefx/src/System.Linq.Parallel/ref/System.Linq.Parallel.csproj" (Build target(s)). | |
102>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll.oss_signed" because "AlwaysCreate" was specified. | |
65>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.UnmanagedMemoryStream.cs /home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
102>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Globalization.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Globalization/4.1.0.0/netcoreapp/System.Globalization.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Globalization.pdb". | |
26>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll". | |
System.ComponentModel.EventBasedAsync -> /home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.pdb" to "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.ComponentModel.EventBasedAsync.dll". | |
102>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll". | |
System.Resources.ResourceManager -> /home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Resources.ResourceManager.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Resources.ResourceManager.dll". | |
26>Done Building Project "/home/matell/git/corefx/src/System.ComponentModel.EventBasedAsync/ref/System.ComponentModel.EventBasedAsync.csproj" (Build target(s)). | |
102>Done Building Project "/home/matell/git/corefx/src/System.Resources.ResourceManager/ref/System.Resources.ResourceManager.csproj" (default targets). | |
96>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll". | |
System.Reflection.Emit -> /home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.pdb" to "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection.Emit/4.0.3.0/netcoreapp/System.Reflection.Emit.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Reflection.Emit.dll". | |
96>Done Building Project "/home/matell/git/corefx/src/System.Reflection.Emit/ref/System.Reflection.Emit.csproj" (Build target(s)). | |
144>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll". | |
System.Threading.Thread -> /home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.pdb". | |
121>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Principal.dll". | |
144>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.Thread.dll". | |
121>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.IO.pdb". | |
144>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Thread/4.1.0.0/netcoreapp/System.Threading.Thread.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.Thread.dll". | |
121>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Principal.pdb". | |
117>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll". | |
System.Runtime.WindowsRuntime -> /home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.pdb". | |
144>Done Building Project "/home/matell/git/corefx/src/System.Threading.Thread/ref/System.Threading.Thread.csproj" (Build target(s)). | |
117>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.WindowsRuntime.dll". | |
117>Done Building Project "/home/matell/git/corefx/src/System.Runtime.WindowsRuntime/ref/System.Runtime.WindowsRuntime.csproj" (default targets). | |
112>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Runtime.Serialization.Formatters.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
121>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
112>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
121>CopyFilesToOutputDirectory: | |
System.Security.Cryptography.Algorithms -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Security.Cryptography.Algorithms.dll". | |
101>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Resources.Reader.cs /home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
121>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Algorithms/ref/System.Security.Cryptography.Algorithms.csproj" (Build target(s)). | |
150>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Web.HttpUtility.cs /home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
65>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll". | |
System.IO.UnmanagedMemoryStream -> /home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.UnmanagedMemoryStream.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.UnmanagedMemoryStream.dll". | |
65>Done Building Project "/home/matell/git/corefx/src/System.IO.UnmanagedMemoryStream/ref/System.IO.UnmanagedMemoryStream.csproj" (default targets). | |
69>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll". | |
System.Linq.Queryable -> /home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.pdb" to "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Linq.Queryable.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Linq.Queryable/4.0.3.0/netcoreapp/System.Linq.Queryable.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Linq.Queryable.dll". | |
69>Done Building Project "/home/matell/git/corefx/src/System.Linq.Queryable/ref/System.Linq.Queryable.csproj" (Build target(s)). | |
86>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Net.WebHeaderCollection.cs /home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
129>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Security.Cryptography.X509Certificates.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
123>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Csp.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
101>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.ResourceManager.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Resources.ResourceManager.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.ResourceManager.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.ResourceManager/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll". | |
System.Resources.Reader -> /home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.pdb" to "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Resources.Reader.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Resources.Reader/4.1.0.0/netcoreapp/System.Resources.Reader.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Resources.Reader.dll". | |
101>Done Building Project "/home/matell/git/corefx/src/System.Resources.Reader/ref/System.Resources.Reader.csproj" (Build target(s)). | |
150>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Security.Principal.pdb". | |
112>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll". | |
System.Runtime.Serialization.Formatters -> /home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Serialization.Formatters.dll". | |
112>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Serialization.Formatters/ref/System.Runtime.Serialization.Formatters.csproj" (default targets). | |
122>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Cng.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
148>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Transactions.cs /home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
86>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll". | |
System.Net.WebHeaderCollection -> /home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.WebHeaderCollection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebHeaderCollection/4.1.0.0/netcoreapp/System.Net.WebHeaderCollection.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.WebHeaderCollection.dll". | |
86>Done Building Project "/home/matell/git/corefx/src/System.Net.WebHeaderCollection/ref/System.Net.WebHeaderCollection.csproj" (default targets). | |
61>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/disabledAnalyzers.config System.IO.MemoryMappedFiles.cs /home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
123>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
129>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
System.Security.Cryptography.X509Certificates -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Security.Cryptography.X509Certificates.dll". | |
129>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.X509Certificates/ref/System.Security.Cryptography.X509Certificates.csproj" (default targets). | |
123>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll". | |
System.Security.Cryptography.Csp -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Csp/4.1.0.0/netcoreapp/System.Security.Cryptography.Csp.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Csp.dll". | |
123>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Csp/ref/System.Security.Cryptography.Csp.csproj" (Build target(s)). | |
116>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/disabledAnalyzers.config System.Runtime.WindowsRuntime.UI.Xaml.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
122>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll". | |
System.Security.Cryptography.Cng -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Cng/4.3.0.0/netcoreapp/System.Security.Cryptography.Cng.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Cng.dll". | |
122>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Cng/ref/System.Security.Cryptography.Cng.csproj" (Build target(s)). | |
150>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll". | |
System.Web.HttpUtility -> /home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.pdb" to "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Web.HttpUtility/4.0.0.0/netcoreapp/System.Web.HttpUtility.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Web.HttpUtility.dll". | |
150>Done Building Project "/home/matell/git/corefx/src/System.Web.HttpUtility/ref/System.Web.HttpUtility.csproj" (Build target(s)). | |
148>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Serialization.Formatters.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Serialization.Formatters.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Serialization.Formatters.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Formatters/4.0.2.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll". | |
System.Transactions -> /home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.pdb" to "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.pdb". | |
61>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.FileSystem.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.FileSystem.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.UnmanagedMemoryStream/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.UnmanagedMemoryStream.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll". | |
System.IO.MemoryMappedFiles -> /home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.pdb" to "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.IO.MemoryMappedFiles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.MemoryMappedFiles/4.1.0.0/netcoreapp/System.IO.MemoryMappedFiles.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.IO.MemoryMappedFiles.dll". | |
61>Done Building Project "/home/matell/git/corefx/src/System.IO.MemoryMappedFiles/ref/System.IO.MemoryMappedFiles.csproj" (Build target(s)). | |
148>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Transactions/4.0.0.0/netcoreapp/System.Transactions.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Transactions.dll". | |
148>Done Building Project "/home/matell/git/corefx/src/System.Transactions/ref/System.Transactions.csproj" (default targets). | |
43>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.TraceSource.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
145>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /unsafe+ /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Threading.ThreadPool.cs /home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
116>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/Windows.winmd" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/Windows.winmd". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.WindowsRuntime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime/4.0.13.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll". | |
System.Runtime.WindowsRuntime.UI.Xaml -> /home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.WindowsRuntime.UI.Xaml/4.0.3.0/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.WindowsRuntime.UI.Xaml.dll". | |
116>Done Building Project "/home/matell/git/corefx/src/System.Runtime.WindowsRuntime.UI.Xaml/ref/System.Runtime.WindowsRuntime.UI.Xaml.csproj" (Build target(s)). | |
80>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Net.Primitives.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
39>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.Process.cs System.Diagnostics.Process.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
145>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.Overlapped.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Overlapped/4.1.0.0/netcoreapp/System.Threading.Overlapped.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.Overlapped.pdb". | |
43>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll.oss_signed" because "AlwaysCreate" was specified. | |
145>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll". | |
43>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
145>CopyFilesToOutputDirectory: | |
System.Threading.ThreadPool -> /home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll | |
43>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Runtime.dll". | |
145>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.pdb" to "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.pdb". | |
43>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
145>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Threading.ThreadPool.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.ThreadPool/4.1.0.0/netcoreapp/System.Threading.ThreadPool.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Threading.ThreadPool.dll". | |
43>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll". | |
System.Diagnostics.TraceSource -> /home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.pdb". | |
145>Done Building Project "/home/matell/git/corefx/src/System.Threading.ThreadPool/ref/System.Threading.ThreadPool.csproj" (Build target(s)). | |
43>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.TraceSource.dll". | |
43>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.TraceSource/ref/System.Diagnostics.TraceSource.csproj" (default targets). | |
125>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.OpenSsl.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
39>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.FileVersionInfo.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.FileVersionInfo/4.0.2.0/netcoreapp/System.Diagnostics.FileVersionInfo.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.FileVersionInfo.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections/4.1.0.0/netcoreapp/System.Collections.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Collections.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.ComponentModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll". | |
System.Diagnostics.Process -> /home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.Process.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Process/4.2.0.0/netcoreapp/System.Diagnostics.Process.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Diagnostics.Process.dll". | |
39>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.Process/ref/System.Diagnostics.Process.csproj" (Build target(s)). | |
80>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.InteropServices/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
System.Net.Primitives -> /home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.Primitives.dll". | |
80>Done Building Project "/home/matell/git/corefx/src/System.Net.Primitives/ref/System.Net.Primitives.csproj" (default targets). | |
74>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Net.Http.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
151>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Xml.ReaderWriter.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
125>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Primitives/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Algorithms/4.3.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll". | |
System.Security.Cryptography.OpenSsl -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.OpenSsl/4.1.0.0/netcoreapp/System.Security.Cryptography.OpenSsl.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.OpenSsl.dll". | |
125>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.OpenSsl/ref/System.Security.Cryptography.OpenSsl.csproj" (Build target(s)). | |
126>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Security.Cryptography.Pkcs.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
74>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
89>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Net.WebSockets.cs /home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
151>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.Debug/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
System.Xml.ReaderWriter -> /home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Xml.ReaderWriter.dll". | |
151>Done Building Project "/home/matell/git/corefx/src/System.Xml.ReaderWriter/ref/System.Xml.ReaderWriter.csproj" (default targets). | |
157>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Xml.XPath.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
115>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/disabledAnalyzers.config System.Runtime.Serialization.Xml.cs System.Runtime.Serialization.Xml.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
126>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Encoding/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll". | |
System.Security.Cryptography.Pkcs -> /home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.pdb" to "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.Pkcs/4.0.2.0/netcoreapp/System.Security.Cryptography.Pkcs.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Security.Cryptography.Pkcs.dll". | |
126>Done Building Project "/home/matell/git/corefx/src/System.Security.Cryptography.Pkcs/ref/System.Security.Cryptography.Pkcs.csproj" (Build target(s)). | |
153>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Xml.XmlDocument.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
89>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll". | |
System.Net.WebSockets -> /home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.WebSockets.dll". | |
89>Done Building Project "/home/matell/git/corefx/src/System.Net.WebSockets/ref/System.Net.WebSockets.csproj" (default targets). | |
74>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll". | |
System.Net.Http -> /home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.Http.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.Http.dll". | |
74>Done Building Project "/home/matell/git/corefx/src/System.Net.Http/ref/System.Net.Http.csproj" (default targets). | |
77>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Net.NameResolution.cs /home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
157>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
115>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll.oss_signed" because "AlwaysCreate" was specified. | |
153>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll.oss_signed" because "AlwaysCreate" was specified. | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Collections.Specialized.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.IO.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Text.Encoding.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Extensions.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Diagnostics.Debug.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Net.Primitives.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.InteropServices.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.pdb". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Primitives/4.2.0.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Text.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Extensions.pdb". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
153>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
115>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
157>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll". | |
System.Xml.XPath -> /home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll | |
153>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll". | |
System.Xml.XmlDocument -> /home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll | |
157>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.pdb". | |
153>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb". | |
157>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XPath.dll". | |
153>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XmlDocument.dll". | |
115>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll". | |
System.Runtime.Serialization.Xml -> /home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Serialization.Xml.dll". | |
157>Done Building Project "/home/matell/git/corefx/src/System.Xml.XPath/ref/System.Xml.XPath.csproj" (default targets). | |
153>Done Building Project "/home/matell/git/corefx/src/System.Xml.XmlDocument/ref/System.Xml.XmlDocument.csproj" (Build target(s)). | |
115>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Serialization.Xml/ref/System.Runtime.Serialization.Xml.csproj" (default targets). | |
152>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Xml.XDocument.cs System.Xml.XDocument.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
154>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Xml.XmlSerializer.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
113>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll /reference:/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/disabledAnalyzers.config System.Runtime.Serialization.Json.cs /home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
77>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll". | |
System.Net.NameResolution -> /home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.NameResolution.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.NameResolution/4.1.0.0/netcoreapp/System.Net.NameResolution.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.NameResolution.dll". | |
77>Done Building Project "/home/matell/git/corefx/src/System.Net.NameResolution/ref/System.Net.NameResolution.csproj" (Build target(s)). | |
84>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Net.Sockets.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
152>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll". | |
System.Xml.XDocument -> /home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XDocument.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Xml.XDocument.dll". | |
152>Done Building Project "/home/matell/git/corefx/src/System.Xml.XDocument/ref/System.Xml.XDocument.csproj" (default targets). | |
154>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Reflection.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.Specialized/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Reflection/4.2.0.0/netcoreapp/System.Reflection.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Reflection.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
113>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll.oss_signed" because "AlwaysCreate" was specified. | |
154>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll". | |
System.Xml.XmlSerializer -> /home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll | |
113>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Xml.dll". | |
154>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.pdb". | |
113>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Text.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Text.Encoding/4.1.0.0/netcoreapp/System.Text.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Text.Encoding.pdb". | |
154>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlSerializer/4.1.0.0/netcoreapp/System.Xml.XmlSerializer.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XmlSerializer.dll". | |
113>_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Xml.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Xml.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Xml/4.1.3.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
154>Done Building Project "/home/matell/git/corefx/src/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.csproj" (Build target(s)). | |
113>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll". | |
System.Runtime.Serialization.Json -> /home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.pdb" to "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Serialization.Json/4.0.4.0/netcoreapp/System.Runtime.Serialization.Json.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Runtime.Serialization.Json.dll". | |
155>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Xml.XPath.XDocument.cs System.Xml.XPath.XDocument.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
156>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll /reference:/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Xml.XPath.XmlDocument.Manual.cs /home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
113>Done Building Project "/home/matell/git/corefx/src/System.Runtime.Serialization.Json/ref/System.Runtime.Serialization.Json.csproj" (Build target(s)). | |
84>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.IO.FileSystem.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO.FileSystem.Primitives/4.1.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.IO.FileSystem.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll". | |
System.Net.Sockets -> /home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.Sockets.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Sockets/4.2.0.0/netcoreapp/System.Net.Sockets.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.Sockets.dll". | |
84>Done Building Project "/home/matell/git/corefx/src/System.Net.Sockets/ref/System.Net.Sockets.csproj" (Build target(s)). | |
87>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/disabledAnalyzers.config System.Net.WebProxy.cs /home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
41>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Diagnostics.TextWriterTraceListener.cs /home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
155>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XDocument.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
156>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XmlDocument.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Xml.XPath.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Xml.ReaderWriter.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.ReaderWriter.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Diagnostics.Debug.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Diagnostics.Debug.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.ReaderWriter/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
155>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll". | |
System.Xml.XPath.XDocument -> /home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XDocument.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XPath.XDocument.dll". | |
155>Done Building Project "/home/matell/git/corefx/src/System.Xml.XPath.XDocument/ref/System.Xml.XPath.XDocument.csproj" (Build target(s)). | |
41>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TraceSource.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TraceSource/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll". | |
System.Diagnostics.TextWriterTraceListener -> /home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.pdb" to "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Diagnostics.TextWriterTraceListener/4.1.0.0/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Diagnostics.TextWriterTraceListener.dll". | |
41>Done Building Project "/home/matell/git/corefx/src/System.Diagnostics.TextWriterTraceListener/ref/System.Diagnostics.TextWriterTraceListener.csproj" (Build target(s)). | |
87>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Security.Principal.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll". | |
System.Net.WebProxy -> /home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebProxy/4.0.0.0/netcoreapp/System.Net.WebProxy.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.WebProxy.dll". | |
156>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll". | |
87>Done Building Project "/home/matell/git/corefx/src/System.Net.WebProxy/ref/System.Net.WebProxy.csproj" (Build target(s)). | |
156>CopyFilesToOutputDirectory: | |
System.Xml.XPath.XmlDocument -> /home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.pdb" to "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.pdb". | |
82>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;netcoreapp11;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll System.Net.Security.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
156>BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Xml.XPath.XmlDocument/4.1.0.0/netcoreapp/System.Xml.XPath.XmlDocument.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Xml.XPath.XmlDocument.dll". | |
82>CoreCompile: | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
156>Done Building Project "/home/matell/git/corefx/src/System.Xml.XPath.XmlDocument/ref/System.Xml.XPath.XmlDocument.csproj" (Build target(s)). | |
82>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.Handles.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.IO.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Handles/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.Handles.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Collections.NonGeneric/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll". | |
System.Net.Security -> /home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.Security.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Security/4.1.0.0/netcoreapp/System.Net.Security.dll" to "/home/matell/git/corefx/bin/netcoreapp/pkg/ref/System.Net.Security.dll". | |
82>Done Building Project "/home/matell/git/corefx/src/System.Net.Security/ref/System.Net.Security.csproj" (default targets). | |
78>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/disabledAnalyzers.config System.Net.NetworkInformation.cs /home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/Microsoft.Win32.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll". | |
System.Net.NetworkInformation -> /home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.NetworkInformation/4.2.0.0/netcoreapp/System.Net.NetworkInformation.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.NetworkInformation.dll". | |
78>Done Building Project "/home/matell/git/corefx/src/System.Net.NetworkInformation/ref/System.Net.NetworkInformation.csproj" (Build target(s)). | |
79>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll /reference:/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Net.Ping.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Threading.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Threading.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.EventBasedAsync.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.ComponentModel.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.Threading.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Threading.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.EventBasedAsync/4.1.0.0/netcoreapp/System.ComponentModel.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.ComponentModel.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.ComponentModel.Primitives/4.2.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
88>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Net.WebSockets.Client.cs /home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
120>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Security.Claims.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Security.Claims/4.1.0.0/netcoreapp/disabledAnalyzers.config System.Security.Claims.cs /home/matell/git/corefx/bin/obj/ref/System.Security.Claims/4.1.0.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
88>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Threading.Tasks.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.InteropServices.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Collections.NonGeneric.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Threading.Tasks.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.InteropServices.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Algorithms.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Encoding.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Cryptography.Primitives.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Collections.NonGeneric.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Collections.NonGeneric.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Collections.Specialized.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Security.Principal.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Security.Principal.pdb". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Runtime.Extensions.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Runtime.Extensions.pdb". | |
CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll". | |
System.Net.WebSockets.Client -> /home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets.Client/4.1.0.0/netcoreapp/System.Net.WebSockets.Client.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.WebSockets.Client.dll". | |
88>Done Building Project "/home/matell/git/corefx/src/System.Net.WebSockets.Client/ref/System.Net.WebSockets.Client.csproj" (Build target(s)). | |
79>CopyFilesToOutputDirectory: | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll". | |
System.Net.Ping -> /home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll | |
Copying file from "/home/matell/git/corefx/bin/obj/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.pdb" to "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.pdb". | |
BinPlaceReferenceAssembly: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.Ping/4.1.0.0/netcoreapp/System.Net.Ping.dll" to "/home/matell/git/corefx/bin/ref/netcoreapp/System.Net.Ping.dll". | |
79>Done Building Project "/home/matell/git/corefx/src/System.Net.Ping/ref/System.Net.Ping.csproj" (Build target(s)). | |
73>CoreCompile: | |
/home/matell/git/corefx/Tools/dotnetcli/dotnet /home/matell/git/corefx/Tools/csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /warn:4 /define:DEBUG;TRACE;DEBUGRESOURCES;SIGNED /reference:/home/matell/git/corefx/bin/ref/System.Net.Http/4.2.0.0/netcoreapp/System.Net.Http.dll /reference:/home/matell/git/corefx/bin/ref/System.Net.Primitives/4.1.0.0/netcoreapp/System.Net.Primitives.dll /reference:/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll /reference:/home/matell/git/corefx/bin/ref/System.Security.Cryptography.X509Certificates/4.2.0.0/netcoreapp/System.Security.Cryptography.X509Certificates.dll /reference:/home/matell/git/corefx/bin/ref/System.Threading.Tasks/4.1.0.0/netcoreapp/System.Threading.Tasks.dll /debug+ /debug:Portable /delaysign+ /keyfile:/home/matell/git/corefx/Tools/MSFT.snk /optimize- /out:/home/matell/git/corefx/bin/obj/ref/System.Net.Http.WinHttpHandler/4.0.2.0/netcoreapp/System.Net.Http.WinHttpHandler.dll /ruleset:/home/matell/git/corefx/CodeAnalysis.ruleset /target:library /warnaserror+ /utf8output /analyzer:/home/matell/git/corefx/Tools/analyzers/Microsoft.DotNet.CodeAnalysis.dll /additionalfile:/home/matell/git/corefx/bin/obj/ref/System.Net.Http.WinHttpHandler/4.0.2.0/netcoreapp/disabledAnalyzers.config System.Net.Http.WinHttpHandler.cs /home/matell/git/corefx/bin/obj/ref/System.Net.Http.WinHttpHandler/4.0.2.0/netcoreapp/_AssemblyInfo.cs @/home/matell/git/corefx/Tools/checksum.rsp | |
Using shared compilation with compiler from directory: /home/matell/git/corefx/Tools/dotnetcli | |
Shared compilation failed; falling back to tool: /home/matell/git/corefx/Tools/dotnetcli/dotnet | |
120>OpenSourceSign: | |
Creating "/home/matell/git/corefx/bin/obj/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Security.Claims.dll.oss_signed" because "AlwaysCreate" was specified. | |
_CopyFilesMarkedCopyLocal: | |
Copying file from "/home/matell/git/corefx/bin/ref/System.IO/4.2.0.0/netcoreapp/System.IO.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.IO.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.WebSockets.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Net.WebSockets.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime/4.2.0.0/netcoreapp/System.Runtime.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Runtime.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Runtime.Extensions/4.2.0.0/netcoreapp/System.Runtime.Extensions.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Runtime.Extensions.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Security.Principal/4.1.0.0/netcoreapp/System.Security.Principal.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Security.Principal.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Collections.Specialized.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Collections.Specialized.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/System.Net.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/System.Net.Primitives.dll". | |
Copying file from "/home/matell/git/corefx/bin/ref/System.Net.WebSockets/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll" to "/home/matell/git/corefx/bin/ref/System.Security.Claims/4.1.0.0/netcoreapp/Microsoft.Win32.Primitives.dll". |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment