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
I tried to run:
DotNetCoreAliases.DotNetCorePublish(inSolutionDetails.context, iterProjectLocation + "\\project.json", new DotNetCorePublishSettings() { Configuration = "Release", OutputDirectory =inSolutionDetails.ArtifactsFolder + "\\" + projectName, });
Note: inSolutionDetails.ArtifactsFolder has spaces in it (\Visual Studio) and .NET Core CLI will return an error:
inSolutionDetails.ArtifactsFolder
Unrecognize command or argument 'Studio'.
The error is actually commind from the project.json location (I am sendinf the full path) not the OutputDirectory.
I used "\""+iterProjectLocation + "\\project.json\"" to specify the project location and it worked.
"\""+iterProjectLocation + "\\project.json\""
The text was updated successfully, but these errors were encountered:
@SavaNDragos I moved your comments to the issue and fixed the formatting.
Sorry, something went wrong.
@SavaNDragos this should be available in the next release of Cake.
No branches or pull requests
I tried to run:
Note:
inSolutionDetails.ArtifactsFolder
has spaces in it (\Visual Studio) and .NET Core CLI will return an error:The error is actually commind from the project.json location (I am sendinf the full path) not the OutputDirectory.
I used
"\""+iterProjectLocation + "\\project.json\""
to specify the project location and it worked.The text was updated successfully, but these errors were encountered: