1 write to TargetURL
Microsoft.DotNet.Build.Tasks.Feed (1)
src\model\TargetFeedConfig.cs (1)
82
TargetURL
= targetURL;
18 references to TargetURL
Microsoft.DotNet.Build.Tasks.Feed (18)
src\AssetPublisherFactory.cs (2)
28
return new AzureDevOpsNugetFeedAssetPublisher(_log, feedConfig.
TargetURL
, feedConfig.Token, task);
31
new Uri(feedConfig.
TargetURL
),
src\model\TargetFeedConfig.cs (6)
21
public string SafeTargetURL => new UriBuilder(
TargetURL
) {Query = "", Fragment = ""}.Uri.AbsoluteUri;
100
((
TargetURL
is null && other.
TargetURL
is null) ||
TargetURL
.Equals(other.
TargetURL
, StringComparison.OrdinalIgnoreCase)) &&
127
TargetURL
,
src\PublishArtifactsInManifestBase.cs (10)
411
Log.LogError($"Use of non-internal feed '{feedConfig.
TargetURL
}' is invalid for an internal build. This can be overridden with '{nameof(SkipSafetyChecks)}= true'");
461
Log.LogError($"Package '{package.Id}' has stable version '{package.Version}' but is targeted at a non-isolated feed '{feedConfig.
TargetURL
}'");
889
$"Package {package.Id}@{package.Version} ({shippingString}) should go to {feedConfig.
TargetURL
} ({isolatedString}{internalString})");
1375
var parsedUri = Regex.Match(feedConfig.
TargetURL
, PublishingConstants.AzDoNuGetFeedPattern);
1504
Log.LogMessage(MessageImportance.Normal, $"Pushing package {id}@{version} to target feed {feedConfig.
TargetURL
}");
1537
Log.LogMessage(MessageImportance.Normal, $"Package '{localPackageLocation}' already exists on '{feedConfig.
TargetURL
}' but has the same content; skipping push");
1542
Log.LogError($"Package '{localPackageLocation}' already exists on '{feedConfig.
TargetURL
}' with different content.");
1565
Log.LogError($"Failed to publish package '{id}@{version}' to '{feedConfig.
TargetURL
}' after {MaxRetryCount} attempts. (Final status: {packageStatus})");
1569
Log.LogMessage($"Succeeded publishing package '{localPackageLocation}' to feed {feedConfig.
TargetURL
}");
1793
var parsedUri = Regex.Match(feedConfig.
TargetURL
, PublishingConstants.AzDoNuGetFeedPattern);