-
Notifications
You must be signed in to change notification settings - Fork 420
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #906 from OmniSharp/dev
Merge dev into master
- Loading branch information
Showing
574 changed files
with
16,289 additions
and
9,310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "0.1.0", | ||
"command": "./msbuild.sh", | ||
"args": [ | ||
"OmniSharp.sln", | ||
// Ask msbuild to generate full paths for file names. | ||
"/property:GenerateFullPaths=true" | ||
], | ||
"taskSelector": "/t:", | ||
"showOutput": "silent", | ||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
// Show the output window only if unrecognized errors occur. | ||
"showOutput": "silent", | ||
// Use the standard MS compiler pattern to detect errors, warnings and infos | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<add key="Roslyn" value="https://www.myget.org/F/roslyn-nightly/api/v3/index.json" /> | ||
<add key="aspnetcidev" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" /> | ||
<add key="dotnetcore" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" /> | ||
<add key="nugetbuild" value="https://www.myget.org/F/nugetbuild/api/v3/index.json" /> | ||
<clear/> | ||
<add key="buildtools" value="https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" /> | ||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" /> | ||
</packageSources> | ||
</configuration> | ||
<packageSources> | ||
<clear /> | ||
<add key="NuGet" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" /> | ||
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
Oops, something went wrong.