Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.
/ NuGet.Jobs Public archive

Add more SQL AAD diagnostics #653

Merged
merged 2 commits into from
Nov 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/NuGet.Jobs.Common/NuGet.Jobs.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NuGet.Services.Configuration">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Logging">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Sql">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="System.Net.Http">
<Version>4.3.3</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NuGet.Services.Status">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Storage">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be able to remove NuGet.Services.Storage, inherited from Validation.Common.Job

</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
8 changes: 1 addition & 7 deletions src/PackageLagMonitor/Monitoring.PackageLag.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,7 @@
<Version>0.5.0-CI-20180510-012541</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.AzureManagement">
<Version>2.27.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Configuration">
<Version>2.27.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Logging">
<Version>2.27.0</Version>
<Version>2.33.0</Version>
</PackageReference>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be able to remove NuGet.Services.Configuration and NuGet.Services.Logging, inherited from NuGet.Jobs.Common

<PackageReference Include="System.Net.Http">
<Version>4.3.3</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,6 @@
<PackageReference Include="Newtonsoft.Json">
<Version>9.0.1</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Sql">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="UAParser">
<Version>1.2.0</Version>
</PackageReference>
Expand Down
8 changes: 4 additions & 4 deletions src/Validation.Common.Job/Validation.Common.Job.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -103,16 +103,16 @@
<Version>4.8.0-preview4.5289</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.ServiceBus">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Storage">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Validation">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Validation.Issues">
<Version>2.29.0</Version>
<Version>2.33.0</Version>
</PackageReference>
<PackageReference Include="NuGetGallery.Core">
<Version>4.4.4-dev-42523</Version>
Expand Down
3 changes: 0 additions & 3 deletions src/Validation.Common/Validation.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,6 @@
<PackageReference Include="NuGet.ApplicationInsights.Owin">
<Version>4.1.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Logging">
<Version>2.27.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.VirusScanning.Vcs">
<Version>3.2.0</Version>
</PackageReference>
Expand Down
6 changes: 0 additions & 6 deletions src/Validation.Symbols.Core/Validation.Symbols.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,6 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NuGet.Services.ServiceBus">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Validation">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="MicroBuild.Core">
<Version>0.3.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ public MessageWithCustomDeliveryCount(IBrokeredMessage inner, int deliveryCount)
public DateTimeOffset ExpiresAtUtc => throw new NotImplementedException();
public DateTimeOffset EnqueuedTimeUtc => throw new NotImplementedException();

public string MessageId { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

public Task AbandonAsync() => throw new NotImplementedException();
public IBrokeredMessage Clone() => throw new NotImplementedException();
public Task CompleteAsync() => throw new NotImplementedException();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ public MessageWithCustomDeliveryCount(IBrokeredMessage inner, int deliveryCount)
public DateTimeOffset ExpiresAtUtc => throw new NotImplementedException();
public DateTimeOffset EnqueuedTimeUtc => throw new NotImplementedException();

public string MessageId { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

public Task AbandonAsync() => throw new NotImplementedException();
public IBrokeredMessage Clone() => throw new NotImplementedException();
public Task CompleteAsync() => throw new NotImplementedException();
Expand Down
9 changes: 0 additions & 9 deletions tests/StatusAggregator.Tests/StatusAggregator.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,6 @@
<PackageReference Include="Moq">
<Version>4.7.145</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Incidents">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Status">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="NuGet.Services.Status.Table">
<Version>2.29.0</Version>
</PackageReference>
<PackageReference Include="System.Threading.Tasks.Extensions">
<Version>4.3.0</Version>
</PackageReference>
Expand Down