Skip to content

Commit

Permalink
Merge pull request #185 from Kukkimonsuta/dev
Browse files Browse the repository at this point in the history
Fix typo in dotnet restore
  • Loading branch information
DustinCampbell committed Apr 13, 2016
2 parents d262220 + 0440d6f commit a29e1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function dotnetRestoreAllProjects(server: OmnisharpServer) {
if ('DotNet' in info && info.DotNet.Projects.length > 0) {
for (let project of info.DotNet.Projects) {
commands.push({
label: `dotnet restor - (${project.Name || path.basename(project.Path)})`,
label: `dotnet restore - (${project.Name || path.basename(project.Path)})`,
description: path.dirname(project.Path),
execute() {
return runInTerminal('dotnet', ['restore'], {
Expand Down

0 comments on commit a29e1aa

Please sign in to comment.