-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
documentation build fails with odd error #21
Comments
Hi, I have a few questions for you to help track this down.
Thanks, Chris |
|
Thanks. I'll try to have a look at this over the weekend. |
Okay, I had a look at the public string HelpMessage
{
get
{
return this.helpMessage;
}
set
{
if (string.IsNullOrEmpty(value))
throw CmdletMetadataAttribute.tracer.NewArgumentException("value");
this.helpMessage = value;
}
} It seems that, whilst it's okay to leave it unspecified (where it defaults to I'll look into getting |
I should also add that |
Superseded by #30. |
IF You add a blank HelpMessage on a cmdlet parameter code generation will fail trying to look for the System.Management.Automation.resources.dll file.
This is admittedly a very minor deal...
Specifically this code:
Fails with the attached exception.
exception.txt
The text was updated successfully, but these errors were encountered: