-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug - Exception when running dotnet publish within a “build” Docker Container #2153
Comments
This is the important stack:
@stephentoub Do you understand under what circumstances Console will throw this on Unix? |
Interesting. This error suggests that the write syscall returned EWOULDBLOCK. To my knowledge that should only happen if the file descriptor is for a socket and the socket has been marked as non-blocking (and the write would block). Is it possible stdout for this process is somehow a non-blocking socket? Maybe whatever is creating this process is using socketpair to create a set of connected sockets for redirecting the output (and using SOCK_NONBLOCK with that for some reason)? |
Hi,
Hope it helps! |
…dout errors when compiling from the Docker Linux "build containers" when doing the CLI build. Related bug: dotnet/msbuild#2153 (comment)
…dout errors when compiling from the Docker Linux "build containers" when doing the CLI build. Related bug: dotnet/msbuild#2153 (comment)
I am seeing the same under Travis C: https://travis-ci.org/tugberkugurlu/AspNetCore.Identity.MongoDB/builds/273703356 |
We are having the same issue when running our build on Linux using Jenkins. It doesn't happen every time but does happen frequently:
Note that, when our CI fails, it's during a |
We're getting this on Travis as well. Any news on this issue? |
(Talked about this with David Kean, he told me to submit this bug)
I think there's a bug in a MSBuild environment, using dotnet publish, when running within a “build” Docker Container.
Building locally on the PC, either with VS 2017 or with the dotnet CLI on local windows works ok, but when building within a "build container" using a CI docker-compose.ci.build.yml we’re getting this issue which is a hard stopper.
Here’s the issue:
When running "Docker-compose -f docker-compose.ci.build.yml up", as we explain here:
https://github.com/dotnet-architecture/eShopOnContainers/wiki/03.-Setting-the-eShopOnContainers-solution-up-in-a-Windows-CLI-environment-(dotnet-CLI,-Docker-CLI-and-VS-Code)
This is the docker-compose.ci.build.yml we’re executing when building the bits within the “build” container:
https://github.com/dotnet-architecture/eShopOnContainers/blob/dev/docker-compose.ci.build.yml
And this is the command using the dotnet CLI to build the bits:
command: /bin/bash -c "pushd ./src/Web/WebSPA && npm rebuild node-sass && popd && dotnet restore ./eShopOnContainers-ServicesAndWebApps.sln && dotnet publish ./eShopOnContainers-ServicesAndWebApps.sln -c Release -o ./obj/Docker/publish"
I'm getting an error, eventually, from the build container, when it is running “dotnet publish”:
error MSB4017: The build stopped unexpectedly because of an unexpected logger failure. System.IO.IOException The process cannot access the file because it is being used by another process.
However, when building from Visual Studio 2017.2, I have no issues and it builds and deploys right.
Looks like a strange concurrency issue within the build container. Any idea on how to solve this or any workaround for it?
But the interesting thing is that it is happening with a Logger used by MSBuild? : Microsoft.Build.Exceptions.InternalLoggerException
This exception is used to wrap an unhandled exception from a logger. This exception aborts the build, and it can only be thrown by the MSBuild engine.
Microsoft.Build.Exceptions.InternalLoggerException: The build stopped unexpectedly because of an unexpected logger failure. ---> System.IO.IOException: The process cannot access the file because it is being used by another process.
In any case, since the issue can be reproduced with eShopOnContainer in any machine with Docker for Windows and .NET Core 1.1.2 installed, who in the MSBUILD team should repro this issue so you try to identify the issue or bug?
Here's the full output:
PS D:\GITREPOS\eShopOnContainers-dev> Docker-compose -f docker-compose.ci.build.yml up
Pulling ci-build (microsoft/aspnetcore-build:1.1.2)...
1.1.2: Pulling from microsoft/aspnetcore-build
10a267c67f42: Already exists
fb5937da9414: Pull complete
9021b2326a1e: Pull complete
5df21d865eab: Pull complete
e4db626d1d21: Pull complete
87b3f796757a: Pull complete
629d4f39b75b: Pull complete
21c29d072c6e: Pull complete
39d6d7136f1b: Pull complete
74021b8a9867: Pull complete
Digest: sha256:9251d6953ca2fccfee1968e000c78d90e0ce629821246166b2d353fd884d62bf
Status: Downloaded newer image for microsoft/aspnetcore-build:1.1.2
Creating eshoponcontainersdev_ci-build_1
Attaching to eshoponcontainersdev_ci-build_1
ci-build_1 | /src/src/Web/WebSPA /src
ci-build_1 |
ci-build_1 | > [email protected] install /src/src/Web/WebSPA/node_modules/node-sass
ci-build_1 | > node scripts/install.js
ci-build_1 |
ci-build_1 | Downloading binary from https://github.com/sass/node-sass/releases/download/v4.5.3/linux-x64-48_binding.node
ci-build_1 | Download complete
ci-build_1 | Binary saved to /src/src/Web/WebSPA/node_modules/node-sass/vendor/linux-x64-48/binding.node
ci-build_1 | Caching binary to /root/.npm/node-sass/4.5.3/linux-x64-48_binding.node
ci-build_1 |
ci-build_1 | > [email protected] postinstall /src/src/Web/WebSPA/node_modules/node-sass
ci-build_1 | > node scripts/build.js
ci-build_1 |
ci-build_1 | Binary found at /src/src/Web/WebSPA/node_modules/node-sass/vendor/linux-x64-48/binding.node
ci-build_1 | Testing binary
ci-build_1 | Binary is fine
ci-build_1 | [email protected] /src/src/Web/WebSPA/node_modules/node-sass
ci-build_1 | /src
ci-build_1 | /src/docker-compose.dcproj : error MSB4019: The imported project "/usr/share/dotnet/sdk/1.0.4/Sdks/Microsoft.Docker.Sdk/Sdk/Sdk.props" was not found. Confirm that the path in the declarat
ion is correct, and that the file exists on disk.
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/EventBus/EventBus/EventBus.csproj...
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj...
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj...
ci-build_1 | Installing System.Runtime.Serialization.Formatters 4.3.0.
ci-build_1 | Installing Newtonsoft.Json 10.0.2.
ci-build_1 | Installing RabbitMQ.Client 4.1.3.
ci-build_1 | Installing Polly 5.1.0.
ci-build_1 | Installing System.ValueTuple 4.3.1.
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/EventBus/EventBus/obj/EventBus.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/obj/EventBusRabbitMQ.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/EventBus/EventBus/obj/project.assets.json
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/obj/project.assets.json
ci-build_1 | Restore completed in 2.7 sec for /src/src/BuildingBlocks/EventBus/EventBus/EventBus.csproj.
ci-build_1 | Restore completed in 2.7 sec for /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj.
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj...
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/Microsoft.AspNetCore.HealthChecks.csproj...
ci-build_1 | Installing System.Diagnostics.TextWriterTraceListener 4.0.0.
ci-build_1 | Installing System.ComponentModel.EventBasedAsync 4.0.11.
ci-build_1 | Installing System.Diagnostics.TraceSource 4.0.0.
ci-build_1 | Installing System.Xml.XPath.XmlDocument 4.0.1.
ci-build_1 | Installing xunit.abstractions 2.0.1.
ci-build_1 | Installing Microsoft.TestPlatform.ObjectModel 15.0.0.
ci-build_1 | Installing xunit.extensibility.core 2.2.0.
ci-build_1 | Installing xunit.extensibility.execution 2.2.0.
ci-build_1 | Installing Microsoft.TestPlatform.TestHost 15.0.0.
ci-build_1 | Installing xunit.core 2.2.0.
ci-build_1 | Installing xunit.assert 2.2.0.
ci-build_1 | Installing Microsoft.DotNet.PlatformAbstractions 1.1.0.
ci-build_1 | Installing Microsoft.Extensions.DependencyModel 1.1.0.
ci-build_1 | Installing Microsoft.TestPlatform.ObjectModel 11.0.0.
ci-build_1 | Installing Microsoft.NET.Test.Sdk 15.0.0.
ci-build_1 | Installing xunit 2.2.0.
ci-build_1 | Installing xunit.runner.visualstudio 2.2.0.
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/obj/Microsoft.AspNetCore.HealthChecks.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/obj/project.assets.json
ci-build_1 | Restore completed in 594.82 ms for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/Microsoft.AspNetCore.HealthChecks.csproj.
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/Microsoft.Extensions.HealthChecks.SqlServer.csproj...
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/obj/Microsoft.Extensions.HealthChecks.SqlServer.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/obj/project.assets.json
ci-build_1 | Restore completed in 266.12 ms for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/Microsoft.Extensions.HealthChecks.SqlServer.csproj.
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/Microsoft.Extensions.HealthChecks.csproj...
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/EventBus/EventBus.Tests/obj/EventBus.Tests.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/EventBus/EventBus.Tests/obj/EventBus.Tests.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/EventBus/EventBus.Tests/obj/project.assets.json
ci-build_1 | Restore completed in 4.23 sec for /src/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj.
ci-build_1 | Restoring packages for /src/src/BuildingBlocks/Resilience/Resilience.Http/Resilience.Http.csproj...
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/obj/Microsoft.Extensions.HealthChecks.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/obj/project.assets.json
ci-build_1 | Restore completed in 195.01 ms for /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/Microsoft.Extensions.HealthChecks.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Basket/Basket.API/Basket.API.csproj...
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/Resilience/Resilience.Http/obj/Resilience.Http.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/Resilience/Resilience.Http/obj/project.assets.json
ci-build_1 | Restore completed in 204.96 ms for /src/src/BuildingBlocks/Resilience/Resilience.Http/Resilience.Http.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Catalog/Catalog.API/Catalog.API.csproj...
ci-build_1 | Installing Microsoft.EntityFrameworkCore.SqlServer.Design 1.1.2.
ci-build_1 | Generating MSBuild file /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/obj/IntegrationEventLogEF.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/obj/project.assets.json
ci-build_1 | Restore completed in 3.87 sec for /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Identity/Identity.API/Identity.API.csproj...
ci-build_1 | Installing System.Runtime.Handles 4.0.0.
ci-build_1 | Installing System.Threading.Overlapped 4.0.0.
ci-build_1 | Installing System.Reflection.Primitives 4.0.0.
ci-build_1 | Installing System.Runtime.InteropServices 4.0.20.
ci-build_1 | Installing System.IO.FileSystem 4.0.0.
ci-build_1 | Installing System.Text.Encoding.Extensions 4.0.10.
ci-build_1 | Installing System.Text.RegularExpressions 4.0.10.
ci-build_1 | Installing System.Threading.Tasks 4.0.10.
ci-build_1 | Installing System.IO.FileSystem.Primitives 4.0.0.
ci-build_1 | Installing System.Text.Encoding 4.0.10.
ci-build_1 | Installing System.Reflection 4.0.0.
ci-build_1 | Installing System.Private.Uri 4.0.0.
ci-build_1 | Installing System.Threading.Tasks 4.0.0.
ci-build_1 | Installing System.Text.Encoding 4.0.0.
ci-build_1 | Installing StackExchange.Redis 1.2.3.
ci-build_1 | Installing Microsoft.Extensions.Localization.Abstractions 1.0.0.
ci-build_1 | Installing IdentityServer4.AccessTokenValidation 1.2.0.
ci-build_1 | Installing Microsoft.AspNetCore.WebUtilities 1.0.0.
ci-build_1 | Installing Swashbuckle.AspNetCore 1.0.0.
ci-build_1 | Installing IdentityModel.AspNetCore.ScopeValidation 1.1.0.
ci-build_1 | Installing System.IdentityModel.Tokens.Jwt 5.1.3.
ci-build_1 | Installing Microsoft.AspNetCore.Authentication.JwtBearer 1.1.1.
ci-build_1 | Installing IdentityModel.AspNetCore.OAuth2Introspection 2.1.0.
ci-build_1 | Installing IdentityModel 2.8.0.
ci-build_1 | Installing Swashbuckle.AspNetCore.Swagger 1.0.0.
ci-build_1 | Installing Swashbuckle.AspNetCore.SwaggerGen 1.0.0.
ci-build_1 | Installing Swashbuckle.AspNetCore.SwaggerUI 1.0.0.
ci-build_1 | Installing Microsoft.IdentityModel.Tokens 5.1.3.
ci-build_1 | Installing Microsoft.AspNetCore.Authentication 1.1.1.
ci-build_1 | Installing System.ValueTuple 4.3.0.
ci-build_1 | Installing System.Net.Http 4.3.1.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Formatters.Json 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Core 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.ApiExplorer 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.DataAnnotations 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.FileProviders.Embedded 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.StaticFiles 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Routing 1.0.0.
ci-build_1 | Installing System.Xml.XPath 4.0.0.
ci-build_1 | Installing Microsoft.IdentityModel.Logging 1.1.3.
ci-build_1 | Installing Microsoft.Extensions.WebEncoders 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Http.Extensions 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Http 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.DataProtection 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Abstractions 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Authorization 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Http 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.Localization 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.WebEncoders 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Routing.Abstractions 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.Options 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.ObjectPool 1.0.0.
ci-build_1 | Installing System.Collections 4.0.10.
ci-build_1 | Installing System.Diagnostics.Debug 4.0.10.
ci-build_1 | Installing System.Globalization 4.0.10.
ci-build_1 | Installing System.Runtime.Extensions 4.0.10.
ci-build_1 | Installing System.IO 4.0.10.
ci-build_1 | Installing System.Runtime 4.0.20.
ci-build_1 | Installing System.Resources.ResourceManager 4.0.0.
ci-build_1 | Installing System.Xml.ReaderWriter 4.0.10.
ci-build_1 | Installing Microsoft.Net.Http.Headers 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.WebUtilities 1.1.1.
ci-build_1 | Installing Microsoft.Extensions.ObjectPool 1.1.0.
ci-build_1 | Installing Microsoft.AspNetCore.DataProtection.Abstractions 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Cryptography.Internal 1.1.1.
ci-build_1 | Installing System.Threading 4.0.10.
ci-build_1 | Generating MSBuild file /src/src/Services/Basket/Basket.API/obj/Basket.API.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Basket/Basket.API/obj/project.assets.json
ci-build_1 | Restore completed in 7.5 sec for /src/src/Services/Basket/Basket.API/Basket.API.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Ordering/Ordering.API/Ordering.API.csproj...
ci-build_1 | Generating MSBuild file /src/src/Services/Catalog/Catalog.API/obj/Catalog.API.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/Services/Catalog/Catalog.API/obj/Catalog.API.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Catalog/Catalog.API/obj/project.assets.json
ci-build_1 | Restore completed in 7.72 sec for /src/src/Services/Catalog/Catalog.API/Catalog.API.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj...
ci-build_1 | Installing MediatR.Extensions.Microsoft.DependencyInjection 2.0.0.
ci-build_1 | Installing MediatR 3.0.1.
ci-build_1 | Generating MSBuild file /src/src/Services/Ordering/Ordering.Domain/obj/Ordering.Domain.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Ordering/Ordering.Domain/obj/project.assets.json
ci-build_1 | Restore completed in 747.66 ms for /src/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj...
ci-build_1 | Generating MSBuild file /src/src/Services/Ordering/Ordering.Infrastructure/obj/Ordering.Infrastructure.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Ordering/Ordering.Infrastructure/obj/project.assets.json
ci-build_1 | Restore completed in 561.51 ms for /src/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebMVC/WebMVC.csproj...
ci-build_1 | Installing runtime.win7-x86.runtime.native.System.Data.SqlClient.sni 4.0.1.
ci-build_1 | Installing runtime.win7-x64.runtime.native.System.Data.SqlClient.sni 4.0.1.
ci-build_1 | Installing runtime.native.System.Data.SqlClient.sni 4.0.0.
ci-build_1 | Installing System.IO.Pipes 4.0.0.
ci-build_1 | Installing System.Data.SqlClient 4.1.0.
ci-build_1 | Installing FluentValidation 6.4.0.
ci-build_1 | Installing Autofac 4.0.0.
ci-build_1 | Installing Dapper 1.50.2.
ci-build_1 | Installing FluentValidation.AspNetCore 6.4.0.
ci-build_1 | Installing Autofac.Extensions.DependencyInjection 4.1.0.
ci-build_1 | Installing FluentValidation.MVC6 6.4.0.
ci-build_1 | Installing Microsoft.Composition 1.0.27.
ci-build_1 | Installing Microsoft.CodeAnalysis.Workspaces.Common 1.3.0.
ci-build_1 | Installing Microsoft.CodeAnalysis.CSharp.Workspaces 1.3.0.
ci-build_1 | Installing NuGet.Frameworks 3.5.0.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Utils 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Templating 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Core 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore 1.1.1.
ci-build_1 | Installing Microsoft.Extensions.CommandLineUtils 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Cryptography.KeyDerivation 1.1.1.
ci-build_1 | Installing IdentityModel 2.5.1.
ci-build_1 | Installing Microsoft.AspNetCore.Cors 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGenerators.Mvc 1.1.1.
ci-build_1 | Installing Microsoft.AspNetCore.Identity 1.1.1.
ci-build_1 | Installing IdentityServer4 1.3.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Design 1.1.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.BrowserLink.Loader 14.1.0.
ci-build_1 | Installing IdentityServer4.EntityFramework 1.0.1.
ci-build_1 | Installing IdentityServer4.AspNetIdentity 1.0.1.
ci-build_1 | Installing Microsoft.EntityFrameworkCore.Relational 1.1.1.
ci-build_1 | Installing Microsoft.EntityFrameworkCore 1.1.1.
ci-build_1 | Installing AutoMapper 6.0.1.
ci-build_1 | Generating MSBuild file /src/src/Services/Ordering/Ordering.API/obj/Ordering.API.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/Services/Ordering/Ordering.API/obj/Ordering.API.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Ordering/Ordering.API/obj/project.assets.json
ci-build_1 | Restore completed in 7.02 sec for /src/src/Services/Ordering/Ordering.API/Ordering.API.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebSPA/WebSPA.csproj...
ci-build_1 | Generating MSBuild file /src/src/Web/WebMVC/obj/WebMVC.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/Web/WebMVC/obj/WebMVC.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/Web/WebMVC/obj/project.assets.json
ci-build_1 | Restore completed in 7.54 sec for /src/src/Web/WebMVC/WebMVC.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebStatus/WebStatus.csproj...
ci-build_1 | Generating MSBuild file /src/src/Services/Identity/Identity.API/obj/Identity.API.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/Services/Identity/Identity.API/obj/Identity.API.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/Services/Identity/Identity.API/obj/project.assets.json
ci-build_1 | Restore completed in 15.13 sec for /src/src/Services/Identity/Identity.API/Identity.API.csproj.
ci-build_1 | Restoring packages for /src/test/Services/FunctionalTests/FunctionalTests.csproj...
ci-build_1 | Installing Microsoft.Extensions.Configuration.FileExtensions 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.Configuration.EnvironmentVariables 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.DependencyInjection 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.Logging 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.Configuration.Json 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Hosting 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.DiagnosticAdapter 1.0.0.
ci-build_1 | Installing Microsoft.ApplicationInsights 2.2.0.
ci-build_1 | Installing Microsoft.Extensions.Configuration 1.0.0.
ci-build_1 | Installing Microsoft.ApplicationInsights.AspNetCore 2.0.0.
ci-build_1 | Generating MSBuild file /src/src/Web/WebStatus/obj/WebStatus.csproj.nuget.g.props.
ci-build_1 | Writing lock file to disk. Path: /src/src/Web/WebStatus/obj/project.assets.json
ci-build_1 | Restore completed in 5.05 sec for /src/src/Web/WebStatus/WebStatus.csproj.
ci-build_1 | Restoring packages for /src/test/Services/IntegrationTests/IntegrationTests.csproj...
ci-build_1 | Installing System.IO 4.0.0.
ci-build_1 | Installing System.Linq.Expressions 4.0.0.
ci-build_1 | Installing System.ObjectModel 4.0.0.
ci-build_1 | Installing System.Globalization 4.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Abstractions 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.Razor 1.0.0.
ci-build_1 | Installing System.Dynamic.Runtime 4.0.0.
ci-build_1 | Installing System.Collections.Concurrent 4.0.0.
ci-build_1 | Installing System.Diagnostics.Tracing 4.0.0.
ci-build_1 | Installing System.Runtime 4.0.0.
ci-build_1 | Installing System.Runtime.Extensions 4.0.0.
ci-build_1 | Installing System.Collections 4.0.0.
ci-build_1 | Installing System.Linq 4.0.0.
ci-build_1 | Installing System.Threading 4.0.0.
ci-build_1 | Installing System.Diagnostics.Debug 4.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Core 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.TestHost 1.1.2.
ci-build_1 | Installing Microsoft.AspNetCore.AngularServices 1.0.0-beta-000014.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.TagHelpers 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.SpaServices 1.0.0-beta-000014.
ci-build_1 | Installing Microsoft.Extensions.Caching.Memory 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Razor 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.NodeServices 1.0.0-beta-000014.
ci-build_1 | Installing Microsoft.Extensions.Caching.Abstractions 1.0.0.
ci-build_1 | Installing Microsoft.Extensions.FileProviders.Composite 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Razor.Host 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.ViewFeatures 1.0.1.
ci-build_1 | Installing System.Threading.Tasks.Dataflow 4.5.25.
ci-build_1 | Installing Microsoft.AspNetCore.Razor.Runtime 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Diagnostics.Abstractions 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.Formatters.Json 1.0.1.
ci-build_1 | Installing Microsoft.AspNetCore.Html.Abstractions 1.0.0.
ci-build_1 | Installing Microsoft.AspNetCore.Mvc.DataAnnotations 1.0.1.
ci-build_1 | Installing Castle.Core 4.0.0.
ci-build_1 | Installing Moq 4.7.10.
ci-build_1 | Generating MSBuild file /src/test/Services/FunctionalTests/obj/FunctionalTests.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/test/Services/FunctionalTests/obj/FunctionalTests.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/test/Services/FunctionalTests/obj/project.assets.json
ci-build_1 | Restore completed in 10.68 sec for /src/test/Services/FunctionalTests/FunctionalTests.csproj.
ci-build_1 | Restoring packages for /src/test/Services/UnitTest/UnitTest.csproj...
ci-build_1 | Generating MSBuild file /src/test/Services/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/test/Services/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/test/Services/IntegrationTests/obj/project.assets.json
ci-build_1 | Restore completed in 8.33 sec for /src/test/Services/IntegrationTests/IntegrationTests.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Identity/Identity.API/Identity.API.csproj...
ci-build_1 | Generating MSBuild file /src/src/Web/WebSPA/obj/WebSPA.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/src/Web/WebSPA/obj/WebSPA.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/src/Web/WebSPA/obj/project.assets.json
ci-build_1 | Restore completed in 20 sec for /src/src/Web/WebSPA/WebSPA.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebSPA/WebSPA.csproj...
ci-build_1 | Installing Microsoft.NETCore.Jit 1.0.2.
ci-build_1 | Installing Microsoft.NETCore.Runtime.CoreCLR 1.0.2.
ci-build_1 | Installing Microsoft.DotNet.Watcher.Tools 1.0.0-msbuild3-final.
ci-build_1 | Installing Microsoft.NETCore.DotNetHostPolicy 1.0.1.
ci-build_1 | Installing Microsoft.NETCore.App 1.0.0.
ci-build_1 | Restore completed in 1.36 sec for /src/src/Web/WebSPA/WebSPA.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Identity/Identity.API/Identity.API.csproj...
ci-build_1 | Installing Microsoft.NETCore.Jit 1.0.4.
ci-build_1 | Installing Microsoft.NETCore.Runtime.CoreCLR 1.0.4.
ci-build_1 | Installing Microsoft.NETCore.App 1.1.0.
ci-build_1 | Installing NUglify 1.5.5.
ci-build_1 | Installing BundlerMinifier.Core 2.4.337.
ci-build_1 | Restore completed in 5.05 sec for /src/src/Services/Identity/Identity.API/Identity.API.csproj.
ci-build_1 | Restoring packages for /src/src/Services/Ordering/Ordering.API/Ordering.API.csproj...
ci-build_1 | Installing Microsoft.EntityFrameworkCore.Tools.DotNet 1.0.0-msbuild3-final.
ci-build_1 | Installing Microsoft.EntityFrameworkCore.Tools.DotNet 1.0.0.
ci-build_1 | Restore completed in 1.15 sec for /src/src/Services/Identity/Identity.API/Identity.API.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebMVC/WebMVC.csproj...
ci-build_1 | Restore completed in 887 ms for /src/src/Services/Ordering/Ordering.API/Ordering.API.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebSPA/WebSPA.csproj...
ci-build_1 | Installing Microsoft.Extensions.Configuration.Abstractions 1.0.1.
ci-build_1 | Installing Microsoft.Extensions.Configuration 1.0.1.
ci-build_1 | Installing Microsoft.Extensions.Configuration.FileExtensions 1.0.1.
ci-build_1 | Installing Microsoft.Extensions.Configuration.Json 1.0.1.
ci-build_1 | Installing Microsoft.Extensions.Configuration.UserSecrets 1.0.1.
ci-build_1 | Installing Microsoft.Extensions.SecretManager.Tools 1.0.0-msbuild3-final.
ci-build_1 | Restore completed in 2.37 sec for /src/src/Web/WebMVC/WebMVC.csproj.
ci-build_1 | Restoring packages for /src/src/Web/WebStatus/WebStatus.csproj...
ci-build_1 | Installing NuGet.Packaging.Core.Types 3.5.0-beta2-1484.
ci-build_1 | Installing System.Resources.Writer 4.0.0.
ci-build_1 | Installing System.Runtime.Serialization.Xml 4.1.1.
ci-build_1 | Installing Microsoft.Extensions.CommandLineUtils 1.0.0.
ci-build_1 | Installing NuGet.Packaging.Core 3.5.0-beta2-1484.
ci-build_1 | Installing NuGet.Common 3.5.0-beta2-1484.
ci-build_1 | Installing NuGet.Versioning 3.5.0-beta2-1484.
ci-build_1 | Installing NuGet.Frameworks 3.5.0-beta2-1484.
ci-build_1 | Installing Microsoft.DotNet.ProjectModel 1.0.0-rc3-003121.
ci-build_1 | Installing Microsoft.Build.Tasks.Core 15.1.0-preview-000458-02.
ci-build_1 | Installing Microsoft.Build 15.1.0-preview-000458-02.
ci-build_1 | Installing Microsoft.Build.Utilities.Core 15.1.0-preview-000458-02.
ci-build_1 | Installing Microsoft.Build.Framework 15.1.0-preview-000458-02.
ci-build_1 | Installing NuGet.Packaging 3.5.0-beta2-1484.
ci-build_1 | Installing NuGet.RuntimeModel 3.5.0-beta2-1484.
ci-build_1 | Installing Microsoft.Build.Runtime 15.1.0-preview-000458-02.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Tools 1.0.0-msbuild3-final.
ci-build_1 | Restore completed in 3.02 sec for /src/src/Web/WebSPA/WebSPA.csproj.
ci-build_1 | Installing Microsoft.Build 15.1.548.
ci-build_1 | Installing Microsoft.Build.Tasks.Core 15.1.548.
ci-build_1 | Installing Microsoft.Build.Utilities.Core 15.1.548.
ci-build_1 | Installing Microsoft.Build.Framework 15.1.548.
ci-build_1 | Installing Microsoft.Build.Runtime 15.1.548.
ci-build_1 | Installing Microsoft.Extensions.CommandLineUtils 1.0.1.
ci-build_1 | Installing Microsoft.VisualStudio.Web.CodeGeneration.Tools 1.0.0.
ci-build_1 | Restore completed in 1.42 sec for /src/src/Web/WebStatus/WebStatus.csproj.
ci-build_1 | Generating MSBuild file /src/test/Services/UnitTest/obj/UnitTest.csproj.nuget.g.props.
ci-build_1 | Generating MSBuild file /src/test/Services/UnitTest/obj/UnitTest.csproj.nuget.g.targets.
ci-build_1 | Writing lock file to disk. Path: /src/test/Services/UnitTest/obj/project.assets.json
ci-build_1 | Restore completed in 12.4 sec for /src/test/Services/UnitTest/UnitTest.csproj.
ci-build_1 |
ci-build_1 | NuGet Config files used:
ci-build_1 | /src/nuget.config
ci-build_1 | /root/.nuget/NuGet/NuGet.Config
ci-build_1 |
ci-build_1 | Feeds used:
ci-build_1 | https://dotnet.myget.org/F/aspnet-feb2017-patch/api/v3/index.json
ci-build_1 | https://api.nuget.org/v3/index.json
ci-build_1 |
ci-build_1 | Installed:
ci-build_1 | 2 package(s) to /src/src/BuildingBlocks/EventBus/EventBus/EventBus.csproj
ci-build_1 | 5 package(s) to /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.csproj
ci-build_1 | 2 package(s) to /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/Microsoft.AspNetCore.HealthChecks.csproj
ci-build_1 | 2 package(s) to /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/Microsoft.Extensions.HealthChecks.SqlServer.csproj
ci-build_1 | 22 package(s) to /src/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj
ci-build_1 | 2 package(s) to /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/Microsoft.Extensions.HealthChecks.csproj
ci-build_1 | 3 package(s) to /src/src/BuildingBlocks/Resilience/Resilience.Http/Resilience.Http.csproj
ci-build_1 | 3 package(s) to /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj
ci-build_1 | 70 package(s) to /src/src/Services/Basket/Basket.API/Basket.API.csproj
ci-build_1 | 49 package(s) to /src/src/Services/Catalog/Catalog.API/Catalog.API.csproj
ci-build_1 | 2 package(s) to /src/src/Services/Ordering/Ordering.Domain/Ordering.Domain.csproj
ci-build_1 | 2 package(s) to /src/src/Services/Ordering/Ordering.Infrastructure/Ordering.Infrastructure.csproj
ci-build_1 | 87 package(s) to /src/src/Services/Ordering/Ordering.API/Ordering.API.csproj
ci-build_1 | 29 package(s) to /src/src/Web/WebMVC/WebMVC.csproj
ci-build_1 | 43 package(s) to /src/src/Services/Identity/Identity.API/Identity.API.csproj
ci-build_1 | 33 package(s) to /src/src/Web/WebStatus/WebStatus.csproj
ci-build_1 | 81 package(s) to /src/test/Services/FunctionalTests/FunctionalTests.csproj
ci-build_1 | 105 package(s) to /src/test/Services/IntegrationTests/IntegrationTests.csproj
ci-build_1 | 89 package(s) to /src/src/Web/WebSPA/WebSPA.csproj
ci-build_1 | 106 package(s) to /src/test/Services/UnitTest/UnitTest.csproj
ci-build_1 | Microsoft (R) Build Engine version 15.1.1012.6693
ci-build_1 | Copyright (C) Microsoft Corporation. All rights reserved.
ci-build_1 |
ci-build_1 | Ordering.Domain -> /src/src/Services/Ordering/Ordering.Domain/bin/Release/netstandard1.6.1/Ordering.Domain.dll
ci-build_1 | EventBus -> /src/src/BuildingBlocks/EventBus/EventBus/bin/Release/netcoreapp1.1/EventBus.dll
ci-build_1 | EventBusRabbitMQ -> /src/src/BuildingBlocks/EventBus/EventBusRabbitMQ/bin/Release/netcoreapp1.1/EventBusRabbitMQ.dll
ci-build_1 | IntegrationEventLogEF -> /src/src/BuildingBlocks/EventBus/IntegrationEventLogEF/bin/Release/netcoreapp1.1/IntegrationEventLogEF.dll
ci-build_1 | Microsoft.Extensions.HealthChecks -> /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks/bin/Release/netstandard1.3/Microsoft.Extensions.HealthChecks.dll
ci-build_1 | Microsoft.AspNetCore.HealthChecks -> /src/src/BuildingBlocks/HealthChecks/src/Microsoft.AspNetCore.HealthChecks/bin/Release/netstandard1.3/Microsoft.AspNetCore.HealthChecks.dll
ci-build_1 | Microsoft.Extensions.HealthChecks.SqlServer -> /src/src/BuildingBlocks/HealthChecks/src/Microsoft.Extensions.HealthChecks.SqlServer/bin/Release/netstandard1.3/Microsoft.Extensions.HealthChecks.S
qlServer.dll
ci-build_1 | Resilience.Http -> /src/src/BuildingBlocks/Resilience/Resilience.Http/bin/Release/netstandard1.4/Resilience.Http.dll
ci-build_1 | Basket.API -> /src/src/Services/Basket/Basket.API/bin/Release/netcoreapp1.1/Basket.API.dll
ci-build_1 | Startup.cs(36,17): warning CS0618: 'ConfigurationExtensions.AddUserSecrets(IConfigurationBuilder)' is obsolete: 'This method is obsolete and will be removed in a future version. The recommended al
ternative is .AddUserSecrets(string userSecretsId) or .AddUserSecrets().' [/src/src/Web/WebMVC/WebMVC.csproj]
ci-build_1 | WebMVC -> /src/src/Web/WebMVC/bin/Release/netcoreapp1.1/WebMVC.dll
ci-build_1 | /src/docker-compose.dcproj : error MSB4019: The imported project "/usr/share/dotnet/sdk/1.0.4/Sdks/Microsoft.Docker.Sdk/Sdk/Sdk.props" was not found. Confirm that the path in the declarat
ion is correct, and that the file exists on disk.
ci-build_1 | Bundling with configuration from /src/src/Web/WebMVC/bundleconfig.json
ci-build_1 | Processing wwwroot/css/site.min.css
ci-build_1 | Processing wwwroot/js/site.min.js
ci-build_1 | Startup.cs(32,17): warning CS0618: 'ConfigurationExtensions.AddUserSecrets(IConfigurationBuilder)' is obsolete: 'This method is obsolete and will be removed in a future version. The recommended al
ternative is .AddUserSecrets(string userSecretsId) or .AddUserSecrets().' [/src/src/Web/WebSPA/WebSPA.csproj]
ci-build_1 | WebSPA -> /src/src/Web/WebSPA/bin/Release/netcoreapp1.1/WebSPA.dll
ci-build_1 | WebStatus -> /src/src/Web/WebStatus/bin/Release/netcoreapp1.1.2/WebStatus.dll
ci-build_1 | npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules/chokidar/node_modules/fsevents):
ci-build_1 | npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
ci-build_1 |
ci-build_1 | > [email protected] build:prod /src/src/Web/WebSPA
ci-build_1 | > ng build --prod --aot --extract-css
ci-build_1 |
ci-build_1 | TestIntegrationEventHandler.cs(18,27): warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API calls, or
'await Task.Run(...)' to do CPU-bound work on a background thread. [/src/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj]
ci-build_1 | TestIntegrationOtherEventHandler.cs(18,27): warning CS1998: This async method lacks 'await' operators and will run synchronously. Consider using the 'await' operator to await non-blocking API call
s, or 'await Task.Run(...)' to do CPU-bound work on a background thread. [/src/src/BuildingBlocks/EventBus/EventBus.Tests/EventBus.Tests.csproj]
ci-build_1 | EventBus.Tests -> /src/src/BuildingBlocks/EventBus/EventBus.Tests/bin/Release/netcoreapp1.1/EventBus.Tests.dll
ci-build_1 | Ordering.Infrastructure -> /src/src/Services/Ordering/Ordering.Infrastructure/bin/Release/netstandard1.6.1/Ordering.Infrastructure.dll
ci-build_1 | Catalog.API -> /src/src/Services/Catalog/Catalog.API/bin/Release/netcoreapp1.1/Catalog.API.dll
ci-build_1 | Ordering.API -> /src/src/Services/Ordering/Ordering.API/bin/Release/netcoreapp1.1/Ordering.API.dll
ci-build_1 | 11% building modules 16/17 modules 1 active ...modules/bootstrap/scss/bootstrap.scssTemplate parse warnings:
ci-build_1 | The element is deprecated. Use instead ("
ci-build_1 |
ci-build_1 | [WARNING ->]<template ngFor let-panel [ngForOf]="panels">
ci-build_1 | <div role="tab" id="{{panel.id}}-header" [attr.ar"): ng:///src/src/Web/WebSPA/node_modules/@ng-bootstrap/ng-bootstrap/accordion/accordion.d.ts.NgbAccordion.html@2:4
ci-build_1 | Hash: 9dd7f6f65d3e4eba0b05
ci-build_1 | Time: 47098ms
ci-build_1 | chunk {0} polyfills.c0a18ee9c7c94760ddd8.bundle.js (polyfills) 157 kB {4} [initial] [rendered]
ci-build_1 | chunk {1} main.e4e35f8150b323458d55.bundle.js (main) 434 kB {3} [initial] [rendered]
ci-build_1 | chunk {2} styles.49001adc0c15d2f1e99b.bundle.css (styles) 122 bytes {4} [initial] [rendered]
ci-build_1 | chunk {3} vendor.f4633ac498d971e27dc2.bundle.js (vendor) 2.12 MB [initial] [rendered]
ci-build_1 | chunk {4} inline.ed35c9bf10035defe776.bundle.js (inline) 0 bytes [entry] [rendered] 25% building modules 126/283 modules 157 active ...odules/rxjs/add/o
perator/takeUnMSBUILD : error MSB4017: The build stopped unexpectedly because of an unexpected logger failure.
ci-build_1 | Microsoft.Build.Exceptions.InternalLoggerException: The build stopped unexpectedly because of an unexpected logger failure. ---> System.IO.IOException: The process cannot access the file because i
t is being used by another process.
ci-build_1 | at System.ConsolePal.Write(SafeFileHandle fd, Byte* bufPtr, Int32 count)
ci-build_1 | at System.ConsolePal.Write(SafeFileHandle fd, Byte[] buffer, Int32 offset, Int32 count)
ci-build_1 | at System.ConsolePal.UnixConsoleStream.Write(Byte[] buffer, Int32 offset, Int32 count)
ci-build_1 | at System.IO.StreamWriter.Flush(Boolean flushStream, Boolean flushEncoder)
ci-build_1 | at System.IO.StreamWriter.Write(String value)
ci-build_1 | at System.IO.SyncTextWriter.Write(String value)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.ParallelConsoleLogger.WriteBasedOnPrefix(String nonNullMessage, Boolean prefixAlreadyWritten, Int32 adjustedPrefixWidth)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.ParallelConsoleLogger.WriteMessageAligned(String message, Boolean prefixAlreadyWritten, Int32 prefixAdjustment)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.ParallelConsoleLogger.PrintMessage(BuildMessageEventArgs e, Boolean lightenText)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.ParallelConsoleLogger.MessageHandler(Object sender, BuildMessageEventArgs e)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventSourceSink.RaiseMessageEvent(Object sender, BuildMessageEventArgs buildEvent)
ci-build_1 | --- End of inner exception stack trace ---
ci-build_1 | at Microsoft.Build.Exceptions.InternalLoggerException.Throw(Exception innerException, BuildEventArgs e, String messageResourceName, Boolean initializationException, String[] messageArgs)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventSourceSink.RaiseMessageEvent(Object sender, BuildMessageEventArgs buildEvent)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventSourceSink.Consume(BuildEventArgs buildEvent)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventSourceSink.Consume(BuildEventArgs buildEvent, Int32 sinkId)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventRedirectorToSink.Microsoft.Build.Framework.IEventRedirector.ForwardEvent(BuildEventArgs buildEvent)
ci-build_1 | at Microsoft.Build.Logging.ConfigurableForwardingLogger.ForwardToCentralLogger(BuildEventArgs e)
ci-build_1 | at Microsoft.Build.Logging.ConfigurableForwardingLogger.MessageHandler(Object sender, BuildMessageEventArgs e)
ci-build_1 | at Microsoft.Build.BackEnd.Logging.EventSourceSink.RaiseMessageEvent(Object sender, BuildMessageEventArgs buildEvent)
eshoponcontainersdev_ci-build_1 exited with code 1
Thanks in advanced,
Cesar.
Cesar de la Torre
Sr. Program Manager
.NET Product Team
Microsoft Corp.
The text was updated successfully, but these errors were encountered: