trying with isn.abst

This commit is contained in:
2024-04-22 21:51:06 +01:00
parent 3af05fc034
commit 9c9ee6cc4c
10 changed files with 610 additions and 39 deletions

View File

@ -159,7 +159,7 @@ namespace isnd.host.tests
SearchFilter searchFilter = new SearchFilter(includePrerelease: true);
IEnumerable<IPackageSearchMetadata> results = await resource.SearchAsync(
"isnd",
"isn.abst",
searchFilter,
skip: 0,
take: 20,
@ -181,7 +181,7 @@ namespace isnd.host.tests
PackageUpdateResource pushRes = await repository.GetResourceAsync<PackageUpdateResource>();
SymbolPackageUpdateResourceV3 symbolPackageResource = await repository.GetResourceAsync<SymbolPackageUpdateResourceV3>();
await pushRes.Push(new List<string>{ "../../../../../src/isnd/bin/Release/isnd.1.1.4.nupkg" }, null,
await pushRes.Push(new List<string>{ "../../../../../src/isn.abst/bin/Release/isn.abst.1.0.1.nupkg" }, null,
5000, false, GetApiKey, GetSymbolsApiKey, false, false, symbolPackageResource, logger);
}