Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.24 KB | None | 0 0
  1. step 1/16 : FROM microsoft/dotnet:2.2-sdk AS build-env
  2.  ---> 343e2dc38168
  3. Step 2/16 : ARG buildconfig
  4.  ---> Using cache
  5.  ---> 1805532e0761
  6. Step 3/16 : WORKDIR /app
  7.  ---> Using cache
  8.  ---> de346c89436c
  9. Step 4/16 : COPY ServiceApp.WebApi.csproj .
  10.  ---> 8ddbae25b331
  11. Step 5/16 : RUN dotnet restore
  12.  ---> Running in fe0e2708c262
  13.   Restoring packages for /app/ServiceApp.WebApi.csproj...
  14.   Installing System.Threading.Overlapped 4.3.0.
  15.   Installing System.Threading.Thread 4.0.0.
  16.   Installing Microsoft.Win32.Registry 4.0.0.
  17.   Installing System.Net.NetworkInformation 4.3.0.
  18.   Installing System.Security.Claims 4.0.1.
  19.   Installing runtime.native.System.Net.Security 4.0.1.
  20.   Installing System.Security.Principal 4.0.1.
  21.   Installing System.Threading.ThreadPool 4.0.10.
  22.   Installing System.Diagnostics.Process 4.1.0.
  23.   Installing System.ComponentModel.Primitives 4.1.0.
  24.   Installing System.ComponentModel 4.0.1.
  25.   Installing System.Collections.NonGeneric 4.0.1.
  26.   Installing DnsClient 1.0.7.
  27.   Installing System.Net.Security 4.0.0.
  28.   Installing System.Collections.Specialized 4.0.1.
  29.   Installing System.Diagnostics.TextWriterTraceListener 4.0.0.
  30.   Installing Bogus 25.0.1.
  31.   Installing Microsoft.AspNetCore.Razor.Design 2.1.2.
  32.   Installing System.Security.SecureString 4.0.0.
  33.   Installing MongoDB.Driver.Core 2.7.2.
  34.   Installing System.ComponentModel.TypeConverter 4.1.0.
  35.   Installing MongoDB.Bson 2.7.2.
  36.   Installing System.Diagnostics.TraceSource 4.0.0.
  37.   Installing MongoDB.Driver 2.7.2.
  38. /app/ServiceApp.WebApi.csproj : error NU1605: Detected package downgrade: Microsoft.AspNetCore.Razor.Design from 2.2.0 to 2.1.2. Reference the package directly from the project to select a different version.
  39. /app/ServiceApp.WebApi.csproj : error NU1605:  ServiceApp.WebApi -> Microsoft.AspNetCore.App 2.2.0 -> Microsoft.AspNetCore.Razor.Design (>= 2.2.0 && < 2.3.0)
  40. /app/ServiceApp.WebApi.csproj : error NU1605:  ServiceApp.WebApi -> Microsoft.AspNetCore.Razor.Design (>= 2.1.2)
  41.   Generating MSBuild file /app/obj/ServiceApp.WebApi.csproj.nuget.g.props.
  42.   Generating MSBuild file /app/obj/ServiceApp.WebApi.csproj.nuget.g.targets.
  43.   Restore failed in 5.59 sec for /app/ServiceApp.WebApi.csproj.
  44. The command '/bin/sh -c dotnet restore' returned a non-zero code: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement