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
In NBi.Xml.Decoration.Command, the string FullPath is not constructed correctly if the path isn't rooted:
public string FullPath { get { var fullPath = string.Empty; if (Path.IsPathRooted(InternalPath) || String.IsNullOrEmpty(Settings.BasePath)) fullPath = InternalPath + Name; else fullPath = Settings.BasePath + fullPath + Name; return fullPath; } }
should be
public string FullPath { get { var fullPath = string.Empty; if (Path.IsPathRooted(InternalPath) || String.IsNullOrEmpty(Settings.BasePath)) fullPath = InternalPath + Name; else fullPath = Settings.BasePath + InternalPath + Name; return fullPath; } }
The text was updated successfully, but these errors were encountered:
fixed with pull-request #135
Sorry, something went wrong.
Fixed by your pull request
Preview available at https://ci.appveyor.com/project/CdricLCharlier/nbi/build/1.12.0.99027
No branches or pull requests
In NBi.Xml.Decoration.Command, the string FullPath is not constructed correctly if the path isn't rooted:
should be
The text was updated successfully, but these errors were encountered: