Reinforced.Typings: [MSB6003] The specified task executable "" could not be run.
I have recently updated to version 1.5.0 and am now receiving the following error:
Reinforced.Typings.targets(59, 3): [MSB6003] The specified task executable "" could not be run. No such file or directory
Is there a known fix or anything I can do to get more information about what is happening?
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 15 (9 by maintainers)
I have done some more research, let me know what you think.
The only reference to
dotnet.exeI can find is in the fileReinforced.Typings/Reinforced.Typings.Integrate/RtCli.cshttps://github.com/reinforced/Reinforced.Typings/blob/32597244e129b2939872686101d8d239c957197a/Reinforced.Typings.Integrate/RtCli.csI can be fairly confident that
IsCoreis returning correctly becausertcli.exeis not referenced.Therefore, I think that the issue lies in
#if NETCOREI have decompiledreinforced.typings.1.5.0.nupkg\build\netstandard2.0\Reinforced.Typings.Integrate.dlland I see the following code
This accurately maps to a false evaluation of the if directive when compiling for netstandard.
I have checked the
Reinforced.Typings/cake/build.cakefile and I notice that theIntegrateProjectdoes NOT have a correspondingRtAdditionalConstantssection like the other files do.Is it possible that this just needs adding to the build process?