Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
DedSec256 committed May 11, 2021
1 parent c144abf commit 4efa0d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

namespace JetBrains.ReSharper.Plugins.FSharp.Fantomas.Host
{
public static class RiderAssemblyResolver
public static class FantomasAssemblyResolver
{
private const string AdditionalProbingPathsEnvVar = "RIDER_PLUGIN_ADDITIONAL_PROBING_PATHS";
private static readonly List<string> OurAdditionalProbingPaths = new List<string>();

static RiderAssemblyResolver()
static FantomasAssemblyResolver()
{
var paths = Environment.GetEnvironmentVariable(AdditionalProbingPathsEnvVar);
if (string.IsNullOrWhiteSpace(paths)) return;
Expand Down
2 changes: 1 addition & 1 deletion ReSharper.FSharp/src/FSharp.Fantomas.Host/src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public static class Program
{
public static void Main(string[] args)
{
AppDomain.CurrentDomain.AssemblyResolve += RiderAssemblyResolver.Resolve;
AppDomain.CurrentDomain.AssemblyResolve += FantomasAssemblyResolver.Resolve;
MainInternal(args);
}

Expand Down

0 comments on commit 4efa0d6

Please sign in to comment.