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
The path to DocoptNet.dll inside T4Docoptnet.tt was incorrect and I had to adjust it manually.
According to the comment above it, this seems to be a problem with the install.ps1 script.
In my case, the correct path was $(SolutionDir)..\packages\nuget\docopt.net.0.6.1.5\lib\net40\DocoptNet.dll but it got created as $(SolutionDir)packages\docopt.net.0.6.1.5\lib\net40\DocoptNet.dll
Hint: I am using a nuget.config in my solutions root folder to change to packages path.
The path to DocoptNet.dll inside T4Docoptnet.tt was incorrect and I had to adjust it manually.
According to the comment above it, this seems to be a problem with the install.ps1 script.
In my case, the correct path was
$(SolutionDir)..\packages\nuget\docopt.net.0.6.1.5\lib\net40\DocoptNet.dll
but it got created as$(SolutionDir)packages\docopt.net.0.6.1.5\lib\net40\DocoptNet.dll
Hint: I am using a
nuget.config
in my solutions root folder to change to packages path.I would guess that changing this line:
to this
will fix that bug.
Unfortunately, I don't see how I could test this, so I can't fix it myself.
The text was updated successfully, but these errors were encountered: