Skip to content

Commit

Permalink
Merge pull request #8370 from NuGet/master
Browse files Browse the repository at this point in the history
FI of master into dev
  • Loading branch information
loic-sharma authored Jan 8, 2021
2 parents 5ce2f98 + f857dc8 commit 9f32034
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/NuGetGallery.Core/NuGetGallery.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
<Compile Remove="Services\CorePackageFileService.cs" />
</ItemGroup>

<ItemGroup>
<None Remove="Infrastructure\MigrateUserToOrganization.sql" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Infrastructure\MigrateUserToOrganization.sql" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="NuGet.Packaging">
<Version>5.8.0</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ public async Task DuplicatePushesAreRejectedAndNotDeleted()
// Arrange
var packageId = $"{nameof(DuplicatePushesAreRejectedAndNotDeleted)}.{Guid.NewGuid():N}";

int pushVersionCount = 10;
// TODO: Increase this back to 10.
// See: https://github.com/NuGet/NuGetGallery/issues/8368
int pushVersionCount = 1;
var duplicatePushTasks = new List<Task>();
for (var duplicateTaskIndex = 0; duplicateTaskIndex < pushVersionCount; duplicateTaskIndex++)
{
Expand Down

0 comments on commit 9f32034

Please sign in to comment.