Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove elmah table usage from gallery #10021

Merged
merged 7 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
12 changes: 0 additions & 12 deletions CREDITS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,6 @@ The .NET Foundation (http://www.dotnetfoundation.org).

NuGet includes works distributed under the licenses listed below. The full text for most of the licenses listed below can be found in the LICENSE.txt file accompanying each work. The original copyright notices have been preserved within the respective files and or packages. Please refer to the specific files and/or packages for more detailed information about the authors, copyright notices, and licenses.

Elmah 1.1
-----
Website: http://code.google.com/p/elmah/
Copyright: Copyright (c) 2010 Atif Azis
License: Apache 2.0

Elmah.Contrib.Mvc 1.0
----
Website: http://nuget.org/List/Packages/Elmah.Contrib.Mvc
Copyright: Copyright (c) 2011, Fabian Vilers
License: Ms-PL

jQuery 1.6.2
----
Website: http://jquery.com/
Expand Down
1 change: 0 additions & 1 deletion src/AccountDeleter/Configuration/GalleryConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public string SiteRoot
public string AzureStorage_Auditing_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_UserCertificates_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_Content_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_Errors_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_Packages_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_FlatContainer_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string AzureStorage_Statistics_ConnectionString { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
Expand Down
49 changes: 0 additions & 49 deletions src/NuGetGallery.Core/Infrastructure/ElmahException.cs

This file was deleted.

236 changes: 0 additions & 236 deletions src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs

This file was deleted.

3 changes: 0 additions & 3 deletions src/NuGetGallery.Core/NuGetGallery.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@
<PackageReference Include="NuGet.Services.Validation.Issues">
<Version>$(ServerCommonPackageVersion)</Version>
</PackageReference>
<PackageReference Include="NuGet.StrongName.elmah.corelibrary">
<Version>1.2.2</Version>
</PackageReference>
<PackageReference Include="Microsoft.Data.Services.Client">
<Version>5.8.4</Version>
</PackageReference>
Expand Down
3 changes: 0 additions & 3 deletions src/NuGetGallery.Services/Configuration/AppConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ public class AppConfiguration : IAppConfiguration
[DisplayName("AzureStorage.Content.ConnectionString")]
public string AzureStorage_Content_ConnectionString { get; set; }

[DisplayName("AzureStorage.Errors.ConnectionString")]
public string AzureStorage_Errors_ConnectionString { get; set; }

[DisplayName("AzureStorage.Packages.ConnectionString")]
public string AzureStorage_Packages_ConnectionString { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ public interface IAppConfiguration : IMessageServiceConfiguration
/// </summary>
string AzureStorage_Content_ConnectionString { get; set; }

/// <summary>
/// The Azure Storage connection string used for Elmah error logs.
/// </summary>
string AzureStorage_Errors_ConnectionString { get; set; }

/// <summary>
/// The Azure Storage connection string used for packages, after upload.
/// </summary>
Expand Down
Loading