Skip to content

Commit

Permalink
Removed c# 11 reference and fixed only instance of string literal.
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlClinckspoor committed Mar 19, 2023
1 parent 38b6233 commit 8421eb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions UWRandomizerWPF/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ private void Btn_ExportSpoilerLog_Click(object sender, RoutedEventArgs e)
}
else
{
File.WriteAllText(log, "./UWspoilerlog.txt");
AddMsgToLog($"""Saved spoiler log to {System.IO.Path.Join(Directory.GetCurrentDirectory(), "./UWspoilerlog.txt")}""");
var tempname = "UWspoilerlog.txt";
File.WriteAllText(log, tempname);
AddMsgToLog($"Saved spoiler log to {System.IO.Path.Join(Directory.GetCurrentDirectory(), tempname)}");
}
}

Expand Down
2 changes: 1 addition & 1 deletion UWRandomizerWPF/UWRandomizerWPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<PackageVersion>0.1.0</PackageVersion>
<LangVersion>11</LangVersion>
<LangVersion>10</LangVersion>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
Expand Down

0 comments on commit 8421eb9

Please sign in to comment.