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