Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ILSpy.Core/CommandLineArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

using System;
using System.Collections.Generic;
using System.IO;

namespace ICSharpCode.ILSpy
{
Expand Down Expand Up @@ -52,6 +53,8 @@ public CommandLineArguments(IEnumerable<string> arguments)
this.NoActivate = true;
else if (arg.StartsWith("/config:", StringComparison.OrdinalIgnoreCase))
this.ConfigFile = arg.Substring("/config:".Length);
else if (Path.DirectorySeparatorChar == '/' && File.Exists(arg))
this.AssembliesToLoad.Add(arg);
}
else {
this.AssembliesToLoad.Add(arg);
Expand Down