aliasadidev / vscode-npm-gui

vscode nuget package manager gui https://marketplace.visualstudio.com/items?itemName=aliasadidev.nugetpackagemanagergui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Packages on differents feed not supported

RicardoSR opened this issue · comments

Event when the configuration support add different sources, if the packages are on different feeds throw exception because is not found on the first feed that is read on the configurations

async function getPackageVersions(packageName: string, packageSources: PackageSource[], nugetRequestTimeout: number, vscodeHttpConfig: any): Promise {
let result: PackageVersion | undefined | null;
let errors: string[] = [];
try {
result = await Promise.any(packageSources.map(async (src) => {
let url = src.packageVersionsUrl.replace("{{packageName}}", packageName?.toLowerCase());
const requestOption = getRequestOptions(src.authorization, nugetRequestTimeout, vscodeHttpConfig);
return await fetch(url, requestOption)
.then(async response => {
const rawResult = await response.text();
let jsonResponse;
try {
jsonResponse = JSON.parse(rawResult);
if (jsonResponse && !Array.isArray(jsonResponse.versions)
|| (Array.isArray(jsonResponse.versions) && jsonResponse.versions.length == 0)) {
throw "not found";
}
} catch (ex) {
errors.push( [NuGet Package Manager GUI => ERROR!!!] [Request to url:${url}] [timeout:${nugetRequestTimeout}] [proxy is active:${!!requestOption.agent}] [auth is active:${src.authorization && src.authorization.authType != AuthorizationType[AuthorizationType.none]}] [result:${rawResult}]${EOL});
throw ex;
}

      return jsonResponse;
    })
    .then(jsonResponse => {
      let json: PackageVersion = {
        packageName: packageName,
        versions: jsonResponse.versions,
        sourceName: src.sourceName,
        sourceId: src.id
      };
      return json;
    })
    .catch(error => {
      throw `[An error occurred in the loading package versions (package:${packageName})] ${error.message}`;
    });
}));

} catch (e) {
console.log(e);
console.log(errors);
throw [An error occurred in the loading package versions (package:${packageName})] details logged in VSCode developer tools;
}

return result;
}

Throw not found cause error and packages are not loaded nuget.module.ts line 61

result = await Promise.any(packageSources.map(async (src) => {

As you can see here this function checks all sources to get the package version the first successful response is always the answer.

Yeah, I think that is good but the problem if the try - catch

if (jsonResponse && !Array.isArray(jsonResponse.versions)
|| (Array.isArray(jsonResponse.versions) && jsonResponse.versions.length == 0)) {
throw "not found";
}
} catch (ex) {
errors.push( [NuGet Package Manager GUI => ERROR!!!] [Request to url:${url}] [timeout:${nugetRequestTimeout}] [proxy is active:${!!requestOption.agent}] [auth is active:${src.authorization && src.authorization.authType != AuthorizationType[AuthorizationType.none]}] [result:${rawResult}]${EOL});
throw ex;
}

As is throwing the exception event when had the any breaks the response for the throw

Hello,

It seems that I have the same issue

[NuGet Package Manager GUI => ERROR!!!]
[Request to url:https://api.nuget.org/v3-flatcontainer/ginkoia.api.common.database/index.json]
[timeout:9000]
[proxy is active:false]
[auth is active:false]
[result:<?xml version="1.0" encoding="utf-8"?><Error><Code>BlobNotFound</Code><Message>The specified blob does not exist.
RequestId:2e93e5b2-c01e-0053-5f8b-c0ff8b000000
Time:2022-09-04T18:23:29.1332223Z</Message></Error>]



[NuGet Package Manager GUI => ERROR!!!]
[Request to url:https://nuget.pkg.github.com/Ginkoia/ginkoia.api.common.database/index.json]
[timeout:9000]
[proxy is active:false]
[auth is active:true]
[result:{"count":1,"items":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/index.json","lower":"0.1.1-alpha.0.6","upper":"0.1.1-alpha.0.59","count":22,"items":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.59.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.59/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.59.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.59"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.58.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.58/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.58.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.58"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.57.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.57/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.57.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.57"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.56.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.56/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.56.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.56"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.55.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.55/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.55.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.55"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.54.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.54/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.54.nupkg","projectUrl":"https://github.com/Ginkoia/Ginkoia.API.Common","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.54"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.51.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.51/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.51.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.51"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.50.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.50/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.50.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.50"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.49.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.49/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.49.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.49"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.48.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.48/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.48.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.48"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.46.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.46/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.46.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.46"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.45.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.45/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.45.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.45"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.31.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.31/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.31.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.31"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.28.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.28/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.28.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.28"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.17.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.17/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.17.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.17"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.16.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.16/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.16.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.16"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.15.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.15/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.15.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.15"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.14.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.14/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.14.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.14"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.12.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.12/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.12.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.12"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.10.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.10/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.10.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.10"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.7.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.7/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.7.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.7"}},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.6.nupkg","catalogEntry":{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json","authors":"Ginkoia.Api.Common.Database","copyright":"Ginkoia 2022","dependencyGroups":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json#dependencygroup/net6.0","@type":"PackageDependencyGroup","dependencies":[{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json#dependencygroup/net6.0/dapper","@type":"PackageDependency","id":"Dapper","range":"[2.0.123, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json#dependencygroup/net6.0/interbasesql.entityframeworkcore.interbase","@type":"PackageDependency","id":"InterBaseSQL.EntityFrameworkCore.InterBase","range":"[7.11.0, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json#dependencygroup/net6.0/microsoft.entityframeworkcore","@type":"PackageDependency","id":"Microsoft.EntityFrameworkCore","range":"[6.0.7, )"},{"@id":"https://nuget.pkg.github.com/Ginkoia/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6.json#dependencygroup/net6.0/system.text.encoding.codepages","@type":"PackageDependency","id":"System.Text.Encoding.CodePages","range":"[6.0.0, )"}],"targetFramework":"net6.0"}],"description":"This package adds common code for database","iconUrl":"","id":"Ginkoia.Api.Common.DataBase","isPrerelease":true,"language":"","licenseUrl":"","packageContent":"https://nuget.pkg.github.com/Ginkoia/download/Ginkoia.Api.Common.DataBase/0.1.1-alpha.0.6/Ginkoia.Api.Common.DataBase.0.1.1-alpha.0.6.nupkg","projectUrl":"","requireLicenseAcceptance":false,"summary":"","tags":"","version":"0.1.1-alpha.0.6"}}]}]}]