Skip to content

Commit 72685e9

Browse files
committed
fix: bad const
1 parent b0300dc commit 72685e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/IntelliTect.Coalesce/Application/CoalesceOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class CoalesceOptions
1717
/// </summary>
1818
public static void PreventAspNetBrowserRefresh()
1919
{
20-
const string key = "ASPNETCORE_" + WebHostDefaults.HostingStartupExcludeAssembliesKey;
20+
string key = "ASPNETCORE_" + WebHostDefaults.HostingStartupExcludeAssembliesKey;
2121
const string assemblyToExclude = "Microsoft.AspNetCore.Watch.BrowserRefresh";
2222

2323
var existing = Environment.GetEnvironmentVariable(key);

0 commit comments

Comments
 (0)