We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The msbuild property for the NuGet pack output directory is set:
$(SolutionDir)
however this has a trailing slash that causes NuGet.exe pack command to fall over when passing it through as the outputdir argument.
The solution is the trim the trailing slash:
$(SolutionDir.TrimEnd(''))
This problem with NuGet was recorded here: https://nuget.codeplex.com/workitem/901
The text was updated successfully, but these errors were encountered:
657c577
dazinator
No branches or pull requests
The msbuild property for the NuGet pack output directory is set:
$(SolutionDir)
however this has a trailing slash that causes NuGet.exe pack command to fall over when passing it through as the outputdir argument.
The solution is the trim the trailing slash:
$(SolutionDir.TrimEnd(''))
This problem with NuGet was recorded here: https://nuget.codeplex.com/workitem/901
The text was updated successfully, but these errors were encountered: