You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running docfx, it builds only the JsonApiDotNetCore project, not the entire solution. Because of this, the use of $(SolutionDir) msbuild variable produces the next warning:
Could not find rule set file "CodingGuidelines.ruleset"
This commit replaces $(SolutionDir) with the magical $(MSBuildThisFileDirectory) msbuild variable, which evaluates to: "the directory where the file exists that references this variable".
0 commit comments