question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

deps.json for ProjectReferences is not emitted correctly

See original GitHub issue

When I create a project with a project reference like this…

<ProjectReference Include="..\WindowsBase.csproj" />

… the deps.json file that’s generated has an entry like this:

      "WindowsBase/1.0.0": {
        "runtime": {
          "WindowsBase.dll": {}
        }
      }

The application loads WindowsBase from Microsoft.NetCore.App instead of loading the one supplied by the referenced project.

Repro: XUnitTestProject1.zip

/cc @ericstj

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:1
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
ericstjcommented, Apr 20, 2020

I bet you can workaround by using both a project reference and a raw file reference.

0reactions
weltkantecommented, Apr 20, 2020

yeah having both kinds of references seems to be a useable workaround, loads the right System.Drawing now

Read more comments on GitHub >

github_iconTop Results From Across the Web

Visual Studio 2019 not adding referenced projects to deps. ...
The solution was to clear nuget's cache (for some reason)... Tools -> NuGet Package Manager -> Package Manager Console, type dotnet nuget ...
Read more >
Project References - TypeScript: Documentation
Project references are a new feature in TypeScript 3.0 that allow you to structure your TypeScript programs into smaller pieces.
Read more >
Fix unable to find *.deps.json for unit tests in .NET 5
Solution 1. Set ProduceReferenceAssembly to false · Solution 2. Ignore the /ref/ folder in your test tasks in Azure DevOps · Tobias Zimmergren....
Read more >
TypeScript project references
json. TypeScript will generate a directed acyclic graph (DAG) and compile projects in order so that dependencies and references are resolved correctly.
Read more >
Using TypeScript Project References with ts-loader and ...
json is correctly configured and TypeScript is able to resolve your modules, but webpack is not. Look into the resolve section of webpack.config ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found