Skip to content

Commit

Permalink
Merge pull request #2477 from OmniSharp/feature/dotnet-script
Browse files Browse the repository at this point in the history
Updated dotnet-script dependencies to 1.4.0
  • Loading branch information
filipw authored Nov 28, 2022
2 parents e760a67 + 72b578f commit 098238f
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,42 @@
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
},
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/src/OmniSharp.Stdio.Driver/OmniSharp.Stdio.Driver.csproj"
],
"problemMatcher": "$msCompile"
}
]
}
4 changes: 2 additions & 2 deletions build/Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<ItemGroup>
<PackageReference Update="Cake.Scripting.Transport" Version="0.9.0" />

<PackageReference Update="Dotnet.Script.DependencyModel" Version="1.3.1" />
<PackageReference Update="Dotnet.Script.DependencyModel.NuGet" Version="1.3.1" />
<PackageReference Update="Dotnet.Script.DependencyModel" Version="1.4.0" />
<PackageReference Update="Dotnet.Script.DependencyModel.NuGet" Version="1.4.0" />
<PackageReference Update="ICSharpCode.Decompiler" Version="7.2.1.6856" />

<PackageReference Update="McMaster.Extensions.CommandLineUtils" Version="3.1.0" />
Expand Down

0 comments on commit 098238f

Please sign in to comment.