ionide / proj-info

Parse and evaluate MsBuild project files
MIT License
64 stars 37 forks source link

Better CI test output #166

Closed baronfel closed 1 year ago

baronfel commented 2 years ago

Hmm, windows is timing out now.

baronfel commented 2 years ago

the problem was the transitive dependency on NuGet.Frameworks - since the Microsoft.Net.Test.SDK package introduces that we end up copying it to the output directory, where it is loaded instead of the version of that DLL that ships in the SDK. We want to avoid that, so we make the dependency a top-level dependency and mark it copy_local: false to ensure that we only take a compile-time dependency on it.

baronfel commented 2 years ago

this might be doable now that I've got the per-TFM test runs going in main, but it will need a good rebasing.