Skip to content

Commit

Permalink
Merge pull request #1818 from filipw/feature/dotnet-script-update
Browse files Browse the repository at this point in the history
updated dotnet script packages to 0.53.0
  • Loading branch information
david-driscoll authored Jun 6, 2020
2 parents 319d9cb + 75ccedf commit 845fa01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build/Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<ItemGroup>
<PackageReference Update="Cake.Scripting.Transport" Version="0.3.0" />

<PackageReference Update="Dotnet.Script.DependencyModel" Version="0.51.0" />
<PackageReference Update="Dotnet.Script.DependencyModel.NuGet" Version="0.51.0" />
<PackageReference Update="Dotnet.Script.DependencyModel" Version="0.53.0" />
<PackageReference Update="Dotnet.Script.DependencyModel.NuGet" Version="0.53.0" />
<PackageReference Update="ICSharpCode.Decompiler" Version="5.0.2.5153" />
<PackageReference Update="McMaster.Extensions.CommandLineUtils" Version="2.2.4" />

Expand Down
7 changes: 0 additions & 7 deletions src/OmniSharp.Host/Services/OmniSharpEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,5 @@ public OmniSharpEnvironment(
SharedDirectory = Path.Combine(root, ".omnisharp");
}
}

public static bool IsValidPath(string path)
{
return string.IsNullOrEmpty(path)
|| Directory.Exists(path)
|| (File.Exists(path) && Path.GetExtension(path).Equals(".sln", StringComparison.OrdinalIgnoreCase));
}
}
}

0 comments on commit 845fa01

Please sign in to comment.