Skip to content

Commit

Permalink
Pull Request #10021: Remove elmah table usage from gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
drewgillies committed Jun 18, 2024
2 parents 4d63db3 + 4c4252d commit 6a2db95
Show file tree
Hide file tree
Showing 22 changed files with 9 additions and 640 deletions.
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 sign.thirdparty.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<ThirdPartyBinaries Include="CsvHelper.dll" />
<ThirdPartyBinaries Include="Dapper.StrongName.dll" />
<ThirdPartyBinaries Include="DynamicData.EFCodeFirstProvider.dll" />
<ThirdPartyBinaries Include="Elmah.dll" />
<ThirdPartyBinaries Include="ICSharpCode.SharpZipLib.dll" />
<ThirdPartyBinaries Include="Knapcode.MiniZip.dll" />
<ThirdPartyBinaries Include="Lucene.Net.Contrib.Analyzers.dll" />
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
5 changes: 0 additions & 5 deletions src/NuGetGallery.Services/Configuration/IAppConfiguration.cs
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

0 comments on commit 6a2db95

Please sign in to comment.