10 references to ToolManifestPath
RepoTasks (10)
ResolveDotnetToolPackagePaths.cs (10)
31
using var stream = File.OpenRead(
ToolManifestPath
);
36
Log.LogError($"The dotnet tool manifest '{
ToolManifestPath
}' must contain a JSON object.");
42
Log.LogError($"The dotnet tool manifest '{
ToolManifestPath
}' does not contain a 'tools' object.");
48
Log.LogError($"The 'tools' value in dotnet tool manifest '{
ToolManifestPath
}' must be a JSON object.");
57
Log.LogError($"The dotnet tool manifest '{
ToolManifestPath
}' contains duplicate package ID '{tool.Name}' under case-insensitive comparison.");
72
Log.LogError($"The dotnet tool manifest '{
ToolManifestPath
}' does not contain tool '{packageId}'.");
78
Log.LogError($"Tool '{packageId}' in dotnet tool manifest '{
ToolManifestPath
}' must be a JSON object.");
84
Log.LogError($"Tool '{packageId}' in dotnet tool manifest '{
ToolManifestPath
}' does not contain a version.");
90
Log.LogError($"The version for tool '{packageId}' in dotnet tool manifest '{
ToolManifestPath
}' must be a string.");
97
Log.LogError($"The dotnet tool manifest '{
ToolManifestPath
}' contains an empty version for '{packageId}'.");