Merge pull request #97198 from raulsntos/dotnet/open-visual-studio-with-dotnet-cli

C#: Use dotnet CLI to launch `OpenVisualStudio.dll`
This commit is contained in:
Rémi Verschelde 2024-09-20 16:06:46 +02:00
commit 2f078e501c
No known key found for this signature in database
GPG Key ID: C3336907360768E1
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,6 @@
<TargetFramework>net6.0-windows</TargetFramework> <TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>10</LangVersion> <LangVersion>10</LangVersion>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>False</SelfContained> <SelfContained>False</SelfContained>
<RollForward>LatestMajor</RollForward> <RollForward>LatestMajor</RollForward>
</PropertyGroup> </PropertyGroup>

View File

@ -259,11 +259,12 @@ namespace GodotTools
var args = new List<string> var args = new List<string>
{ {
Path.Combine(GodotSharpDirs.DataEditorToolsDir, "GodotTools.OpenVisualStudio.dll"),
GodotSharpDirs.ProjectSlnPath, GodotSharpDirs.ProjectSlnPath,
line >= 0 ? $"{scriptPath};{line + 1};{col + 1}" : scriptPath line >= 0 ? $"{scriptPath};{line + 1};{col + 1}" : scriptPath
}; };
string command = Path.Combine(GodotSharpDirs.DataEditorToolsDir, "GodotTools.OpenVisualStudio.exe"); string command = DotNetFinder.FindDotNetExe() ?? "dotnet";
try try
{ {