Skip to content

Commit

Permalink
Don't use nameof it seems to not work on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink committed Jun 15, 2022
1 parent f5f0be4 commit abc3cc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public PathConverter(string originalPath, string deploymentPath, IFileHelper fil
_deploymentPath = normalizedDeploymentPath;
}

[return: NotNullIfNotNull(nameof(path))]
[return: NotNullIfNotNull("path")]
public string? UpdatePath(string? path, PathConversionDirection updateDirection)
{
if (path == null)
Expand Down

0 comments on commit abc3cc3

Please sign in to comment.