From cb4b17504e1e2e807023563698bcb9ed9b40e566 Mon Sep 17 00:00:00 2001 From: Doug Bunting Date: Mon, 7 Dec 2015 21:14:29 -0800 Subject: [PATCH] Remove `[SuppressMessage]` - build break --- src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs b/src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs index 92e8de8a10..f00d13ea40 100644 --- a/src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs +++ b/src/Microsoft.AspNet.StaticFiles/DefaultFilesOptions.cs @@ -2,7 +2,6 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; using Microsoft.AspNet.StaticFiles.Infrastructure; namespace Microsoft.AspNet.StaticFiles @@ -40,7 +39,6 @@ namespace Microsoft.AspNet.StaticFiles /// /// An ordered list of file names to select by default. List length and ordering may affect performance. /// - [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly", Justification = "Improves usability")] public IList DefaultFileNames { get; set; } } }