Skip to content

Commit

Permalink
Use raw string literal because of Windows file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalobi authored Mar 13, 2024
1 parent a92f4f5 commit 9956289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CelesteMod/Source/CelesteMod-core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<Using Namespace="System.IO.Compression" />
<Code Type="Fragment" Language="cs">
<![CDATA[
var projectDir = Path.Combine("$(ProjectDir)", ".."); // Go one level up, since we're inside the 'Source' directory
var projectDir = Path.Combine(@"$(ProjectDir)", ".."); // Go one level up, since we're inside the 'Source' directory
if (File.Exists(OutputPath))
File.Delete(OutputPath);
Expand Down

0 comments on commit 9956289

Please sign in to comment.