You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unhandled exception. System.ArgumentNullException: Value cannot be null. (Parameter 'path')
at System.ArgumentNullException.Throw(String paramName)
at System.ArgumentNullException.ThrowIfNull(Object argument, String paramName)
at System.ArgumentException.ThrowNullOrEmptyException(String argument, String paramName)
at System.IO.Directory.GetParent(String path)
at System.Configuration.LocalFileSettingsProvider.GetPreviousConfigFileName(Boolean isRoaming)
at System.Configuration.LocalFileSettingsProvider.Upgrade(SettingsContext context, SettingsPropertyCollection properties, Boolean isRoaming)
at System.Configuration.LocalFileSettingsProvider.Upgrade(SettingsContext context, SettingsPropertyCollection properties)
at System.Configuration.ApplicationSettingsBase.Upgrade()
at GW2EIParser.Program.Main(String[] args) in G:\Projects\GW2-Elite-Insights-Parser\GW2EIParserCLI\Program.cs:line 20
[1] 539975 abort (core dumped) dotnet ./GuildWars2EliteInsights-CLI.dll
mkdir -p ~/.local/share
mkdir -p ~/.config
dotnet ./GuildWars2EliteInsights-CLI.dll
See expected functionality
dotnet [arguments] [logs...]
-c [config path] : use another config file
-h : help
From the stack trace, I found this issue on the dotnet project: dotnet/runtime#98715, which gives a workaround of creating the folder. (along with ~/.config)
Since it's pretty clearly an upstream issue, I'm mostly creating this issue in case anyone here runs into the same issue trying to use Elite Insights CLI.
The text was updated successfully, but these errors were encountered:
Describe the bug
Attempting to run the CLI build on linux with the dotnet 8 runtime, crashes unless you manually create a folder at ~/.local/share
To Reproduce
Steps to reproduce the behavior:
wget https://github.com/baaron4/GW2-Elite-Insights-Parser/releases/download/v3.0.0.0/GW2EICLI.zip
unzip GW2EICLI.zip
dotnet ./GuildWars2EliteInsights-CLI.dll
mkdir -p ~/.local/share
mkdir -p ~/.config
dotnet ./GuildWars2EliteInsights-CLI.dll
From the stack trace, I found this issue on the dotnet project: dotnet/runtime#98715, which gives a workaround of creating the folder. (along with ~/.config)
Since it's pretty clearly an upstream issue, I'm mostly creating this issue in case anyone here runs into the same issue trying to use Elite Insights CLI.
The text was updated successfully, but these errors were encountered: