+ * Excludes pre-release and unlisted versions. Pre-release versions will be considered if no stable release exists.
+ * Unlisted versions are excluded because they have been deliberately hidden for a specific safety reason.
+ * To quote the Microsoft Nuget
+ * docs:
+ *
+ * We do not use the PackageBaseAddress resource to retrieve version information - it would be faster and simpler
+ * but, to quote Microsoft:
+ *
state here it is not supported
+ * as at September 2025./a>.
+ *
+ * Artifactory also doesn't provide "published" data as of August 2025 so no dates will be included in the response from
+ * those feeds. Other third party feeds may also omit the published dates.
*
* @author Steve Springett
* @since 3.4.0
*/
public class NugetMetaAnalyzer extends AbstractMetaAnalyzer {
- public static final DateFormat[] SUPPORTED_DATE_FORMATS = new DateFormat[]{
- new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX"),
- new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"),
- new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss")
- };
private static final Logger LOGGER = Logger.getLogger(NugetMetaAnalyzer.class);
- private static final String DEFAULT_BASE_URL = "https://api.nuget.org";
- private static final String INDEX_URL = "/v3/index.json";
+ private static final String DEFAULT_BASE_URL = "https://api.nuget.org/v3/index.json";
+ private static final String NUGET_KEY_UPPER = "upper";
+ private static final String NUGET_KEY_ITEMS = "items";
- private static final String DEFAULT_VERSION_QUERY_ENDPOINT = "/v3-flatcontainer/%s/index.json";
-
- private static final String DEFAULT_REGISTRATION_ENDPOINT = "/v3/registration5-gz-semver2/%s/%s.json";
+ private static final Cache REPO_REGISTRATION_URL_CACHE = Caffeine.newBuilder()
+ .maximumSize(100)
+ .expireAfterWrite(15, TimeUnit.MINUTES)
+ .build();
- private String versionQueryUrl;
+ private String serviceIndexUrl;
+ private String registrationsBaseUrl = "";
- private String registrationUrl;
NugetMetaAnalyzer() {
this.baseUrl = DEFAULT_BASE_URL;
-
- // Set defaults that work with NuGet.org just in case the index endpoint is not available
- this.versionQueryUrl = baseUrl + DEFAULT_VERSION_QUERY_ENDPOINT;
- this.registrationUrl = baseUrl + DEFAULT_REGISTRATION_ENDPOINT;
}
+
+ /**
+ * Sets the repository base URL which will then be used to retrieve and parse the service index. If the user has
+ * specified a repo URL ending with index.json, it should be considered "fully qualified" and used as is to maximise
+ * compatability with non-nuget.org repos such as Artifactory. If not, preserve the previous Dependency Track
+ * behaviour of appending the nuget.org index to the supplied URL.
+ * @param baseUrl the base URL to the repository
+ */
@Override
public void setRepositoryBaseUrl(String baseUrl) {
super.setRepositoryBaseUrl(baseUrl);
- initializeEndpoints();
+ if (baseUrl.toLowerCase().endsWith("index.json")) {
+ this.serviceIndexUrl = baseUrl;
+ } else {
+ this.serviceIndexUrl = stripTrailingSlash(baseUrl) + "/v3/index.json";
+ }
+
+ this.setRegistrationsBaseUrl(REPO_REGISTRATION_URL_CACHE.get(this.serviceIndexUrl, key -> findRegistrationsBaseUrl()));
+ }
+
+ /**
+ * Sets the RegistrationsBaseUrl to be used to retrieve package metadata. This is primarily intended
+ * for testing as setRepositoryBaseUrl should find and set the best URL automatically. Call this method AFTER
+ * setRepositoryBaseUrl to ensure your value is not overridden.
+ *
+ * @param registrationsBaseUrlStem Registrations URL to be set
+ */
+ public void setRegistrationsBaseUrl(String registrationsBaseUrlStem) {
+ if(registrationsBaseUrlStem == null || registrationsBaseUrlStem.isBlank()) {
+ return;
+ }
+ this.registrationsBaseUrl = stripTrailingSlash(registrationsBaseUrlStem) + "/%s/%s.json";
+ }
+
+ private static String stripTrailingSlash(String input) {
+ if (input == null || input.isBlank()) {
+ return input;
+ }
+ return input.endsWith("/") ? input.substring(0, input.length() - 1) : input;
}
/**
@@ -95,117 +157,313 @@ public class NugetMetaAnalyzer extends AbstractMetaAnalyzer {
* {@inheritDoc}
*/
public MetaModel analyze(final Component component) {
+
+ if(component == null) {
+ throw new IllegalArgumentException("Component cannot be null");
+ }
+
final MetaModel meta = new MetaModel(component);
if (component.getPurl() != null) {
- if (performVersionCheck(meta, component)) {
- performLastPublishedCheck(meta, component);
- }
+ LOGGER.debug("Analyzing component: " + component.getPurl().getName() + " (Internal: " + component.isInternal() + ")");
+ performVersionCheck(meta, component);
}
+ LOGGER.debug("Results: " + meta);
return meta;
}
- private boolean performVersionCheck(final MetaModel meta, final Component component) {
- final String url = String.format(versionQueryUrl, urlEncode(component.getPurl().getName().toLowerCase()));
- try (final CloseableHttpResponse response = processHttpRequest(url)) {
- if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
- if (response.getEntity() != null) {
- String responseString = EntityUtils.toString(response.getEntity());
- var jsonObject = new JSONObject(responseString);
- final JSONArray versions = jsonObject.getJSONArray("versions");
+ /**
+ * Attempts to find the latest version of the supplied component and return its published date, if one exists.
+ * Ignores pre-release and unlisted versions.
+ * @param meta {@link MetaModel} to be updated with detected version information
+ * @param component {@link Component} to be looked up in the NuGet repo
+ */
+ private void performVersionCheck(final MetaModel meta, final Component component) {
- String latest = findLatestVersion(filterPreReleaseVersions(versions));
- if (latest == null) {
- latest = findLatestVersion(versions);
- }
- meta.setLatestVersion(latest);
- }
- return true;
- } else {
- handleUnexpectedHttpResponse(LOGGER, url, response.getStatusLine().getStatusCode(), response.getStatusLine().getReasonPhrase(), component);
+ if (registrationsBaseUrl == null || registrationsBaseUrl.isBlank()) {
+ LOGGER.debug("Registration URL not defined for repo " + this.serviceIndexUrl + " - skipping version check");
+ return;
+ }
+
+ LOGGER.debug("Performing version check for: " + component.getPurl().getName() + " using " + registrationsBaseUrl);
+
+ try {
+ final var packageRegistrationRoot = fetchPackageRegistrationIndex(registrationsBaseUrl, component);
+
+ if(packageRegistrationRoot == null) {
+ return;
}
+
+ // Search for a release version first...
+ AbridgedNugetCatalogEntry abridgedNugetCatalogEntry = findLatestViaRegistrations(packageRegistrationRoot, false);
+
+ // ... then try again if none found, looking for the latest pre-release version
+ if (abridgedNugetCatalogEntry == null) {
+ abridgedNugetCatalogEntry = findLatestViaRegistrations(packageRegistrationRoot, true);
+ }
+
+ if (abridgedNugetCatalogEntry != null) {
+ meta.setLatestVersion(abridgedNugetCatalogEntry.getVersion());
+ meta.setPublishedTimestamp(abridgedNugetCatalogEntry.getPublishedTimestamp());
+ }
+
} catch (IOException e) {
handleRequestException(LOGGER, e);
} catch (Exception ex) {
throw new MetaAnalyzerException(ex);
}
- return false;
}
- private String findLatestVersion(JSONArray versions) {
+ /**
+ * Retrieves the package registration index for the specified component
+ * (e.g. https://api.nuget.org/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json) and converts to JSON
+ * @param registrationsBaseUrl Registration base URL to look up package info
+ * @param component Component for which retrieve package registration data should be retrieved
+ * @return JSONObject containing package data if found or null if data not found
+ * @throws IOException if HTTP request errors
+ */
+ private JSONObject fetchPackageRegistrationIndex(final String registrationsBaseUrl, final Component component) throws IOException {
+ final String idLower = urlEncode(component.getPurl().getName().toLowerCase());
+ final String indexUrl = String.format(registrationsBaseUrl, idLower, "index");
- if (versions.isEmpty()) {
+ try (final CloseableHttpResponse resp = processHttpRequest(indexUrl)) {
+ if (resp.getStatusLine().getStatusCode() != HttpStatus.SC_OK || resp.getEntity() == null) {
+ handleUnexpectedHttpResponse(LOGGER, indexUrl, resp.getStatusLine().getStatusCode(), resp.getStatusLine().getReasonPhrase(), component);
+ return null;
+ }
+ return new JSONObject(EntityUtils.toString(resp.getEntity()));
+ }
+ }
+
+ /**
+ * Parses the NuGet Registrations to find latest version information. Handles both inline items and paged items.
+ * Sorts pages in descending order by the upper version number - if a listed, final version can be found in that
+ * page, it will be returned or pages will be searched in descending order until a match is found.
+ * @param registrationData Registrations to be searched
+ * @return Version metadata if a suitable version found, or null if not
+ * @throws IOException if network error occurs
+ */
+ private AbridgedNugetCatalogEntry findLatestViaRegistrations(final JSONObject registrationData, final boolean includePreRelease) throws IOException {
+
+ final JSONArray pages = registrationData == null ? null : registrationData.optJSONArray(NUGET_KEY_ITEMS);
+
+ if (pages == null || pages.isEmpty()) {
return null;
}
- ComparableVersion latestVersion = new ComparableVersion(versions.getString(0));
-
- for (int i = 1; i < versions.length(); i++) {
- ComparableVersion version = new ComparableVersion(versions.getString(i));
- if (version.compareTo(latestVersion) > 0) {
- latestVersion = version;
+ // Build a list of pages sorted by descending "upper" property.
+ final List pageUpperBounds = new ArrayList<>();
+ for (int i = 0; i < pages.length(); i++) {
+ final JSONObject page = pages.optJSONObject(i);
+ if (page != null && page.has(NUGET_KEY_UPPER)) {
+ pageUpperBounds.add(page);
}
}
- return latestVersion.toString();
+ // Sort upper page bounds in descending order to get newest page first e.g, [ "6.1.0", "5.1.0" ]
+ pageUpperBounds.sort((pageOne, pageTwo) -> {
+ final ComparableVersion pageOneUpper = new ComparableVersion(pageOne.optString(NUGET_KEY_UPPER, "0"));
+ final ComparableVersion pageTwoUpper = new ComparableVersion(pageTwo.optString(NUGET_KEY_UPPER, "0"));
+ return pageTwoUpper.compareTo(pageOneUpper); // descending
+ });
+
+ for (final JSONObject page : pageUpperBounds) {
+ try {
+ final JSONArray leaves = resolveLeaves(page);
+ final AbridgedNugetCatalogEntry bestOnPage = findHighestVersionFromLeaves(leaves, includePreRelease);
+ if (bestOnPage != null) {
+ return bestOnPage;
+ }
+ } catch (MetaAnalyzerException ex) {
+ // Reporting handled in resolveLeaves - return null to avoid returning incorrect version from any page
+ return null;
+ }
+ }
+
+ // No suitable version found
+ return null;
}
- private JSONArray filterPreReleaseVersions(JSONArray versions) {
- JSONArray filteredVersions = new JSONArray();
- for (int i = 0; i < versions.length(); i++) {
- if (!versions.getString(i).contains("-")) {
- filteredVersions.put(versions.getString(i));
- }
+ /**
+ * Parse the page JSON to find item leaves, retrieving data from the repo if needed. Returns null if neither
+ * inline items nor a fetchable @id exist/succeed.
+ * @param page Page to be parsed
+ * @return JSONArray containing leaf data if available, null if not
+ * @throws IOException if network error occurs
+ * @throws MetaAnalyzerException if the repo returns an unexpected result
+ */
+ private JSONArray resolveLeaves(final JSONObject page) throws IOException, MetaAnalyzerException {
+ if (page == null) {
+ return null;
}
- return filteredVersions;
- }
- private boolean performLastPublishedCheck(final MetaModel meta, final Component component) {
- final String url = String.format(registrationUrl, urlEncode(component.getPurl().getName().toLowerCase()), urlEncode(meta.getLatestVersion()));
- try (final CloseableHttpResponse response = processHttpRequest(url)) {
- if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
- if (response.getEntity() != null) {
- String stringResponse = EntityUtils.toString(response.getEntity());
- if (!stringResponse.equalsIgnoreCase("") && !stringResponse.equalsIgnoreCase("{}")) {
- JSONObject jsonResponse = new JSONObject(stringResponse);
- final String updateTime = jsonResponse.optString("published", null);
- if (updateTime != null) {
- meta.setPublishedTimestamp(parseUpdateTime(updateTime));
- }
- return true;
- }
- }
+ final JSONArray inline = page.optJSONArray(NUGET_KEY_ITEMS);
+ if (inline != null && !inline.isEmpty()) {
+ LOGGER.trace("Processing inline catalog entries");
+ return inline;
+ }
+
+ final String pageUrl = page.optString("@id", null);
+ if (pageUrl == null || pageUrl.isBlank()) {
+ return null;
+ }
+
+ LOGGER.trace("Retrieving catalog entry page " + pageUrl);
+ try (final CloseableHttpResponse resp = processHttpRequest(pageUrl)) {
+ if (resp.getStatusLine().getStatusCode() == HttpStatus.SC_OK && resp.getEntity() != null) {
+ final var pageJson = new JSONObject(EntityUtils.toString(resp.getEntity()));
+ return pageJson.optJSONArray(NUGET_KEY_ITEMS);
} else {
- handleUnexpectedHttpResponse(LOGGER, url, response.getStatusLine().getStatusCode(), response.getStatusLine().getReasonPhrase(), component);
+ handleUnexpectedHttpResponse(LOGGER, pageUrl, resp.getStatusLine().getStatusCode(), resp.getStatusLine().getReasonPhrase(), null);
+ throw new MetaAnalyzerException("Could not retrieve catalog entry page when processing " + pageUrl);
}
- } catch (IOException e) {
- handleRequestException(LOGGER, e);
- } catch (Exception ex) {
- throw new MetaAnalyzerException(ex);
}
- return false;
}
- private void initializeEndpoints() {
- final String url = baseUrl + INDEX_URL;
- try {
- try (final CloseableHttpResponse response = processHttpRequest(url)) {
- if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
- if(response.getEntity()!=null){
- String responseString = EntityUtils.toString(response.getEntity());
- JSONObject responseJson = new JSONObject(responseString);
- final JSONArray resources = responseJson.getJSONArray("resources");
- final JSONObject packageBaseResource = findResourceByType(resources, "PackageBaseAddress");
- final JSONObject registrationsBaseResource = findResourceByType(resources, "RegistrationsBaseUrl/Versioned");
- if (packageBaseResource != null && registrationsBaseResource != null) {
- versionQueryUrl = packageBaseResource.getString("@id") + "%s/index.json";
- registrationUrl = registrationsBaseResource.getString("@id") + "%s/%s.json";
- }
- }
- }
+ /**
+ * Scan the supplied leaves to extract the latest listed version. NuGet does not guarantee release order
+ * so scan the entire array although, anecdotally, the collection does generally appear to be in ascending order
+ * @param leaves Items to be scanned
+ * @param includePreRelease include pre-release versions in latest version lookup
+ * @return {@link AbridgedNugetCatalogEntry containing the latest version found in the leaves collection
+ */
+ private AbridgedNugetCatalogEntry findHighestVersionFromLeaves(final JSONArray leaves, final boolean includePreRelease) {
+
+ if (leaves == null || leaves.isEmpty()) {
+ return null;
+ }
+
+ AbridgedNugetCatalogEntry bestEntry = null;
+ ComparableVersion newestVersionFound = null;
+
+ for (int i = 0; i < leaves.length(); i++) {
+ final JSONObject leaf = leaves.optJSONObject(i);
+ AbridgedNugetCatalogEntry entry = null;
+
+ if (leaf.has("catalogEntry")) {
+ entry = parseCatalogEntry(leaf.optJSONObject("catalogEntry"));
+ }
+
+ if (entry == null || entry.getVersion() == null || (isPreRelease(entry.getVersion()) && !includePreRelease)) {
+ continue;
+ }
+
+ final ComparableVersion entryVersion = new ComparableVersion(entry.getVersion());
+ if (newestVersionFound == null || entryVersion.compareTo(newestVersionFound) > 0) {
+ newestVersionFound = entryVersion;
+ bestEntry = entry;
+ }
+ }
+
+ return bestEntry;
+ }
+
+ /**
+ * Parse a single catalog entry to extract the version and published information. Could be extended to include other
+ * fields (such as listed) if required. Returns null immediately if the entry is unlisted.
+ * @param catalogEntry Catalog entry to be parsed
+ * @return {@link AbridgedNugetCatalogEntry} if version is valid, null if not
+ */
+ private AbridgedNugetCatalogEntry parseCatalogEntry(final JSONObject catalogEntry) {
+
+ // Listed is optional so assume package is listed unless explicitly hidden
+ boolean listed = catalogEntry.optBoolean("listed", true);
+
+ if(!listed) {
+ return null;
+ }
+
+ var version = catalogEntry.optString("version", null);
+ if (version == null || version.isBlank()) {
+ return null;
+ }
+
+ AbridgedNugetCatalogEntry entry = new AbridgedNugetCatalogEntry();
+ entry.setVersion(version);
+
+ var updateTime = catalogEntry.optString("published", null);
+ if (updateTime != null) {
+ entry.setPublishedTimestamp(parseUpdateTime(updateTime));
+ }
+
+ return entry;
+ }
+
+ /**
+ * NuGet considers a version string with any suffix after a hyphen to be pre-release according to
+ * the documentation. This method could be expanded if we need to cover other rules.
+ * @param version Version string to be tested
+ * @return True if version matches pre-release conventions, false otherwise
+ */
+ private boolean isPreRelease(final String version) {
+ return version.contains("-");
+ }
+
+ /**
+ * Connects to the NuGet repo, retrieves the service index and attempts to find the best RegistrationsBaseUrl
+ * @return RegistrationsBaseUrl if found, null otherwise
+ */
+ private String findRegistrationsBaseUrl() {
+
+ JSONObject responseJson = null;
+
+ try (final CloseableHttpResponse resp = processHttpRequest(this.serviceIndexUrl)) {
+ if (resp.getStatusLine().getStatusCode() == HttpStatus.SC_OK && resp.getEntity() != null) {
+ responseJson = new JSONObject(EntityUtils.toString(resp.getEntity()));
+ } else {
+ handleUnexpectedHttpResponse(LOGGER, this.serviceIndexUrl, resp.getStatusLine().getStatusCode(), resp.getStatusLine().getReasonPhrase(), null);
+ throw new MetaAnalyzerException("Could not initialize NugetMetaAnalyzer - unexpected response from NuGet service. Response code was " + resp.getStatusLine().getStatusCode() + ".");
}
} catch (IOException e) {
handleRequestException(LOGGER, e);
}
+
+ if (responseJson != null) {
+ final JSONArray resources = responseJson.optJSONArray("resources");
+ final String regBaseUrl = extractRegistrationBaseUrlFromJson(resources);
+ if (regBaseUrl != null) {
+ LOGGER.debug("RegistrationsBaseUrl selected: " + regBaseUrl);
+ return regBaseUrl;
+ }
+ }
+
+ LOGGER.debug("Could not find the RegistrationsBaseUrl at " + this.serviceIndexUrl);
+ return null;
+ }
+
+ /**
+ * Attempts to find the "best" RegistrationsBaseUrl from the NuGet service index preferring SemVer 2 with
+ * compression, SemVer 2 without compression then non-compressed, non-SemVer2.
+ * See MS
+ * spec states that ISO8601 should be used but that standard is flexible when it comes to timezone info.
+ *
+ * The ISO_INSTANT formatter handles time with timezone and milliseconds ("yyyy-MM-dd'T'HH:mm:ss.SSSXXX") and
+ * UTC-only ("yyyy-MM-dd'T'HH:mm:ss'Z'"). A fallback LocalDateTime parser handles cases without a timezone
+ * ("yyyy-MM-dd'T'HH:mm:ss").
+ * @param nugetDateTimeString Date time string in one of NuGet's permitted formats
+ * @return Date if input could be parsed, null if date could not be parsed
+ */
+ protected Date parseUpdateTime(String nugetDateTimeString) {
+ if (nugetDateTimeString == null) {
return null;
}
- // NuGet repositories may use differing date formats, so we try a few date formats that are commonly used until the right one is found.
- for (DateFormat dateFormat : SUPPORTED_DATE_FORMATS) {
+ try {
+ TemporalAccessor ta = DateTimeFormatter.ISO_INSTANT.parse(nugetDateTimeString);
+ return Date.from(Instant.from(ta));
+ } catch (DateTimeParseException e) {
try {
- return dateFormat.parse(updateTime);
- } catch (ParseException e) {
- LOGGER.warn("An error occurred while parsing upload time for a NuGet component - Repo returned: " + updateTime);
+ LocalDateTime localDateTime = LocalDateTime.parse(nugetDateTimeString);
+ return Date.from(localDateTime.atOffset(ZoneOffset.UTC).toInstant());
+ } catch (DateTimeParseException e2) {
+ return null;
}
}
-
- return null;
}
+
+ /**
+ * Internal class to collate useful version information from the larger NuGet catalog entry
+ */
+ private static class AbridgedNugetCatalogEntry {
+ private String version;
+ private Date publishedTimestamp;
+
+ private String getVersion() {
+ return version;
+ }
+
+ private void setVersion(String version) {
+ this.version = version;
+ }
+
+ private Date getPublishedTimestamp() {
+ return publishedTimestamp;
+ }
+
+ private void setPublishedTimestamp(Date publishedTimestamp) {
+ this.publishedTimestamp = publishedTimestamp;
+ }
+
+ @Override
+ public String toString() {
+ return "AbridgedNugetCatalogEntry{" +
+ "version='" + version + '\'' +
+ ", publishedTimestamp=" + publishedTimestamp +
+ '}';
+ }
+ }
+
}
diff --git a/src/test/java/org/dependencytrack/tasks/repositories/NugetMetaAnalyzerTest.java b/src/test/java/org/dependencytrack/tasks/repositories/NugetMetaAnalyzerTest.java
index 5d9598969..c2537b21f 100644
--- a/src/test/java/org/dependencytrack/tasks/repositories/NugetMetaAnalyzerTest.java
+++ b/src/test/java/org/dependencytrack/tasks/repositories/NugetMetaAnalyzerTest.java
@@ -22,148 +22,550 @@ import com.github.packageurl.PackageURL;
import org.apache.http.HttpHeaders;
import org.dependencytrack.model.Component;
import org.dependencytrack.model.RepositoryType;
-import org.junit.jupiter.api.AfterAll;
-import org.junit.jupiter.api.Assertions;
-import org.junit.jupiter.api.BeforeAll;
-import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.*;
import org.junit.jupiter.params.ParameterizedTest;
-import org.junit.jupiter.params.provider.Arguments;
-import org.junit.jupiter.params.provider.MethodSource;
+import org.junit.jupiter.params.provider.ValueSource;
import org.mockserver.client.MockServerClient;
import org.mockserver.integration.ClientAndServer;
-
-import java.util.stream.Stream;
+import org.mockserver.model.Header;
import java.nio.file.Files;
import java.nio.file.Paths;
-import java.text.DateFormat;
-import java.text.ParseException;
-import java.text.SimpleDateFormat;
+import java.util.ArrayList;
import java.util.Date;
+import java.util.List;
-import static org.dependencytrack.tasks.repositories.NugetMetaAnalyzer.SUPPORTED_DATE_FORMATS;
import static org.mockserver.model.HttpRequest.request;
import static org.mockserver.model.HttpResponse.response;
class NugetMetaAnalyzerTest {
+ public static final String LOCALHOST_REPO_INDEX = "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/index.json";
private static ClientAndServer mockServer;
@BeforeAll
- public static void beforeClass() {
+ static void beforeClass() throws Exception {
mockServer = ClientAndServer.startClientAndServer(1080);
- }
- @AfterAll
- public static void afterClass() {
- mockServer.stop();
- }
-
- // This test is to check if the analyzer is:
- // * excluding pre-release versions if a release version exists,
- // * including pre-release versions if no release version exists
- // The test is transient depending on the current version of the package
- // retrieved from the repository at the time of running.
- // For example, when it was created, the latest released version of:
- // * Microsoft.Extensions.DependencyInjection was 9.0.0-preview.1.24080.9
- // * OpenTelemetry.Instrumentation.SqlClient was 1.12.0-beta.2 (no release version exists)
- @ParameterizedTest
- @MethodSource("testAnalyzerData")
- void testAnalyzer(String purl, boolean isLatestVersionPreRelease) throws Exception {
- Component component = new Component();
- component.setPurl(new PackageURL(purl));
- NugetMetaAnalyzer analyzer = new NugetMetaAnalyzer();
-
- analyzer.setRepositoryBaseUrl("https://api.nuget.org");
- MetaModel metaModel = analyzer.analyze(component);
-
- Assertions.assertTrue(analyzer.isApplicable(component));
- Assertions.assertEquals(RepositoryType.NUGET, analyzer.supportedRepositoryType());
- Assertions.assertNotNull(metaModel.getLatestVersion());
- Assertions.assertNotNull(metaModel.getPublishedTimestamp());
- Assertions.assertEquals(isLatestVersionPreRelease, metaModel.getLatestVersion().contains("-"));
- }
-
- static Stream testAnalyzerData() {
- return Stream.of(
- Arguments.of("pkg:nuget/CycloneDX.Core@5.4.0", false),
- Arguments.of("pkg:nuget/Microsoft.Extensions.DependencyInjection@8.0.0", false),
- Arguments.of("pkg:nuget/Microsoft.Extensions.DependencyInjection@8.0.0-beta.21301.5", false),
- Arguments.of("pkg:nuget/OpenTelemetry.Instrumentation.SqlClient@1.12.0-beta.1", true)
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json",
+ null, "application/json", 200
);
}
- @Test
- void testAnalyzerWithPrivatePackageRepository() throws Exception {
- String mockIndexResponse = readResourceFileToString("/unit/tasks/repositories/https---localhost-1080-v3-index.json");
- new MockServerClient("localhost", mockServer.getPort())
- .when(
- request()
- .withMethod("GET")
- .withPath("/v3/index.json")
- )
- .respond(
- response()
- .withStatusCode(200)
- .withHeader(HttpHeaders.CONTENT_TYPE, "application/json")
- .withBody(mockIndexResponse)
- );
- String encodedBasicHeader = "Basic OnBhc3N3b3Jk";
-
- String mockVersionResponse = readResourceFileToString("/unit/tasks/repositories/https---localhost-1080-v3-flat2" +
- "-nunitprivate-index.json");
- new MockServerClient("localhost", mockServer.getPort())
- .when(
- request()
- .withMethod("GET")
- .withPath("/v3/flat2/nunitprivate/index.json")
- .withHeader("Authorization", encodedBasicHeader)
- )
- .respond(
- response()
- .withStatusCode(200)
- .withHeader(HttpHeaders.CONTENT_TYPE, "application/json")
- .withBody(mockVersionResponse)
- );
-
- String mockRegistrationResponse = readResourceFileToString("/unit/tasks/repositories/https---localhost-1080-v3" +
- "-registrations2-nunitprivate-502.json");
- new MockServerClient("localhost", mockServer.getPort())
- .when(
- request()
- .withMethod("GET")
- .withPath("/v3/registrations2-semver2/nunitprivate/5.0.2.json")
- .withHeader("Authorization", encodedBasicHeader)
- )
- .respond(
- response()
- .withStatusCode(200)
- .withHeader(HttpHeaders.CONTENT_TYPE, "application/json")
- .withBody(mockRegistrationResponse)
- );
- Component component = new Component();
- component.setPurl(new PackageURL("pkg:nuget/NUnitPrivate@5.0.1"));
- NugetMetaAnalyzer analyzer = new NugetMetaAnalyzer();
- analyzer.setRepositoryUsernameAndPassword(null, "password");
- analyzer.setRepositoryBaseUrl("http://localhost:1080");
- MetaModel metaModel = analyzer.analyze(component);
- Assertions.assertEquals("5.0.2", metaModel.getLatestVersion());
- Assertions.assertNotNull(metaModel.getPublishedTimestamp());
+ private static void setupMockServerClient(
+ String path,
+ String responseFile,
+ String encodedBasicHeader
+ ) throws Exception {
+ setupMockServerClient(path, responseFile, encodedBasicHeader, "application/json", 200);
}
- @Test
- void testPublishedDateTimeFormat() throws ParseException {
- Date dateParsed = null;
- for (DateFormat dateFormat : SUPPORTED_DATE_FORMATS) {
- try {
- dateParsed = dateFormat.parse("1900-01-01T00:00:00+00:00");
- } catch (ParseException e) {}
+ private static void setupMockServerClient(
+ String path,
+ String responseFile,
+ String encodedBasicHeader,
+ String contentType,
+ int statusCode
+ ) throws Exception {
+
+ List headers = new ArrayList<>();
+ if (encodedBasicHeader != null) {
+ headers.add(new Header("Authorization", encodedBasicHeader));
}
- DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
- Assertions.assertEquals(dateFormat.parse("1900-01-01T00:00:00+00:00"), dateParsed);
+
+ new MockServerClient("localhost", 1080)
+ .when(
+ request()
+ .withMethod("GET")
+ .withPath(path)
+ .withHeaders(headers)
+ )
+ .respond(
+ response()
+ .withStatusCode(statusCode)
+ .withHeader(HttpHeaders.CONTENT_TYPE, contentType)
+ .withBody(Files.readString(Paths.get(NugetMetaAnalyzerTest.class.getResource(responseFile).toURI())))
+ );
}
- private String readResourceFileToString(String fileName) throws Exception {
- return Files.readString(Paths.get(getClass().getResource(fileName).toURI()));
+ @AfterAll
+ static void afterClass() {
+ mockServer.stop();
}
+
+ /**
+ * Various tests to confirm error handling behaviour when, e.g. the repo or package cannot
+ * be found. The analyzer should still return a MetaModel in these cases with null version and
+ * published. The analyzer should NOT crash.
+ */
+ @Nested
+ class ErrorHandlingTests {
+
+ @Test
+ void testBaseUrlNotFoundBehaviourWhenSettingRepoUrl() {
+ Assertions.assertDoesNotThrow(() -> {
+ var analyzer = new NugetMetaAnalyzer();
+ analyzer.setRepositoryBaseUrl("http://no-such-api.this-host-does-not-exist-nuget-repo.invalid");
+ });
+ }
+
+ @Test
+ void testBaseUrlNotFoundBehaviourWhenCallingAnalyze() {
+ Assertions.assertDoesNotThrow(() -> {
+ var analyzer = new NugetMetaAnalyzer();
+ analyzer.setRepositoryBaseUrl("http://no-such-api.this-host-does-not-exist-nuget-repo.invalid");
+
+ Component component = new Component();
+ component.setPurl(new PackageURL("pkg:nuget/CycloneDX.Core@5.4.0"));
+ MetaModel metaModel = analyzer.analyze(component);
+
+ Assertions.assertTrue(analyzer.isApplicable(component));
+ assertMetaModelExistsButEmpty(analyzer, metaModel);
+ });
+ }
+
+ @Test
+ void testRepoValidButPackageNotFoundBehaviour() throws Exception {
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/testing.no.such.package/index.json",
+ "/unit/tasks/repositories/https---nuget.org.no-such-package.xml",
+ null,
+ "application/xml",
+ 404
+ );
+
+ Component component = new Component();
+ component.setPurl(new PackageURL("pkg:nuget/Testing.No.Such.Package@8.0.0"));
+
+ var analyzer = new NugetMetaAnalyzer();
+ analyzer.setRepositoryBaseUrl(LOCALHOST_REPO_INDEX);
+ MetaModel metaModel = analyzer.analyze(component);
+
+ assertMetaModelExistsButEmpty(analyzer, metaModel);
+ }
+
+ @Test
+ void testErrorBetweenPageRequestsReturnsNullData() throws Exception {
+
+ var analyzer = new NugetMetaAnalyzer();
+ analyzer.setRepositoryBaseUrl(LOCALHOST_REPO_INDEX);
+
+ var component = new Component();
+ component.setName("Microsoft.Data.SqlClient");
+ component.setPurl(new PackageURL("pkg:nuget/Microsoft.Data.SqlClient@5.1.0"));
+
+ mockServer.reset();
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json",
+ null, "application/json", 200
+ );
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.index.json",
+ null
+ );
+
+ // Page 2
+ new MockServerClient("localhost", 1080)
+ .when(
+ request()
+ .withMethod("GET")
+ .withPath("/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json")
+ )
+ .respond(
+ response()
+ .withStatusCode(401)
+ .withHeader(HttpHeaders.CONTENT_TYPE, "application/xml")
+ .withBody("TestError
Not Authorised")
+ );
+
+ // Page 1
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertNull(metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testNullComponentThrowsIllegalArgumentException() {
+ var analyzer = new NugetMetaAnalyzer();
+ analyzer.setRepositoryBaseUrl(LOCALHOST_REPO_INDEX);
+ Assertions.assertThrows(IllegalArgumentException.class, () -> analyzer.analyze(null));
+ }
+
+ }
+
+ private void assertMetaModelExistsButEmpty(NugetMetaAnalyzer analyzer, MetaModel metaModel) {
+ Assertions.assertEquals(RepositoryType.NUGET, analyzer.supportedRepositoryType());
+ Assertions.assertNull(metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ /**
+ * Tests against JSON files captured from nuget.org to avoid making live calls and to control test data state. Main
+ * difference between Nuget and the Artifactory tests is Nuget includes a published date value. To run these tests
+ * against the live nuget feed, simply change the URL in the setup method to api.nuget.org - you can ignore the
+ * MockServerClient calls because they won't be invoked.
+ */
+ @Nested
+ class NugetTests {
+
+ private Component component;
+ private NugetMetaAnalyzer analyzer;
+
+ @BeforeEach
+ void setUp() throws Exception {
+ this.component = new Component();
+ this.component.setInternal(false);
+ this.component.setName("Microsoft.Data.SqlClient");
+ this.component.setPurl(new PackageURL("pkg:nuget/Microsoft.Data.SqlClient@5.0.1"));
+
+ this.analyzer = new NugetMetaAnalyzer();
+ this.analyzer.setRepositoryBaseUrl("https://api.nuget.org");
+ }
+
+ @Test
+ void testAnalyzerWithMultipleInlinePages() throws Exception {
+
+ // This test also effectively covers pre-release versions (e.g. 6.1.0-preview2.25178.5)
+ // and unlisted versions (6.1.0) by returning 6.0.2
+
+ setupMockServerClient(
+ "/v3/index.json",
+ "/unit/tasks/repositories/https---nuget.org.v3-index.json",
+ null
+ );
+
+ setupMockServerClient(
+ "/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json",
+ "/unit/tasks/repositories/https---nuget.org.registration-semver2.mds.index-inline-pages.json",
+ null
+ );
+
+ this.analyzer.setRepositoryBaseUrl("http://localhost:1080/v3/index.json");
+
+ MetaModel metaModel = analyzer.analyze(component);
+
+ Assertions.assertTrue(analyzer.isApplicable(component));
+ Assertions.assertEquals(RepositoryType.NUGET, analyzer.supportedRepositoryType());
+ Assertions.assertNotNull(metaModel.getLatestVersion());
+
+ Assertions.assertEquals("6.0.2", metaModel.getLatestVersion());
+
+ // nuget feeds should return a published date
+ Assertions.assertNotNull(metaModel.getPublishedTimestamp());
+ Date expected = analyzer.parseUpdateTime("2025-04-25T21:29:47.897+00:00");
+ Assertions.assertEquals(expected, metaModel.getPublishedTimestamp());
+ }
+
+ }
+
+ /**
+ * Artifactory doesn't provide published dates and favours (only uses?) paged registration data.
+ * This collection uses the service index to find the best RegistrationsBaseUrl, in this case
+ * for semver2
+ */
+ @Nested
+ class ArtifactoryTestsSemver2Tests {
+
+ NugetMetaAnalyzer analyzer;
+ Component component;
+
+ @BeforeEach
+ void setUp() throws Exception {
+
+ this.analyzer = new NugetMetaAnalyzer();
+ this.analyzer.setRepositoryBaseUrl(LOCALHOST_REPO_INDEX);
+
+ this.component = new Component();
+ this.component.setName("Microsoft.Data.SqlClient");
+ this.component.setPurl(new PackageURL("pkg:nuget/Microsoft.Data.SqlClient@5.1.0"));
+
+ mockServer.reset();
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json",
+ null, "application/json", 200
+ );
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.index.json",
+ null
+ );
+
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfo() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2.json",
+ null
+ );
+
+ // Page 1
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("6.0.2", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoIgnorePreReleaseAndUnlisted() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-check-pre-release.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("5.1.2", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoWhenPage2AllUnlisted() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-unlisted.json",
+ null
+ );
+
+ // Page 1
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("5.1.0", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoWhenPage2AllPreRelease() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-pre-release.json",
+ null
+ );
+
+ // Page 1
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("5.1.0", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithPreReleaseOnlyVersionsReturnsLatestPreReleaseVersion() throws Exception {
+
+ // Test for log warning covered in 5075 - ensure no errors are thrown / logged
+ // when no release versions exist
+
+ setupMockServerClient(
+ "/v3/index.json",
+ "/unit/tasks/repositories/https---nuget.org.v3-index.json",
+ null
+ );
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration-semver2/opentelemetry.instrumentation.sqlclient/index.json",
+ "/unit/tasks/repositories/https---nuget.org.registration-semver2.beta-releases-only.index-inline-pages.json",
+ null
+ );
+
+ var betaOnlyComponent = new Component();
+ betaOnlyComponent.setInternal(false);
+ betaOnlyComponent.setName("OpenTelemetry.Instrumentation.SqlClient");
+ betaOnlyComponent.setPurl(new PackageURL("pkg:nuget/OpenTelemetry.Instrumentation.SqlClient@1.12.0-beta.2"));
+
+ MetaModel metaModel = analyzer.analyze(betaOnlyComponent);
+
+ Assertions.assertTrue(analyzer.isApplicable(betaOnlyComponent));
+ Assertions.assertEquals(RepositoryType.NUGET, analyzer.supportedRepositoryType());
+ Assertions.assertNotNull(metaModel.getLatestVersion());
+ Assertions.assertEquals("1.12.0-beta.2", metaModel.getLatestVersion());
+ Date expected = analyzer.parseUpdateTime("2025-07-15T04:42:33.33+00:00");
+ Assertions.assertEquals(expected, metaModel.getPublishedTimestamp());
+ }
+
+ }
+
+ /**
+ * Artifactory doesn't provide published dates and favours (only uses?) paged registration data.
+ * This collection forces a semver1 RegistrationsBaseUrl. The chosen test package,
+ * microsoft.data.sqlclient, returns the same number of items (64) as the semver2 version but the
+ * results appear on a single page instead of 2 with the semver2 version.
+ */
+ @Nested
+ class ArtifactoryTestsSemver1Tests {
+
+ NugetMetaAnalyzer analyzer;
+ Component component;
+
+ @BeforeEach
+ void setUp() throws Exception {
+
+ this.analyzer = new NugetMetaAnalyzer();
+ this.analyzer.setRepositoryBaseUrl(LOCALHOST_REPO_INDEX);
+ this.analyzer.setRegistrationsBaseUrl("http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/");
+
+ this.component = new Component();
+ this.component.setName("Microsoft.Data.SqlClient");
+ this.component.setPurl(new PackageURL("pkg:nuget/Microsoft.Data.SqlClient@5.1.0"));
+
+ mockServer.reset();
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json",
+ null, "application/json", 200
+ );
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.index.json",
+ null
+ );
+
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/1.1.2.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page1.json",
+ null
+ );
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfo() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/5.2.2/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("6.0.2", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoIgnorePreReleaseAndUnlisted() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/5.2.2/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-check-pre-release.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("6.0.1", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoWhenPage2AllUnlisted() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/5.2.2/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-unlisted.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("1.1.2", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ @Test
+ void testAnalyzerWithMultipageRegistrationInfoWhenPage2AllPreRelease() throws Exception {
+
+ // Page 2
+ setupMockServerClient(
+ "/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/5.2.2/6.1.0.json",
+ "/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-pre-release.json",
+ null
+ );
+
+ MetaModel metaModel = analyzer.analyze(component);
+ Assertions.assertEquals("1.1.2", metaModel.getLatestVersion());
+ Assertions.assertNull(metaModel.getPublishedTimestamp());
+ }
+
+ }
+
+ @Nested
+ class DateParserTests {
+
+ NugetMetaAnalyzer analyzer = new NugetMetaAnalyzer();
+
+ @ParameterizedTest
+ @ValueSource(strings = {
+ "1900-01-01T00:00:00+00:00",
+ "2025-08-13T23:22:21.20+01:00",
+ "2025-08-13T23:22:21Z",
+ "2020-08-04T10:39:03.7136823",
+ "2025-08-13T23:22:21",
+ "2020-08-04T10:39:03.7136823",
+ "2023-03-28T22:26:40.43+00:00",
+ "2025-08-14T08:12:23.8207879Z"
+ })
+ void shouldParseValidDateFormats(String dateString) {
+ Date result = this.analyzer.parseUpdateTime(dateString);
+ Assertions.assertNotNull(result);
+ }
+
+ @Test
+ void shouldReturnNullForBlankString() {
+ Assertions.assertNull(this.analyzer.parseUpdateTime(" "));
+ }
+
+ @Test
+ void shouldReturnNullForInvalidDate() {
+ Assertions.assertNull(this.analyzer.parseUpdateTime("not-a-date"));
+ }
+
+ @Test
+ void shouldReturnNullForNullInput() {
+ Assertions.assertNull(this.analyzer.parseUpdateTime(null));
+ }
+
+ }
+
}
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-flat2-nunitprivate-index.json b/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-flat2-nunitprivate-index.json
deleted file mode 100644
index d12b35d0e..000000000
--- a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-flat2-nunitprivate-index.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "versions": [
- "5.0.2",
- "5.0.1"
- ]
-}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-index.json b/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-index.json
deleted file mode 100644
index c3f41e19f..000000000
--- a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-index.json
+++ /dev/null
@@ -1,40 +0,0 @@
-{
- "@context": {
- "@vocab": "http://schema.nuget.org/services#",
- "comment": "http://www.w3.org/2000/01/rdf-schema#comment",
- "label": "http://www.w3.org/2000/01/rdf-schema#label"
- },
- "resources": [
- {
- "@id": "http://localhost:1080/v2/",
- "@type": "PackagePublish/2.0.0"
- },
- {
- "@id": "http://localhost:1080/v2/",
- "@type": "LegacyGallery/2.0.0"
- },
- {
- "@id": "http://localhost:1080/v3/registrations2/",
- "@type": "RegistrationsBaseUrl/3.0.0-beta"
- },
- {
- "@id": "http://localhost:1080/v3/registrations2-semver2/",
- "@type": "RegistrationsBaseUrl/3.6.0",
- "comment": "This base URL includes SemVer 2.0.0 packages."
- },
- {
- "@id": "http://localhost:1080/v3/registrations2-semver2/",
- "@type": "RegistrationsBaseUrl/Versioned",
- "comment": "This base URL includes SemVer 2.0.0 packages."
- },
- {
- "@id": "http://localhost:1080/v3/query2/",
- "@type": "SearchQueryService/3.0.0-beta"
- },
- {
- "@id": "http://localhost:1080/v3/flat2/",
- "@type": "PackageBaseAddress/3.0.0"
- }
- ],
- "version": "3.0.0-beta"
-}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-registrations2-nunitprivate-502.json b/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-registrations2-nunitprivate-502.json
deleted file mode 100644
index 7a0fe1fde..000000000
--- a/src/test/resources/unit/tasks/repositories/https---localhost-1080-v3-registrations2-nunitprivate-502.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "@id": "http://localhost:1080/v3/registrations2/nugetprivate/5.0.2.json",
- "@type": [
- "Package",
- "http://schema.nuget.org/catalog#Permalink"
- ],
- "catalogEntry": "http://localhost:1080/commitLog/82a44df5f3474a989c4ffc1fba9ffff4",
- "listed": true,
- "packageContent": "http://localhost:1080/v3/flat2/nugetprivate/5.0.2/nugetprivate.5.0.2.nupkg",
- "published": "2022-04-13T13:30:25Z",
- "registration": "http://localhost:1080/v3/registrations2/nugetprivate/index.json",
- "@context": {
- "@vocab": "http://schema.nuget.org/schema#",
- "xsd": "http://www.w3.org/2001/XMLSchema#",
- "catalogEntry": {
- "@type": "@id"
- },
- "registration": {
- "@type": "@id"
- },
- "packageContent": {
- "type": "@id"
- },
- "published": {
- "@type": "xsd:dateTime"
- }
- }
-}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.index.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.index.json
new file mode 100644
index 000000000..a3cb06cda
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.index.json
@@ -0,0 +1,18 @@
+{
+ "count": 2,
+ "items": [
+ {
+ "count": 10,
+ "lower": "1.0.19123.2-Preview",
+ "upper": "1.1.2",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/1.1.2.json"
+ },
+ {
+ "count": 6,
+ "lower": "5.2.2",
+ "upper": "6.1.0",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/5.2.2/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page1.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page1.json
new file mode 100644
index 000000000..090df3335
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page1.json
@@ -0,0 +1,1369 @@
+{
+ "count": 60,
+ "lower": "1.0.19123.2-preview",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "upper": "1.1.2",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n \nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19123.2-preview/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19123.2-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19123.2-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19123.2-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19123.2-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19123.2-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n \nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19128.1-preview/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19128.1-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19128.1-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19128.1-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19128.1-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19128.1-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19189.1-preview/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19189.1-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19189.1-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19189.1-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19178.1-Preview, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19189.1-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19189.1-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19221.1-preview/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19221.1-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19221.1-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19221.1-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19221.2-Preview, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19221.1-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19221.1-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19239.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19239.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19239.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19239.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19235.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19239.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19239.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19249.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19249.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19249.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19249.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19235.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19249.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19249.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19269.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19269.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19269.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19269.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19235.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.0.19269.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.0.19269.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen running on Windows, this library has a dependency on Microsoft.Data.SqlClient.SNI on .NET Framework and runtime.native.System.Data.SqlClient.sni on .NET Core, which requires the Microsoft Visual C++ Redistributable to be installed:\nhttps://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.1.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.1.0/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.1.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.1.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.1.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.1.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.1.0, 1.2.0)",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.1.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.1.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.1.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.1.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.1.0, 1.2.0)",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[5.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/1.1.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/1.1.2.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-pre-release.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-pre-release.json
new file mode 100644
index 000000000..9cfbbcee4
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-pre-release.json
@@ -0,0 +1,1465 @@
+{
+ "count": 6,
+ "lower": "5.2.2",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.2-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.3-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.1-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0-test-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-unlisted.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-unlisted.json
new file mode 100644
index 000000000..ec23f6ac6
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-all-unlisted.json
@@ -0,0 +1,1465 @@
+{
+ "count": 6,
+ "lower": "5.2.2",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.2/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.3/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-check-pre-release.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-check-pre-release.json
new file mode 100644
index 000000000..b4af1238a
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2-check-pre-release.json
@@ -0,0 +1,1465 @@
+{
+ "count": 6,
+ "lower": "5.2.2",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2-pre-release-test",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2.json
new file mode 100644
index 000000000..ed5b59805
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver1.mds.page2.json
@@ -0,0 +1,1465 @@
+{
+ "count": 6,
+ "lower": "5.2.2",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/5.2.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/5.2.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/registration/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/microsoft.data.sqlclient/page/1.0.19123.2-preview/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.index.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.index.json
new file mode 100644
index 000000000..5c868fe49
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.index.json
@@ -0,0 +1,18 @@
+{
+ "count": 2,
+ "items": [
+ {
+ "count": 64,
+ "lower": "1.0.19123.2-Preview",
+ "upper": "5.1.0",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json"
+ },
+ {
+ "count": 25,
+ "lower": "5.1.1",
+ "upper": "6.1.0",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json
new file mode 100644
index 000000000..ad75ae32b
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page1.json
@@ -0,0 +1,2170 @@
+{
+ "count": 8,
+ "lower": "1.0.19123.2-preview",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "upper": "5.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n \nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19123.2-preview/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19123.2-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19123.2-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19123.2-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19123.2-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/1.0.19123.2-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19221.1-preview/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19221.1-Preview/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19221.1-preview",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19221.1-Preview",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19221.2-Preview, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19221.1-preview",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/1.0.19221.1-preview.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/1.0.19239.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19239.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19239.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19239.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[1.0.19235.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.sni"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/runtime.native.system.data.sqlclient.sni/index.json",
+ "id": "runtime.native.System.Data.SqlClient.sni"
+ },
+ {
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.memory/index.json",
+ "id": "System.Memory"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/1.0.19239.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/1.0.19239.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.0.0-preview1.22069.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.0-preview1.22069.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.0-preview1.22069.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.0-preview1.22069.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.algorithms/index.json",
+ "id": "System.Security.Cryptography.Algorithms"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.primitives/index.json",
+ "id": "System.Security.Cryptography.Primitives"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.0-preview1.22069.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.0.0-preview1.22069.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.0.0/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.0/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.algorithms/index.json",
+ "id": "System.Security.Cryptography.Algorithms"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.primitives/index.json",
+ "id": "System.Security.Cryptography.Primitives"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.0.2/icon",
+ "deprecation": {
+ "reasons": [
+ "Other"
+ ],
+ "message": "This version is out of support."
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.algorithms/index.json",
+ "id": "System.Security.Cryptography.Algorithms"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.primitives/index.json",
+ "id": "System.Security.Cryptography.Primitives"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.0-preview1.22279.3/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.0-preview1.22279.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.0-preview1.22279.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.0-preview1.22279.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.algorithms/index.json",
+ "id": "System.Security.Cryptography.Algorithms"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.primitives/index.json",
+ "id": "System.Security.Cryptography.Primitives"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.io/index.json",
+ "id": "System.IO"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.resources.resourcemanager/index.json",
+ "id": "System.Resources.ResourceManager"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.0-preview1.22279.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.0-preview1.22279.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.0/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.0/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/1.0.19123.2-preview/5.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-pre-release.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-pre-release.json
new file mode 100644
index 000000000..4c4cb43db
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-pre-release.json
@@ -0,0 +1,924 @@
+{
+ "count": 3,
+ "lower": "5.1.1",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.1-pre-release-test",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.2-pre-release-test",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.3-pre-release-test",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.3.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-unlisted.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-unlisted.json
new file mode 100644
index 000000000..98bc421c4
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-all-unlisted.json
@@ -0,0 +1,1180 @@
+{
+ "count": 4,
+ "lower": "5.1.1",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.2/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.3/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-check-pre-release.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-check-pre-release.json
new file mode 100644
index 000000000..93883f74e
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2-check-pre-release.json
@@ -0,0 +1,1180 @@
+{
+ "count": 4,
+ "lower": "5.1.1",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.3-testing-pre-release",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2.json
new file mode 100644
index 000000000..a374636f3
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.registration-semver2.mds.page2.json
@@ -0,0 +1,4012 @@
+{
+ "count": 25,
+ "lower": "5.1.1",
+ "parent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/index.json",
+ "upper": "6.1.0",
+ "items": [
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.1.7/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.7/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.7",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.7",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.11, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.1.7",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.1.7.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview1.23109.1/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0-preview1.23109.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview1.23109.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0-preview1.23109.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview1.23109.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.0-preview1.23109.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview4.23342.2/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ],
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056"
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0-preview4.23342.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview4.23342.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0-preview4.23342.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": "net7.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview4.23342.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.0-preview4.23342.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview5.24024.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0-preview5.24024.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview5.24024.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0-preview5.24024.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0-preview1.23340.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0-preview5.24024.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.0-preview5.24024.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.1/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.1/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.1",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.1",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.60.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.60.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.60.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.60.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.60.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.1",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.1.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/5.2.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.interopservices.runtimeinformation/index.json",
+ "id": "System.Runtime.InteropServices.RuntimeInformation"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[4.61.3, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identity.client/index.json",
+ "id": "Microsoft.Identity.Client"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.win32.registry/index.json",
+ "id": "Microsoft.Win32.Registry"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.diagnostics.diagnosticsource/index.json",
+ "id": "System.Diagnostics.DiagnosticSource"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.caching/index.json",
+ "id": "System.Runtime.Caching"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encoding.codepages/index.json",
+ "id": "System.Text.Encoding.CodePages"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.runtime.loader/index.json",
+ "id": "System.Runtime.Loader"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.cng/index.json",
+ "id": "System.Security.Cryptography.Cng"
+ },
+ {
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.principal.windows/index.json",
+ "id": "System.Security.Principal.Windows"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/5.2.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/5.2.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0-preview1.24240.8/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0-preview1.24240.8/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0-preview1.24240.8",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0-preview1.24240.8",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ }
+ ],
+ "targetFramework": "net6.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0-preview1.24240.8",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.0.0-preview1.24240.8.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0-preview3.24332.3/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0-preview3.24332.3/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0-preview3.24332.3",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0-preview3.24332.3",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0-preview3.24332.3",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.0.0-preview3.24332.3.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.0.0.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.2",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.0.2",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.0.2.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview1.25120.4/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview1.25120.4/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0-preview1.25120.4",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0-preview1.25120.4",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0-preview1.25120.4",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.1.0-preview1.25120.4.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview2.25178.5/icon",
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview2.25178.5/license",
+ "listed": true,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0-preview2.25178.5",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0-preview2.25178.5",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0-preview2.25178.5",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.1.0-preview2.25178.5.json"
+ },
+ {
+ "catalogEntry": {
+ "authors": "Microsoft",
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "deprecation": {
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "language": "",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "listed": false,
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0",
+ "dependencyGroups": [
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.buffers/index.json",
+ "id": "System.Buffers"
+ },
+ {
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.data.common/index.json",
+ "id": "System.Data.Common"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.encodings.web/index.json",
+ "id": "System.Text.Encodings.Web"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "dependencies": [
+ {
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/azure.identity/index.json",
+ "id": "Azure.Identity"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.bcl.cryptography/index.json",
+ "id": "Microsoft.Bcl.Cryptography"
+ },
+ {
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient.sni.runtime/index.json",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.extensions.caching.memory/index.json",
+ "id": "Microsoft.Extensions.Caching.Memory"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.jsonwebtokens/index.json",
+ "id": "Microsoft.IdentityModel.JsonWebTokens"
+ },
+ {
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.identitymodel.protocols.openidconnect/index.json",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect"
+ },
+ {
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.sqlserver.server/index.json",
+ "id": "Microsoft.SqlServer.Server"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.configuration.configurationmanager/index.json",
+ "id": "System.Configuration.ConfigurationManager"
+ },
+ {
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.security.cryptography.pkcs/index.json",
+ "id": "System.Security.Cryptography.Pkcs"
+ },
+ {
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/system.text.json/index.json",
+ "id": "System.Text.Json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "id": "Microsoft.Data.SqlClient"
+ },
+ "packageContent": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/Download/microsoft.data.sqlclient/6.1.0",
+ "registration": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/index.json",
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/registration-semver2/microsoft.data.sqlclient/6.1.0.json"
+ }
+ ],
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/microsoft.data.sqlclient/page/5.1.1/6.1.0.json"
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json
new file mode 100644
index 000000000..ab32bf898
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---localhost-nuget-artifactory.v3-index.json
@@ -0,0 +1,77 @@
+{
+ "version": "3.0.0",
+ "resources": [
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/query",
+ "@type": "SearchQueryService",
+ "comment": "Query endpoint of NuGet Search service (primary)"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/",
+ "@type": "RegistrationsBaseUrl",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/nuget-repo",
+ "@type": "LegacyGallery"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/nuget-repo",
+ "@type": "LegacyGallery/2.0.0"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/nuget-repo",
+ "@type": "PackagePublish/2.0.0"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/symbols",
+ "@type": "SymbolPackagePublish/4.9.0"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/query",
+ "@type": "SearchQueryService/3.0.0-rc",
+ "comment": "Query endpoint of NuGet Search service (primary) used by RC clients"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/",
+ "@type": "RegistrationsBaseUrl/3.0.0-rc",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored used by RC clients. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/{id-lower}/index.json",
+ "@type": "PackageDisplayMetadataUriTemplate/3.0.0-rc",
+ "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/{id-lower}/{version-lower}.json",
+ "@type": "PackageVersionDisplayMetadataUriTemplate/3.0.0-rc",
+ "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID, Version"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/query",
+ "@type": "SearchQueryService/3.0.0-beta",
+ "comment": "Query endpoint of NuGet Search service (primary) used by beta clients"
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/",
+ "@type": "RegistrationsBaseUrl/3.0.0-beta",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored used by Beta clients. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration/",
+ "@type": "RegistrationsBaseUrl/3.4.0",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/",
+ "@type": "RegistrationsBaseUrl/3.6.0",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/artifactory/api/nuget/v3/nuget-repo/registration-semver2/",
+ "@type": "RegistrationsBaseUrl/Versioned",
+ "clientVersion": "4.3.0-alpha",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---nuget.org.no-such-package.xml b/src/test/resources/unit/tasks/repositories/https---nuget.org.no-such-package.xml
new file mode 100644
index 000000000..3c80813f1
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---nuget.org.no-such-package.xml
@@ -0,0 +1,3 @@
+BlobNotFound
The specified blob does not exist.
+ RequestId:21575f5c-3b02-45a4-81a6-5e09fd2099db
+ Time:2025-08-12T23:22:21.2000000Z
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.beta-releases-only.index-inline-pages.json b/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.beta-releases-only.index-inline-pages.json
new file mode 100644
index 000000000..826fff46a
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.beta-releases-only.index-inline-pages.json
@@ -0,0 +1,1798 @@
+{
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json",
+ "@type": [
+ "catalog:CatalogRoot",
+ "PackageRegistration",
+ "catalog:Permalink"
+ ],
+ "commitId": "678d20c8-1bca-41c1-ae13-74410a6b284b",
+ "commitTimeStamp": "2025-07-15T04:46:16.960872+00:00",
+ "count": 1,
+ "items": [
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json#page/0.3.0-beta.1/1.12.0-beta.2",
+ "@type": "catalog:CatalogPage",
+ "commitId": "678d20c8-1bca-41c1-ae13-74410a6b284b",
+ "commitTimeStamp": "2025-07-15T04:46:16.960872+00:00",
+ "count": 42,
+ "items": [
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/0.3.0-beta.1.json",
+ "@type": "Package",
+ "commitId": "903fef5c-d8ec-451e-a1cd-15336006e299",
+ "commitTimeStamp": "2020-07-23T22:19:56.7482106+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netframework4.5.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netframework4.5.2/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.3.0-beta.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.5.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netframework4.6.1/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.3.0-beta.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.23.22.19.18/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.3.0-beta.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.3.0-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/0.3.0-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.3.0-beta.1/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2020-07-23T22:17:08.01+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Tracing",
+ "OpenTelemetry",
+ "Management",
+ "Monitoring",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "0.3.0-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.3.0-beta.1/opentelemetry.instrumentation.sqlclient.0.3.0-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/0.4.0-beta.2.json",
+ "@type": "Package",
+ "commitId": "e8ea11f0-fd39-4d0a-a0cd-55017c41ca94",
+ "commitTimeStamp": "2020-07-25T00:08:20.1853079+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netframework4.5.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netframework4.5.2/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.4.0-beta.2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.5.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netframework4.6.1/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.4.0-beta.2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.07.25.00.07.51/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.json#dependencygroup/.netstandard2.0/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[0.4.0-beta.2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.4.0-beta.2/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/0.4.0-beta.2/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.4.0-beta.2/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2020-07-25T00:05:50.913+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Tracing",
+ "OpenTelemetry",
+ "Management",
+ "Monitoring",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "0.4.0-beta.2"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/0.4.0-beta.2/opentelemetry.instrumentation.sqlclient.0.4.0-beta.2.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc1.1.json",
+ "@type": "Package",
+ "commitId": "9e2c19c6-acfc-46ad-b4ef-b647ffd9b780",
+ "commitTimeStamp": "2020-11-18T06:00:54.3217685+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netframework4.5.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netframework4.5.2/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc1.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.5.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netframework4.6.1/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc1.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2020.11.18.06.00.18/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.json#dependencygroup/.netstandard2.0/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc1.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc1.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc1.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc1.1/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2020-11-18T05:58:08.243+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc1.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc1.1/opentelemetry.instrumentation.sqlclient.1.0.0-rc1.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc2.json",
+ "@type": "Package",
+ "commitId": "da1b3b89-ec62-47e0-93ac-ca8e59952d11",
+ "commitTimeStamp": "2021-01-30T03:44:51.3895665+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netframework4.5.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netframework4.5.2/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.5.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netframework4.6.1/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2021.01.30.03.43.51/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.json#dependencygroup/.netstandard2.0/opentelemetry",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry",
+ "range": "[1.0.0-rc2, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc2/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc2/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc2/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2021-01-30T03:41:42.74+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc2"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc2/opentelemetry.instrumentation.sqlclient.1.0.0-rc2.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.1.json",
+ "@type": "Package",
+ "commitId": "ee716666-9402-4ba5-bc01-c3ede5205b05",
+ "commitTimeStamp": "2022-03-30T19:19:33.4763471+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.03.30.19.18.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.03.30.19.18.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.03.30.19.18.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.json#dependencygroup/.netframework4.6.1/opentelemetry.api",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api",
+ "range": "[1.2.0-rc4, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.03.30.19.18.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.03.30.19.18.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.json#dependencygroup/.netstandard2.0/opentelemetry.api",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api",
+ "range": "[1.2.0-rc4, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc9.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.1/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2022-03-30T19:15:05.493+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc9.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.1/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.9.json",
+ "@type": "Package",
+ "commitId": "40a2066e-6eeb-4379-a820-1b22d7be5a17",
+ "commitTimeStamp": "2022-11-07T20:29:23.7140928+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.11.07.20.28.27/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.11.07.20.28.27/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.11.07.20.28.27/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.json#dependencygroup/.netframework4.6.2/opentelemetry.api",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api",
+ "range": "[1.4.0-beta.3, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.11.07.20.28.27/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.11.07.20.28.27/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.json#dependencygroup/.netstandard2.0/opentelemetry.api",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api",
+ "range": "[1.4.0-beta.3, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.9/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc9.9/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.9/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2022-11-07T20:25:50.54+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc9.9"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.9/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.9.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.10.json",
+ "@type": "Package",
+ "commitId": "dc5190c7-8e8d-4860-962e-1a2610715b0e",
+ "commitTimeStamp": "2022-12-12T23:14:37.151084+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netframework4.6.2/opentelemetry.extensions.dependencyinjection",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Extensions.DependencyInjection",
+ "range": "[1.4.0-rc.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.extensions.dependencyinjection/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[5.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netstandard2.0/opentelemetry.extensions.dependencyinjection",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Extensions.DependencyInjection",
+ "range": "[1.4.0-rc.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.extensions.dependencyinjection/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2022.12.12.23.13.34/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[5.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.10/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc9.10/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.10/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2022-12-12T23:11:08.723+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc9.10"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.10/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.10.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.14.json",
+ "@type": "Package",
+ "commitId": "1f75b960-9916-4429-97ce-edf129d8c290",
+ "commitTimeStamp": "2023-02-24T22:42:08.8774583+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.4.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.4.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.02.24.22.41.33/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.14/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.0.0-rc9.14/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.14/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2023-02-24T22:39:13.95+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.0.0-rc9.14"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.0.0-rc9.14/opentelemetry.instrumentation.sqlclient.1.0.0-rc9.14.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.5.0-beta.1.json",
+ "@type": "Package",
+ "commitId": "feca05f5-af02-4438-af9b-5eaa8e71486b",
+ "commitTimeStamp": "2023-06-06T01:02:04.3324928+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.5.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.5.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.06.06.01.01.44/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.0-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.5.0-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.0-beta.1/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2023-06-06T00:58:33.67+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.5.0-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.0-beta.1/opentelemetry.instrumentation.sqlclient.1.5.0-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.5.1-beta.1.json",
+ "@type": "Package",
+ "commitId": "7a6044fc-7d9f-4d6e-88c1-99d2df39c89f",
+ "commitTimeStamp": "2023-07-21T02:05:53.3054318+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.5.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/net6.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/net6.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/net6.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.5.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.07.21.02.05.11/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.5.1, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.1-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.5.1-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.1-beta.1/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2023-07-21T02:02:40.367+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.5.1-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.5.1-beta.1/opentelemetry.instrumentation.sqlclient.1.5.1-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.6.0-beta.2.json",
+ "@type": "Package",
+ "commitId": "8b79662b-2d97-4c59-b916-8f9ac5660c6f",
+ "commitTimeStamp": "2023-10-27T00:27:41.1632751+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net6.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net6.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net6.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[3.1.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.10.27.00.27.07/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.2/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.6.0-beta.2/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.2/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2023-10-27T00:23:42.083+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "Metrics",
+ "Logging",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.6.0-beta.2"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.2/opentelemetry.instrumentation.sqlclient.1.6.0-beta.2.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.6.0-beta.3.json",
+ "@type": "Package",
+ "commitId": "e898efd0-81a6-43b3-b63a-0a7521da464d",
+ "commitTimeStamp": "2023-11-17T23:38:21.5370124+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net6.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net6.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net6.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[8.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2023.11.17.23.37.38/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.6.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.3/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.6.0-beta.3/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.3/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2023-11-17T23:35:35.383+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "Tracing",
+ "Metrics",
+ "Logging",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.6.0-beta.3"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.6.0-beta.3/opentelemetry.instrumentation.sqlclient.1.6.0-beta.3.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.10.0-beta.1.json",
+ "@type": "Package",
+ "commitId": "20fe0f65-5453-429b-a13e-4f072e6bff92",
+ "commitTimeStamp": "2024-12-09T06:33:37.1357523+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.10.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.10.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2024.12.09.06.32.32/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.10.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.10.0-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.10.0-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.10.0-beta.1/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2024-12-09T06:29:48.79+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.10.0-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.10.0-beta.1/opentelemetry.instrumentation.sqlclient.1.10.0-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.11.0-beta.1.json",
+ "@type": "Package",
+ "commitId": "51d9134b-7d19-4696-ac87-17ec7607ddd1",
+ "commitTimeStamp": "2025-01-27T08:36:54.1524806+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.1, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.1, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.01.27.08.36.33/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.1, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.11.0-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.1/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2025-01-27T08:33:38.18+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.11.0-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.1/opentelemetry.instrumentation.sqlclient.1.11.0-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.11.0-beta.2.json",
+ "@type": "Package",
+ "commitId": "471ab436-868a-4510-ae9d-7977dd762d84",
+ "commitTimeStamp": "2025-03-05T18:40:44.7200821+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.2, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.2, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.03.05.18.40.06/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.11.2, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.2/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.11.0-beta.2/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.2/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2025-03-05T18:37:38.027+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.11.0-beta.2"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.11.0-beta.2/opentelemetry.instrumentation.sqlclient.1.11.0-beta.2.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.12.0-beta.1.json",
+ "@type": "Package",
+ "commitId": "37a9c74b-f10e-407c-acac-b409da0d0f75",
+ "commitTimeStamp": "2025-05-06T07:57:41.6136043+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.05.06.07.56.45/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.1/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.12.0-beta.1/license",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.1/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2025-05-06T07:52:40.797+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.12.0-beta.1"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.1/opentelemetry.instrumentation.sqlclient.1.12.0-beta.1.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/1.12.0-beta.2.json",
+ "@type": "Package",
+ "commitId": "678d20c8-1bca-41c1-ae13-74410a6b284b",
+ "commitTimeStamp": "2025-07-15T04:46:16.960872+00:00",
+ "catalogEntry": {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json",
+ "@type": "PackageDetails",
+ "authors": "OpenTelemetry Authors",
+ "dependencyGroups": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netframework4.6.2/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/net8.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/net8.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.configuration",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Configuration",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netstandard2.0/microsoft.extensions.options",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Options",
+ "range": "[9.0.0, )",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.options/index.json"
+ },
+ {
+ "@id": "https://api.nuget.org/v3/catalog0/data/2025.07.15.04.45.58/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.json#dependencygroup/.netstandard2.0/opentelemetry.api.providerbuilderextensions",
+ "@type": "PackageDependency",
+ "id": "OpenTelemetry.Api.ProviderBuilderExtensions",
+ "range": "[1.12.0, 2.0.0)",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.api.providerbuilderextensions/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "SqlClient instrumentation for OpenTelemetry .NET.",
+ "iconUrl": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.2/icon",
+ "id": "OpenTelemetry.Instrumentation.SqlClient",
+ "language": "",
+ "licenseExpression": "Apache-2.0",
+ "licenseUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.12.0-beta.2/license",
+ "readmeUrl": "https://www.nuget.org/packages/OpenTelemetry.Instrumentation.SqlClient/1.12.0-beta.2#show-readme-container",
+ "listed": true,
+ "minClientVersion": "",
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.2/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.nupkg",
+ "projectUrl": "https://opentelemetry.io/",
+ "published": "2025-07-15T04:42:33.33+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "Observability",
+ "OpenTelemetry",
+ "Monitoring",
+ "Telemetry",
+ "distributed-tracing"
+ ],
+ "title": "",
+ "version": "1.12.0-beta.2"
+ },
+ "packageContent": "https://api.nuget.org/v3-flatcontainer/opentelemetry.instrumentation.sqlclient/1.12.0-beta.2/opentelemetry.instrumentation.sqlclient.1.12.0-beta.2.nupkg",
+ "registration": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json"
+ }
+ ],
+ "parent": "https://api.nuget.org/v3/registration5-gz-semver2/opentelemetry.instrumentation.sqlclient/index.json",
+ "lower": "0.3.0-beta.1",
+ "upper": "1.12.0-beta.2"
+ }
+ ],
+ "@context": {
+ "@vocab": "http://schema.nuget.org/schema#",
+ "catalog": "http://schema.nuget.org/catalog#",
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
+ "items": {
+ "@id": "catalog:item",
+ "@container": "@set"
+ },
+ "commitTimeStamp": {
+ "@id": "catalog:commitTimeStamp",
+ "@type": "xsd:dateTime"
+ },
+ "commitId": {
+ "@id": "catalog:commitId"
+ },
+ "count": {
+ "@id": "catalog:count"
+ },
+ "parent": {
+ "@id": "catalog:parent",
+ "@type": "@id"
+ },
+ "tags": {
+ "@id": "tag",
+ "@container": "@set"
+ },
+ "reasons": {
+ "@container": "@set"
+ },
+ "packageTargetFrameworks": {
+ "@id": "packageTargetFramework",
+ "@container": "@set"
+ },
+ "dependencyGroups": {
+ "@id": "dependencyGroup",
+ "@container": "@set"
+ },
+ "dependencies": {
+ "@id": "dependency",
+ "@container": "@set"
+ },
+ "packageContent": {
+ "@type": "@id"
+ },
+ "published": {
+ "@type": "xsd:dateTime"
+ },
+ "registration": {
+ "@type": "@id"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.mds.index-inline-pages.json b/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.mds.index-inline-pages.json
new file mode 100644
index 000000000..cd937debd
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---nuget.org.registration-semver2.mds.index-inline-pages.json
@@ -0,0 +1,10724 @@
+{
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json",
+ "@type": [
+ "catalog:CatalogRoot",
+ "PackageRegistration",
+ "catalog:Permalink"
+ ],
+ "commitId": "75025c92-6231-482b-8c37-52e14fc16639",
+ "commitTimeStamp": "2025-08-04T22:54:07.6810265+00:00",
+ "count": 2,
+ "items": [
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json#page/1.0.19269.1/5.1.0",
+ "@type": "catalog:CatalogPage",
+ "commitId": "75025c92-6231-482b-8c37-52e14fc16639",
+ "commitTimeStamp": "2025-08-04T22:54:07.6810265+00:00",
+ "count": 14,
+ "items": [
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/1.0.19269.1.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netframework4.6",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netframework4.6/system.data.common",
+ "@type": "PackageDependency",
+ "id": "System.Data.Common",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.data.common/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netframework4.6/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.sni",
+ "range": "[1.0.19235.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netframework4.6/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/runtime.native.system.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "runtime.native.System.Data.SqlClient.sni",
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/runtime.native.system.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/runtime.native.system.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "runtime.native.System.Data.SqlClient.sni",
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/runtime.native.system.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.4.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[3.0.8, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.1.0.19269.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/1.0.19269.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/1.0.19269.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/1.0.19269.1/microsoft.data.sqlclient.1.0.19269.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2019-09-26T21:15:53.953+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "1.0.19269.1",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-8g2p-5pqh-5jmc",
+ "severity": "1"
+ },
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/1.0.19269.1/microsoft.data.sqlclient.1.0.19269.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/2.0.0.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netframework4.6",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netframework4.6/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[2.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netframework4.6/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netframework4.6/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netframework4.6/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.0.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/2.0.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.0/microsoft.data.sqlclient.2.0.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2020-06-16T21:34:23.57+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "2.0.0",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-8g2p-5pqh-5jmc",
+ "severity": "1"
+ },
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.0/microsoft.data.sqlclient.2.0.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/2.0.1.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netframework4.6",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netframework4.6/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[2.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netframework4.6/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netframework4.6/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netframework4.6/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[2.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.14.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[5.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.2.0.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/2.0.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.1/microsoft.data.sqlclient.2.0.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2020-08-25T23:33:24.633+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "2.0.1",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-8g2p-5pqh-5jmc",
+ "severity": "1"
+ },
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/2.0.1/microsoft.data.sqlclient.2.0.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/3.0.0.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[3.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[3.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[3.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[3.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[3.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[4.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.3.0.0.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/3.0.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/3.0.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/3.0.0/microsoft.data.sqlclient.3.0.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2021-06-09T17:29:45.52+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "3.0.0",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/3.0.0/microsoft.data.sqlclient.3.0.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/4.0.0-preview1.21237.2.json",
+ "@type": "Package",
+ "commitId": "0966815d-8391-4dbd-806d-c96de886b8f7",
+ "commitTimeStamp": "2024-01-09T20:51:18.5981672+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netframework4.6.1/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.memory",
+ "@type": "PackageDependency",
+ "id": "System.Memory",
+ "range": "[4.5.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview1.21237.2.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview1.21237.2/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/4.0.0-preview1.21237.2/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview1.21237.2/microsoft.data.sqlclient.4.0.0-preview1.21237.2.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2021-08-25T18:41:43.393+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "4.0.0-preview1.21237.2"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview1.21237.2/microsoft.data.sqlclient.4.0.0-preview1.21237.2.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/4.0.0-preview2.21264.2.json",
+ "@type": "Package",
+ "commitId": "0966815d-8391-4dbd-806d-c96de886b8f7",
+ "commitTimeStamp": "2024-01-09T20:51:18.5981672+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp2.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0-preview1.21232.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.4.0.0-preview2.21264.2.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview2.21264.2/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/4.0.0-preview2.21264.2/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview2.21264.2/microsoft.data.sqlclient.4.0.0-preview2.21264.2.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2021-09-21T20:50:56.63+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "4.0.0-preview2.21264.2"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0-preview2.21264.2/microsoft.data.sqlclient.4.0.0-preview2.21264.2.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/4.0.0.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.0.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/4.0.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0/microsoft.data.sqlclient.4.0.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2021-11-19T01:25:06.223+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "4.0.0",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.0/microsoft.data.sqlclient.4.0.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/4.0.1.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[4.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.4.0.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/4.0.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.1/microsoft.data.sqlclient.4.0.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2022-01-17T18:32:09.7+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "4.0.1",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/4.0.1/microsoft.data.sqlclient.4.0.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.0.0-preview1.22069.1.json",
+ "@type": "Package",
+ "commitId": "0966815d-8391-4dbd-806d-c96de886b8f7",
+ "commitTimeStamp": "2024-01-09T20:51:18.5981672+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netframework4.6.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0-preview1.22062.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.22.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.0.0-preview1.22069.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0-preview1.22069.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.0-preview1.22069.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0-preview1.22069.1/microsoft.data.sqlclient.5.0.0-preview1.22069.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2022-03-10T03:13:55.55+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.0-preview1.22069.1"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0-preview1.22069.1/microsoft.data.sqlclient.5.0.0-preview1.22069.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.0.0.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.0.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0/microsoft.data.sqlclient.5.0.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2022-08-05T19:51:21.32+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.0",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.0/microsoft.data.sqlclient.5.0.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.0.1.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#deprecation",
+ "@type": "deprecation",
+ "alternatePackage": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.0.1.json#deprecation/alternatePackage",
+ "@type": "alternatePackage",
+ "id": "Microsoft.Data.SqlClient",
+ "range": "[5.0.2, )"
+ },
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056\n\nA regression was introduced in 5.0.1 that resulted in a memory leak during certain async operations. It's recommended to update to at least 5.0.2 to avoid the issue.",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.1/microsoft.data.sqlclient.5.0.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2022-10-08T03:31:40.347+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.1",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.1/microsoft.data.sqlclient.5.0.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.0.2.json",
+ "@type": "Package",
+ "commitId": "d9b09aae-6b69-4a23-9bdc-65b5b238ffa3",
+ "commitTimeStamp": "2025-04-25T20:54:41.2352866+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.20.53.34/microsoft.data.sqlclient.5.0.2.json#deprecation",
+ "@type": "deprecation",
+ "message": "This version is out of support.",
+ "reasons": [
+ "Other"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n\nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.2/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.0.2/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.2/microsoft.data.sqlclient.5.0.2.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-03-31T22:00:08.03+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.0.2",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.0.2/microsoft.data.sqlclient.5.0.2.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.1.0-preview1.22279.3.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.security.cryptography.algorithms",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Algorithms",
+ "range": "[4.3.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.algorithms/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.security.cryptography.primitives",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Primitives",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.primitives/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netcoreapp3.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETCoreApp3.1"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0-preview1.22278.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.6.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.45.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.21.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.io",
+ "@type": "PackageDependency",
+ "id": "System.IO",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.io/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[4.7.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.resources.resourcemanager",
+ "@type": "PackageDependency",
+ "id": "System.Resources.ResourceManager",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.resources.resourcemanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0-preview1.22279.3.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0-preview1.22279.3/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.0-preview1.22279.3/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0-preview1.22279.3/microsoft.data.sqlclient.5.1.0-preview1.22279.3.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2022-10-06T16:43:39.8+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.0-preview1.22279.3",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0-preview1.22279.3/microsoft.data.sqlclient.5.1.0-preview1.22279.3.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.1.0.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/net6.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.0.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0/microsoft.data.sqlclient.5.1.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-01-19T21:11:55.423+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.0",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.0/microsoft.data.sqlclient.5.1.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ }
+ ],
+ "parent": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json",
+ "lower": "1.0.19269.1",
+ "upper": "5.1.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json#page/5.1.1/6.1.0",
+ "@type": "catalog:CatalogPage",
+ "commitId": "75025c92-6231-482b-8c37-52e14fc16639",
+ "commitTimeStamp": "2025-08-04T22:54:07.6810265+00:00",
+ "count": 12,
+ "items": [
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.1.1.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/net6.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/microsoft.data.sqlclient.5.1.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-03-28T22:26:40.43+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.1",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.1/microsoft.data.sqlclient.5.1.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.1.2.json",
+ "@type": "Package",
+ "commitId": "298f5c61-5552-4ca8-a22c-b9b690cd9d14",
+ "commitTimeStamp": "2024-01-16T19:14:48.8963881+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/net6.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.7.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.16.19.14.01/microsoft.data.sqlclient.5.1.2.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS)\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.2/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/microsoft.data.sqlclient.5.1.2.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-10-26T17:39:10.273+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.1.2",
+ "vulnerabilities": [
+ {
+ "advisoryUrl": "https://github.com/advisories/GHSA-98g6-xh36-x2p7",
+ "severity": "2"
+ }
+ ]
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.1.2/microsoft.data.sqlclient.5.1.2.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.2.0-preview1.23109.1.json",
+ "@type": "Package",
+ "commitId": "0966815d-8391-4dbd-806d-c96de886b8f7",
+ "commitTimeStamp": "2024-01-09T20:51:18.5981672+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/net6.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.47.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview1.23109.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview1.23109.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0-preview1.23109.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview1.23109.1/microsoft.data.sqlclient.5.2.0-preview1.23109.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-04-20T17:20:57.51+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0-preview1.23109.1"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview1.23109.1/microsoft.data.sqlclient.5.2.0-preview1.23109.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.2.0-preview2.23159.1.json",
+ "@type": "Package",
+ "commitId": "0966815d-8391-4dbd-806d-c96de886b8f7",
+ "commitTimeStamp": "2024-01-09T20:51:18.5981672+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.53.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.53.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net7.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net7.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.53.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/net6.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.53.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.1.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.8.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.53.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.24.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.01.09.20.50.29/microsoft.data.sqlclient.5.2.0-preview2.23159.1.json#deprecation",
+ "@type": "deprecation",
+ "message": "An important security issue exists in this version of the package. It is recommended to update to a newer version.\nhttps://msrc.microsoft.com/update-guide/vulnerability/CVE-2024-0056",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview2.23159.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0-preview2.23159.1/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview2.23159.1/microsoft.data.sqlclient.5.2.0-preview2.23159.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2023-06-08T19:02:06.663+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0-preview2.23159.1"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0-preview2.23159.1/microsoft.data.sqlclient.5.2.0-preview2.23159.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/5.2.0.json",
+ "@type": "Package",
+ "commitId": "fb5a3a96-0cd3-4f9a-9c48-b524b8c6f365",
+ "commitTimeStamp": "2024-02-28T17:58:49.3806491+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/system.runtime.interopservices.runtimeinformation",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.InteropServices.RuntimeInformation",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.interopservices.runtimeinformation/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net8.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/net6.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.0/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[5.2.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.10.3, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.identity.client",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Identity.Client",
+ "range": "[4.56.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identity.client/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[6.35.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/microsoft.win32.registry",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Win32.Registry",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.win32.registry/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.diagnostics.diagnosticsource",
+ "@type": "PackageDependency",
+ "id": "System.Diagnostics.DiagnosticSource",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.diagnostics.diagnosticsource/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.runtime.caching",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Caching",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.caching/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.text.encoding.codepages",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encoding.CodePages",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encoding.codepages/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.runtime.loader",
+ "@type": "PackageDependency",
+ "id": "System.Runtime.Loader",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.runtime.loader/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.security.cryptography.cng",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Cng",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.cng/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.02.28.17.58.01/microsoft.data.sqlclient.5.2.0.json#dependencygroup/.netstandard2.1/system.security.principal.windows",
+ "@type": "PackageDependency",
+ "id": "System.Security.Principal.Windows",
+ "range": "[5.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.principal.windows/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.1"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.2.0/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0/microsoft.data.sqlclient.5.2.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2024-02-28T17:52:05.15+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "5.2.0"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/5.2.0/microsoft.data.sqlclient.5.2.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.0.0-preview1.24240.8.json",
+ "@type": "Package",
+ "commitId": "bcbd7a67-01fc-4f75-9eeb-fc78134a1f2e",
+ "commitTimeStamp": "2024-08-27T21:39:59.6386139+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.0-preview1.24226.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2024.08.27.21.38.54/microsoft.data.sqlclient.6.0.0-preview1.24240.8.json#dependencygroup/net6.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ }
+ ],
+ "targetFramework": "net6.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0-preview1.24240.8/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0-preview1.24240.8/license",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0-preview1.24240.8/microsoft.data.sqlclient.6.0.0-preview1.24240.8.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2024-08-27T21:36:14.1+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0-preview1.24240.8"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0-preview1.24240.8/microsoft.data.sqlclient.6.0.0-preview1.24240.8.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.0.0.json",
+ "@type": "Package",
+ "commitId": "064c3b66-d94b-492b-a6bd-14bcdefa9434",
+ "commitTimeStamp": "2025-01-17T17:17:17.5911376+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.17.17.16.15/microsoft.data.sqlclient.6.0.0.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.0#show-readme-container",
+ "listed": false,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/microsoft.data.sqlclient.6.0.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "1900-01-01T00:00:00+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.0"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.0/microsoft.data.sqlclient.6.0.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.0.1.json",
+ "@type": "Package",
+ "commitId": "9c8180c7-41fd-4769-9b25-6cad31afb00e",
+ "commitTimeStamp": "2025-01-23T23:14:51.5971317+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.01.23.23.14.16/microsoft.data.sqlclient.6.0.1.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.1#show-readme-container",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/microsoft.data.sqlclient.6.0.1.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2025-01-23T23:11:28.04+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.1"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.1/microsoft.data.sqlclient.6.0.1.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.0.2.json",
+ "@type": "Package",
+ "commitId": "429ee695-b52a-476c-a8a3-00ad0fa49f41",
+ "commitTimeStamp": "2025-04-25T21:33:31.8199647+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[6.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[6.0.10, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.11.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.5.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.25.21.32.36/microsoft.data.sqlclient.6.0.2.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.0.2#show-readme-container",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/microsoft.data.sqlclient.6.0.2.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2025-04-25T21:29:47.897+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.0.2"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.0.2/microsoft.data.sqlclient.6.0.2.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.1.0-preview1.25120.4.json",
+ "@type": "Package",
+ "commitId": "70e07727-8a5d-4bb0-9a4f-ef5507b3d278",
+ "commitTimeStamp": "2025-04-30T22:16:12.8535299+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/system.data.common",
+ "@type": "PackageDependency",
+ "id": "System.Data.Common",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.data.common/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.04.30.22.15.17/microsoft.data.sqlclient.6.1.0-preview1.25120.4.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n \nCommonly Used Types:\nMicrosoft.Data.SqlClient.SqlConnection\nMicrosoft.Data.SqlClient.SqlException\nMicrosoft.Data.SqlClient.SqlParameter\nMicrosoft.Data.SqlClient.SqlDataReader\nMicrosoft.Data.SqlClient.SqlCommand\nMicrosoft.Data.SqlClient.SqlTransaction\nMicrosoft.Data.SqlClient.SqlParameterCollection\nMicrosoft.Data.SqlClient.SqlClientFactory\n\nWhen using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview1.25120.4/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview1.25120.4/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview1.25120.4#show-readme-container",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview1.25120.4/microsoft.data.sqlclient.6.1.0-preview1.25120.4.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2025-04-30T22:12:24.177+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0-preview1.25120.4"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview1.25120.4/microsoft.data.sqlclient.6.1.0-preview1.25120.4.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.1.0-preview2.25178.5.json",
+ "@type": "Package",
+ "commitId": "55a16f36-5e3b-4a1c-9861-750e0ad2ae00",
+ "commitTimeStamp": "2025-06-27T23:03:25.6874126+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/system.data.common",
+ "@type": "PackageDependency",
+ "id": "System.Data.Common",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.data.common/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net8.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/net9.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.06.27.23.02.45/microsoft.data.sqlclient.6.1.0-preview2.25178.5.json#dependencygroup/.netstandard2.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview2.25178.5/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview2.25178.5/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0-preview2.25178.5#show-readme-container",
+ "listed": true,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview2.25178.5/microsoft.data.sqlclient.6.1.0-preview2.25178.5.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "2025-06-27T22:59:30.767+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0-preview2.25178.5"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0-preview2.25178.5/microsoft.data.sqlclient.6.1.0-preview2.25178.5.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/6.1.0.json",
+ "@type": "Package",
+ "commitId": "75025c92-6231-482b-8c37-52e14fc16639",
+ "commitTimeStamp": "2025-08-04T22:54:07.6810265+00:00",
+ "catalogEntry": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json",
+ "@type": "PackageDetails",
+ "authors": "Microsoft",
+ "dependencyGroups": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/microsoft.data.sqlclient.sni",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/system.buffers",
+ "@type": "PackageDependency",
+ "id": "System.Buffers",
+ "range": "[4.5.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.buffers/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/system.data.common",
+ "@type": "PackageDependency",
+ "id": "System.Data.Common",
+ "range": "[4.3.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.data.common/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/system.text.encodings.web",
+ "@type": "PackageDependency",
+ "id": "System.Text.Encodings.Web",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.encodings.web/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netframework4.6.2/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": ".NETFramework4.6.2"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[8.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[8.0.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net8.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[8.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": "net8.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/net9.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": "net9.0"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0",
+ "@type": "PackageDependencyGroup",
+ "dependencies": [
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/azure.identity",
+ "@type": "PackageDependency",
+ "id": "Azure.Identity",
+ "range": "[1.13.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/azure.identity/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.bcl.cryptography",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Bcl.Cryptography",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.bcl.cryptography/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.data.sqlclient.sni.runtime",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Data.SqlClient.SNI.runtime",
+ "range": "[6.0.2, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient.sni.runtime/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.extensions.caching.memory",
+ "@type": "PackageDependency",
+ "id": "Microsoft.Extensions.Caching.Memory",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.extensions.caching.memory/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.jsonwebtokens",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.JsonWebTokens",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.jsonwebtokens/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.identitymodel.protocols.openidconnect",
+ "@type": "PackageDependency",
+ "id": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
+ "range": "[7.7.1, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.identitymodel.protocols.openidconnect/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/microsoft.sqlserver.server",
+ "@type": "PackageDependency",
+ "id": "Microsoft.SqlServer.Server",
+ "range": "[1.0.0, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.sqlserver.server/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/system.configuration.configurationmanager",
+ "@type": "PackageDependency",
+ "id": "System.Configuration.ConfigurationManager",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.configuration.configurationmanager/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/system.security.cryptography.pkcs",
+ "@type": "PackageDependency",
+ "id": "System.Security.Cryptography.Pkcs",
+ "range": "[9.0.4, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.security.cryptography.pkcs/index.json"
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#dependencygroup/.netstandard2.0/system.text.json",
+ "@type": "PackageDependency",
+ "id": "System.Text.Json",
+ "range": "[9.0.5, )",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/system.text.json/index.json"
+ }
+ ],
+ "targetFramework": ".NETStandard2.0"
+ }
+ ],
+ "deprecation": {
+ "@id": "http://localhost:1080/v3/catalog0/data/2025.08.04.22.53.20/microsoft.data.sqlclient.6.1.0.json#deprecation",
+ "@type": "deprecation",
+ "reasons": [
+ "CriticalBugs"
+ ]
+ },
+ "description": "The current data provider for SQL Server and Azure SQL databases. This has replaced System.Data.SqlClient. These classes provide access to SQL and encapsulate database-specific protocols, including tabular data stream (TDS).\n\n Commonly Used Types:\n Microsoft.Data.SqlClient.SqlConnection\n Microsoft.Data.SqlClient.SqlException\n Microsoft.Data.SqlClient.SqlParameter\n Microsoft.Data.SqlClient.SqlDataReader\n Microsoft.Data.SqlClient.SqlCommand\n Microsoft.Data.SqlClient.SqlTransaction\n Microsoft.Data.SqlClient.SqlParameterCollection\n Microsoft.Data.SqlClient.SqlClientFactory\n\n When using NuGet 3.x this package requires at least version 3.4.",
+ "iconUrl": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/icon",
+ "id": "Microsoft.Data.SqlClient",
+ "language": "",
+ "licenseExpression": "MIT",
+ "licenseUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0/license",
+ "readmeUrl": "https://www.nuget.org/packages/Microsoft.Data.SqlClient/6.1.0#show-readme-container",
+ "listed": false,
+ "minClientVersion": "2.12",
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/microsoft.data.sqlclient.6.1.0.nupkg",
+ "projectUrl": "https://aka.ms/sqlclientproject",
+ "published": "1900-01-01T00:00:00+00:00",
+ "requireLicenseAcceptance": true,
+ "summary": "",
+ "tags": [
+ "sqlclient",
+ "microsoft.data.sqlclient"
+ ],
+ "title": "Microsoft.Data.SqlClient",
+ "version": "6.1.0"
+ },
+ "packageContent": "http://localhost:1080/v3-flatcontainer/microsoft.data.sqlclient/6.1.0/microsoft.data.sqlclient.6.1.0.nupkg",
+ "registration": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json"
+ }
+ ],
+ "parent": "http://localhost:1080/v3/registration5-gz-semver2/microsoft.data.sqlclient/index.json",
+ "lower": "5.1.1",
+ "upper": "6.1.0"
+ }
+ ],
+ "@context": {
+ "@vocab": "http://schema.nuget.org/schema#",
+ "catalog": "http://schema.nuget.org/catalog#",
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
+ "items": {
+ "@id": "catalog:item",
+ "@container": "@set"
+ },
+ "commitTimeStamp": {
+ "@id": "catalog:commitTimeStamp",
+ "@type": "xsd:dateTime"
+ },
+ "commitId": {
+ "@id": "catalog:commitId"
+ },
+ "count": {
+ "@id": "catalog:count"
+ },
+ "parent": {
+ "@id": "catalog:parent",
+ "@type": "@id"
+ },
+ "tags": {
+ "@id": "tag",
+ "@container": "@set"
+ },
+ "reasons": {
+ "@container": "@set"
+ },
+ "packageTargetFrameworks": {
+ "@id": "packageTargetFramework",
+ "@container": "@set"
+ },
+ "dependencyGroups": {
+ "@id": "dependencyGroup",
+ "@container": "@set"
+ },
+ "dependencies": {
+ "@id": "dependency",
+ "@container": "@set"
+ },
+ "packageContent": {
+ "@type": "@id"
+ },
+ "published": {
+ "@type": "xsd:dateTime"
+ },
+ "registration": {
+ "@type": "@id"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/test/resources/unit/tasks/repositories/https---nuget.org.v3-index.json b/src/test/resources/unit/tasks/repositories/https---nuget.org.v3-index.json
new file mode 100644
index 000000000..8b4c63ce5
--- /dev/null
+++ b/src/test/resources/unit/tasks/repositories/https---nuget.org.v3-index.json
@@ -0,0 +1,207 @@
+{
+ "version": "3.0.0",
+ "resources": [
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/query",
+ "@type": "SearchQueryService",
+ "comment": "Query endpoint of NuGet Search service (primary)"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/query",
+ "@type": "SearchQueryService",
+ "comment": "Query endpoint of NuGet Search service (secondary)"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService",
+ "comment": "Autocomplete endpoint of NuGet Search service (primary)"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService",
+ "comment": "Autocomplete endpoint of NuGet Search service (secondary)"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/",
+ "@type": "SearchGalleryQueryService/3.0.0-rc",
+ "comment": "Azure Website based Search Service used by Gallery (primary)"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/",
+ "@type": "SearchGalleryQueryService/3.0.0-rc",
+ "comment": "Azure Website based Search Service used by Gallery (secondary)"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-semver1/",
+ "@type": "RegistrationsBaseUrl",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored"
+ },
+ {
+ "@id": "http://localhost:1080/v3-flatcontainer/",
+ "@type": "PackageBaseAddress/3.0.0",
+ "comment": "Base URL of where NuGet packages are stored, in the format http://localhost:1080/v3-flatcontainer/{id-lower}/{version-lower}/{id-lower}.{version-lower}.nupkg"
+ },
+ {
+ "@id": "https://www.nuget.org/api/v2",
+ "@type": "LegacyGallery"
+ },
+ {
+ "@id": "https://www.nuget.org/api/v2",
+ "@type": "LegacyGallery/2.0.0"
+ },
+ {
+ "@id": "https://www.nuget.org/api/v2/package",
+ "@type": "PackagePublish/2.0.0"
+ },
+ {
+ "@id": "https://www.nuget.org/api/v2/symbolpackage",
+ "@type": "SymbolPackagePublish/4.9.0",
+ "comment": "The gallery symbol publish endpoint."
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/query",
+ "@type": "SearchQueryService/3.0.0-rc",
+ "comment": "Query endpoint of NuGet Search service (primary) used by RC clients"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/query",
+ "@type": "SearchQueryService/3.0.0-rc",
+ "comment": "Query endpoint of NuGet Search service (secondary) used by RC clients"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/query",
+ "@type": "SearchQueryService/3.5.0",
+ "comment": "Query endpoint of NuGet Search service (primary) that supports package type filtering"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/query",
+ "@type": "SearchQueryService/3.5.0",
+ "comment": "Query endpoint of NuGet Search service (secondary) that supports package type filtering"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.0.0-rc",
+ "comment": "Autocomplete endpoint of NuGet Search service (primary) used by RC clients"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.0.0-rc",
+ "comment": "Autocomplete endpoint of NuGet Search service (secondary) used by RC clients"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.5.0",
+ "comment": "Autocomplete endpoint of NuGet Search service (primary) that supports package type filtering"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.5.0",
+ "comment": "Autocomplete endpoint of NuGet Search service (secondary) that supports package type filtering"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-semver1/",
+ "@type": "RegistrationsBaseUrl/3.0.0-rc",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored used by RC clients. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "https://www.nuget.org/packages/{id}/{version}/ReportAbuse",
+ "@type": "ReportAbuseUriTemplate/3.0.0-rc",
+ "comment": "URI template used by NuGet Client to construct Report Abuse URL for packages used by RC clients"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-semver1/{id-lower}/index.json",
+ "@type": "PackageDisplayMetadataUriTemplate/3.0.0-rc",
+ "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-semver1/{id-lower}/{version-lower}.json",
+ "@type": "PackageVersionDisplayMetadataUriTemplate/3.0.0-rc",
+ "comment": "URI template used by NuGet Client to construct display metadata for Packages using ID, Version"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/query",
+ "@type": "SearchQueryService/3.0.0-beta",
+ "comment": "Query endpoint of NuGet Search service (primary) used by beta clients"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/query",
+ "@type": "SearchQueryService/3.0.0-beta",
+ "comment": "Query endpoint of NuGet Search service (secondary) used by beta clients"
+ },
+ {
+ "@id": "https://azuresearch-usnc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.0.0-beta",
+ "comment": "Autocomplete endpoint of NuGet Search service (primary) used by beta clients"
+ },
+ {
+ "@id": "https://azuresearch-ussc.nuget.org/autocomplete",
+ "@type": "SearchAutocompleteService/3.0.0-beta",
+ "comment": "Autocomplete endpoint of NuGet Search service (secondary) used by beta clients"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-semver1/",
+ "@type": "RegistrationsBaseUrl/3.0.0-beta",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored used by Beta clients. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "https://www.nuget.org/packages/{id}/{version}/ReportAbuse",
+ "@type": "ReportAbuseUriTemplate/3.0.0-beta",
+ "comment": "URI template used by NuGet Client to construct Report Abuse URL for packages"
+ },
+ {
+ "@id": "https://www.nuget.org/packages/{id}/{version}?_src=template",
+ "@type": "PackageDetailsUriTemplate/5.1.0",
+ "comment": "URI template used by NuGet Client to construct details URL for packages"
+ },
+ {
+ "@id": "https://www.nuget.org/profiles/{owner}?_src=template",
+ "@type": "OwnerDetailsUriTemplate/6.11.0",
+ "comment": "URI template used by NuGet Client to construct owner URL for packages"
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver1/",
+ "@type": "RegistrationsBaseUrl/3.4.0",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL does not include SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/",
+ "@type": "RegistrationsBaseUrl/3.6.0",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/v3/registration5-gz-semver2/",
+ "@type": "RegistrationsBaseUrl/Versioned",
+ "clientVersion": "4.3.0-alpha",
+ "comment": "Base URL of Azure storage where NuGet package registration info is stored in GZIP format. This base URL includes SemVer 2.0.0 packages."
+ },
+ {
+ "@id": "http://localhost:1080/v3-index/repository-signatures/4.7.0/index.json",
+ "@type": "RepositorySignatures/4.7.0",
+ "comment": "The endpoint for discovering information about this package source's repository signatures."
+ },
+ {
+ "@id": "http://localhost:1080/v3-index/repository-signatures/5.0.0/index.json",
+ "@type": "RepositorySignatures/5.0.0",
+ "comment": "The endpoint for discovering information about this package source's repository signatures."
+ },
+ {
+ "@id": "http://localhost:1080/v3/vulnerabilities/index.json",
+ "@type": "VulnerabilityInfo/6.7.0",
+ "comment": "The endpoint for discovering information about vulnerabilities of packages in this package source."
+ },
+ {
+ "@id": "http://localhost:1080/v3/catalog0/index.json",
+ "@type": "Catalog/3.0.0",
+ "comment": "Index of the NuGet package catalog."
+ },
+ {
+ "@id": "http://localhost:1080/v3-flatcontainer/{lower_id}/{lower_version}/readme",
+ "@type": "ReadmeUriTemplate/6.13.0",
+ "comment": "URI template used by NuGet Client to construct a URL for downloading a package's README."
+ }
+ ],
+ "@context": {
+ "@vocab": "http://schema.nuget.org/services#",
+ "comment": "http://www.w3.org/2000/01/rdf-schema#comment"
+ }
+}
\ No newline at end of file