diff --git a/samples/MvcSample.Web/compiler/preprocess/RazorPreCompilation.cs b/samples/MvcSample.Web/compiler/preprocess/RazorPreCompilation.cs deleted file mode 100644 index 1f3ae6826c..0000000000 --- a/samples/MvcSample.Web/compiler/preprocess/RazorPreCompilation.cs +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using Microsoft.AspNet.Mvc; -using Microsoft.Framework.Runtime; - -namespace MvcSample.Web -{ - public class RazorPreCompilation : RazorPreCompileModule - { - public RazorPreCompilation(IServiceProvider provider, - IApplicationEnvironment applicationEnvironment) - : base(provider) - { - GenerateSymbols = string.Equals(applicationEnvironment.Configuration, - "debug", - StringComparison.OrdinalIgnoreCase); - } - } -} \ No newline at end of file diff --git a/samples/TagHelperSample.Web/compiler/preprocess/RazorPreCompilation.cs b/samples/TagHelperSample.Web/compiler/preprocess/RazorPreCompilation.cs deleted file mode 100644 index cef5303a35..0000000000 --- a/samples/TagHelperSample.Web/compiler/preprocess/RazorPreCompilation.cs +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using Microsoft.AspNet.Mvc; -using Microsoft.Framework.Runtime; - -namespace TagHelperSample.Web -{ - public class TagHelperPrecompilation : RazorPreCompileModule - { - public TagHelperPrecompilation(IServiceProvider provider, - IApplicationEnvironment applicationEnvironment) - : base(provider) - { - GenerateSymbols = string.Equals(applicationEnvironment.Configuration, - "debug", - StringComparison.OrdinalIgnoreCase); - } - } -} \ No newline at end of file