Hi, I’m very new to travis and I’m getting the below error
1.73s$ nuget restore DMX.sln
612WARNING: Error: SendFailure (Error writing headers)
613Unable to find version ‘14.0.0.3’ of package
‘MSBuild.Microsoft.VisualStudio.Web.targets’.
614The command “nuget restore DMX.sln” failed and exited with 1 during .
below is my config:
language: csharp
solution: DMX.sln
#mono: 3.12.0
mono: none
dotnet: 3.1.101
before_install:
- sudo apt install nuget
install:- nuget restore DMX.sln
script:- dotnet build DMX.sln -c Release
Any help greatly appreciated.