-
Notifications
You must be signed in to change notification settings - Fork 258
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
NuGet slow (read: unusable) after migrating to PackageReference #7669
Comments
Attempts to produce a log with diagnostic messaging resulted in a "Hard Error" and VS then locked my machine up w.r.t. keyboard and mouse inputs for ~5-6 minutes. Visual Studio's activity log says it OOM'd (which I guessed). Update, removing Newtonsoft.Json from a number of projects that don't actually need to reference it:
I have ~100 seconds of PerfView from that. |
Hey @sixlettervariables can you provide an ETL trace generated from PerfView to investigate why are you seeing this performance? |
Can do, just need an email to send it to of someone Ok for Export Controlled info (I'm not familiar with the depth of info in an ETL trace). |
By design, Installing/ Updating/ Uninstalling packages with PackageReference bases projects results into restoring the whole solution, which is why you're seeing significant performance regression compare to Now the primary reason of restoring the whole solution is because in most cases, there are interdepedency among projects in single solution so figuring our the whole transitive graph is even worse then doing the whole solution restore. But there have been some complaints about this, and the team is reevaluating if doing project restore (along with its transitive closure) will give better performance. |
We have the same issue. Solution is 244 projects. Adding a package to every project (Roslyn Analyzer) takes hours. Eventually crashes with Out of Memory exception. Issue persists on VS 2019 Preview 3 too |
@sixlettervariables, can you please contact me directly (dtivel @ microsoft) regarding the ETL trace? |
@dtivel I've reached out via my work account. Sorry for the delay. |
Here is a video showing removing a tiny package (with no dependencies) from 37 out of 246 projects in the solution. It completely destroys productivity. Same issue is for adding packages, upgrading packages etc etc (this is not a remove package specific problem). Video attached here: https://1drv.ms/v/s!AtMMegtv-j6JieZerO6IKNyc5Lkt5Q TLDR; It takes 7mins 50seconds.
If the package is in many more projects, VS will crash most of the time. Adding a package to all projects (roslyn analyzer) is basically pointless. Crashes VS and takes hours. I end up using powershell to add it into all the csproj files. My machine (relevant specs): i7 8700k How are people using this?! |
I see similar perf issues in our ~200 project solution having added a few PackageReference nodes (for things like RoslynAnalyzers) but still mostly using packages.config. I would like to migrate everything to PackageReference but it seems inadvisable in this state. The issue isn't just on editing the solution/project package state, even just regular msbuild on my solution is now meaningfully slower because instead of the instant restore experience with packages.config when every package already exists on disk I sit through a bunch of time where nuget is committing restores and such so basic incremental build scenarios are regressed. I'm internal to MSFT if you want to try this out for yourself in our repo. |
@dtivel @nkolev92 this might be related to restore NoOp failing even though nothing changed. There still might be some cases like that.. nice thing is repo is available :) |
Thanks @jainaashish @danquirk Much of what NuGet does is limited by how fast msbuild can evaluate. |
Thanks, emailed you the details |
@NuGet/nuget-client everyone should have the details from @danquirk |
We have experienced the same problem. We have a ~240 project solution. dotnet restore took 3.83 hours from the command line and dozens of Gb of RAM for one of those projects. It appears to expand the dependency DAG into a tree (which is exponentially bigger). |
We've improved certain things in the past couple of months regarding msbuild solution building for large projects, and this may have been addressed. We just need to investigate with the repros sent to us and see if there's anything left to do here. :) |
Thank you all for this feedback. At this point i think the ask here is equivalent to #6010, so closing it as a duplicate. |
Details about Problem
NuGet product used (NuGet.exe | VS UI | Package Manager Console | dotnet.exe): Visual Studio UI
NuGet version (x.x.x.xxx): 4.9 (?, whatever bundles with VS)
VS version (if appropriate): 15.9.4
OS version (i.e. win10 v1607 (14393.321)): Win7 7601
Worked before? If so, with which NuGet version: Pre VS 15.9.something and definitely pre-PackageReference
Detailed repro steps so we can see the same problem
Other suggested things
Verbose Logs
Installing EntityFramework on just 3 projects:
NuGet Config files used:
D:\Users\0\Source\Repos\OurProject\ABC.nuget\NuGet.Config
D:\Users\0\Source\Repos\OurProject\ABC\NuGet.Config
D:\Users\0\AppData\Roaming\NuGet\NuGet.Config
C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
Feeds used:
http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/Test/nuget/v3/index.json
Executing nuget actions took 47.34 sec
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Generating MSBuild file D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.nuget.g.props.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 336.22 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NuGet Config files used:
D:\Users\0\Source\Repos\OurProject\ABC.nuget\NuGet.Config
D:\Users\0\Source\Repos\OurProject\ABC\NuGet.Config
D:\Users\0\AppData\Roaming\NuGet\NuGet.Config
C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
Feeds used:
http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/Test/nuget/v3/index.json
Successfully installed 'EntityFramework 6.2.0' to DataContext
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
GET http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/b27489dc-8f5b-48eb-b476-c41804363034/nuget/v3/flat2/commonservicelocator/index.json
GET http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/b27489dc-8f5b-48eb-b476-c41804363034/nuget/v3/flat2/microsoft.odata.core/index.json
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
OK http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/b27489dc-8f5b-48eb-b476-c41804363034/nuget/v3/flat2/commonservicelocator/index.json 187ms
OK http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/b27489dc-8f5b-48eb-b476-c41804363034/nuget/v3/flat2/microsoft.odata.core/index.json 188ms
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restore completed in 299.96 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 331.39 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 266.99 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 330.65 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 327.85 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 397.71 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 321.58 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 357.36 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 297.55 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 301.39 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 299.06 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 1.11 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 326.21 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 352.8 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 352.79 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 440.59 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 408.2 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 465.69 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 442.6 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 408.93 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 466.28 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Restore completed in 780.35 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Restore completed in 433.31 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 2.56 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.21 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 359.7 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 358.17 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 353.36 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Restore completed in 1.92 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.92 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Committing restore...
Committing restore...
Restore completed in 2.63 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 2.63 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 466.28 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 811.69 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 2.61 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 2.6 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 5.58 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 1.46 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.08 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Committing restore...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 2.28 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 1.9 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 2.19 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
Restore completed in 1.2 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restore completed in 1.48 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restore completed in 344.2 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 7.92 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 671.21 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 353.8 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 670.97 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 677.66 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 835.95 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.47 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 809.14 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.2 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 1.46 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.15 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 504.62 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Committing restore...
Committing restore...
Restore completed in 485.5 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 450.37 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 890.55 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 9.84 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 820.08 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
Restore completed in 818.92 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 797.3 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Committing restore...
Committing restore...
Committing restore...
Restore completed in 806.33 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 372.68 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 425.48 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.2 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Restore completed in 787.25 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 773.23 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 397.12 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 764.64 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restore completed in 384.13 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 382.09 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 1.09 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 345.73 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 11.6 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 405.72 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Restore completed in 763.89 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.12 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.13 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 792.55 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 792.28 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 401.18 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 788.19 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.12 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restore completed in 762.78 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 413.1 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Restore completed in 1.14 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 784.27 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Committing restore...
Committing restore...
Restore completed in 1.13 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 455.97 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 469.41 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 1.16 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 815.72 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 836.8 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 830.12 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 13.44 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Committing restore...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Committing restore...
Restore completed in 1.19 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 433.31 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Restore completed in 410.73 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 807.68 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 786.98 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.23 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 810.3 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 821.13 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 438.34 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restore completed in 447.66 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 478.45 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.22 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Restore completed in 458.11 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.22 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 14.93 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restore completed in 758.18 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Committing restore...
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restore completed in 421.65 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 785.35 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Restore completed in 1.2 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.21 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restore completed in 374.53 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Restore completed in 487.43 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 172.31 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 809.4 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Committing restore...
Restore completed in 883.11 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 844.11 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 499.4 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 470.57 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 142.12 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 809.61 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Committing restore...
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 903.38 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 16.86 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 797.24 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
Restore completed in 454.54 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 455.51 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 922.05 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 902.28 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.32 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
Restore completed in 1.33 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 19.61 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 22.13 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: MvvmLightLibs 5.4.1.1 depends on CommonServiceLocator (>= 2.0.2) but CommonServiceLocator 2.0.2 was not found. An approximate best match of CommonServiceLocator 2.0.4 was resolved.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 28.83 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NU1603: Simple.OData.V4.Client 5.5.0 depends on Microsoft.OData.Core (>= 7.5.0 && < 8.0.0) but Microsoft.OData.Core 7.5.0 was not found. An approximate best match of Microsoft.OData.Core 7.5.1 was resolved.
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 29.71 sec for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NuGet Config files used:
D:\Users\0\Source\Repos\OurProject\ABC.nuget\NuGet.Config
D:\Users\0\Source\Repos\OurProject\ABC\NuGet.Config
D:\Users\0\AppData\Roaming\NuGet\NuGet.Config
C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
Feeds used:
http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/Test/nuget/v3/index.json
Executing nuget actions took 2.04 min
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj...
Committing restore...
Generating MSBuild file D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.nuget.g.props.
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 686.13 ms for D:\Users\0\Source\Repos\OurProject\ABC\Redacted.csproj.
NuGet Config files used:
D:\Users\0\Source\Repos\OurProject\ABC.nuget\NuGet.Config
D:\Users\0\Source\Repos\OurProject\ABC\NuGet.Config
D:\Users\0\AppData\Roaming\NuGet\NuGet.Config
C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
Feeds used:
http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/Test/nuget/v3/index.json
Successfully installed 'EntityFramework 6.2.0' to DatabaseSeeding
Executing nuget actions took 1.7 min
Restoring packages for D:\Users\0\Source\Repos\OurProject\ABC\Deployment\ABC Database Seed\ABCDatabaseSeed.csproj...
Committing restore...
Writing lock file to disk. Path: D:\Users\0\Source\Repos\OurProject\ABC\redacted.assets.json
Restore completed in 981.34 ms for D:\Users\0\Source\Repos\OurProject\ABC\Deployment\ABC Database Seed\ABCDatabaseSeed.csproj.
NuGet Config files used:
D:\Users\0\Source\Repos\OurProject\ABC.nuget\NuGet.Config
D:\Users\0\Source\Repos\OurProject\ABC\NuGet.Config
D:\Users\0\AppData\Roaming\NuGet\NuGet.Config
C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
Feeds used:
http://tfs2015.ABClab.local:8080/tfs/ABC/_packaging/Test/nuget/v3/index.json
Executing nuget actions took 1.78 min
Time Elapsed: 00:07:05.5673898
========== Finished ==========
The text was updated successfully, but these errors were encountered: