Skip to content

Commit

Permalink
Do not need to replace . with _
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Oct 13, 2024
1 parent 1fd40f2 commit 5fb2812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonoGame.Framework.Content.Pipeline/ExternalTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static void RestoreDotnetTool(string command, string toolName, string too

public static void RestoreDotnetTools()
{
var version = Assembly.GetExecutingAssembly().GetName().Version.ToString().Replace(".", "_");
var version = Assembly.GetExecutingAssembly().GetName().Version.ToString();
string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory);
if (CurrentPlatform.OS == OS.Linux)
path= Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "linux");
Expand Down

0 comments on commit 5fb2812

Please sign in to comment.