You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attached are two demo projects. The first one (TestDotNetCore) compiles fine, however the second one (TestDotNetCoreWindows) fails with the following error:
Severity Code Description Project File Line Suppression State
Error MSB6006 "" exited with code 1. TestDotNetCoreWindows C:\Users\Luke\.nuget\packages\reinforced.typings\1.6.2\build\Reinforced.Typings.targets 61
The only difference in the two projects is that the first one targets net7.0, and the second targets net7.0-windows.
I've found that this issue is being caused by the GetProperRtcliPath method in Reinforced.Typings.Integrate, which does not remove the platform identifier, meaning it it looks for rtcli.exe in C:\Users\Luke\.nuget\packages\reinforced.typings\1.6.2\tools\net7.0-windows\rtcli.dll rather than C:\Users\Luke\.nuget\packages\reinforced.typings\1.6.2\tools\net7.0\rtcli.dll (where it is actually located)
You can get around this by setting <RtForceTargetFramework>net7.0</RtForceTargetFramework>, or I've opened a PR which fixes this issue.
The text was updated successfully, but these errors were encountered:
Attached are two demo projects. The first one (TestDotNetCore) compiles fine, however the second one (TestDotNetCoreWindows) fails with the following error:
The only difference in the two projects is that the first one targets net7.0, and the second targets net7.0-windows.
I've found that this issue is being caused by the
GetProperRtcliPath
method inReinforced.Typings.Integrate
, which does not remove the platform identifier, meaning it it looks forrtcli.exe
inC:\Users\Luke\.nuget\packages\reinforced.typings\1.6.2\tools\net7.0-windows\rtcli.dll
rather thanC:\Users\Luke\.nuget\packages\reinforced.typings\1.6.2\tools\net7.0\rtcli.dll
(where it is actually located)You can get around this by setting
<RtForceTargetFramework>net7.0</RtForceTargetFramework>
, or I've opened a PR which fixes this issue.The text was updated successfully, but these errors were encountered: