-
Notifications
You must be signed in to change notification settings - Fork 2
Add net6.0 target framework, bump editor #3
Conversation
Reference MS.VS.Language explicitly to work around restore bug.
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Reference Include="System.ComponentModel.Composition" /> | ||
</ItemGroup> | ||
|
||
<!-- Turn off windows dependency check. Some packages still have windows-specific dependencies, even though in the cases that matter they are not used at run-time --> | ||
<Target Name="IgnoreWindowsReferenceError" BeforeTargets="_CheckForTransitiveWindowsDesktopDependencies"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This target should only be necessary when a net6.0*
project references net472
nupkgs. In this project, every package should resolve as netstandard2.0
for the net6.0
target framework, but for some reason NuGet is resolving them as net472
, triggering this error and also NuGet/Home#5957.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I should note that this happens even if I remove the net472
from TargetFrameworks
completely.
- name: Test (Windows) | ||
if: startsWith (matrix.os, 'windows') | ||
run: dotnet test -c ${{ matrix.config }} --no-build | ||
# - name: Test (Windows) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests won't work unless minieditor gets updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don’t care at this point
Can you do me a favor and merge/bump? thanks. Let me know if I can help with any tasks. |
Reference MS.VS.Language explicitly to work around restore bug.