-
Notifications
You must be signed in to change notification settings - Fork 675
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 #44 from OmniSharp/coreclr-debug
Incorproate coreclr-debug into omnisharp extension (rebasing @chuckries's work against 'dev' branch)
- Loading branch information
Showing
10 changed files
with
478 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
bin | ||
node_modules | ||
out | ||
|
||
*.vsix |
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,13 @@ | ||
**/*.gitignore | ||
tsconfig.json | ||
|
||
src/** | ||
**/*.map | ||
|
||
.vscode/** | ||
|
||
coreclr-debug/debugAdapters/** | ||
coreclr-debug/bin/** | ||
coreclr-debug/obj/** | ||
coreclr-debug/project.lock.json | ||
coreclr-debug/install.log |
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,5 @@ | ||
bin | ||
obj | ||
project.lock.json | ||
debugAdapters | ||
install.log |
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,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<packageSources> | ||
<!--To inherit the global NuGet package sources remove the <clear/> line below --> | ||
<clear /> | ||
<add key="dotnet-core" value="https://www.myget.org/F/dotnet-core/api/v3/index.json" /> | ||
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /> | ||
<add key="coreclr-debug" value="https://www.myget.org/F/coreclr-debug/api/v3/index.json" /> | ||
</packageSources> | ||
</configuration> |
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,13 @@ | ||
using System; | ||
|
||
namespace Dummy | ||
{ | ||
class Dummy | ||
{ | ||
static void Main(string[] args) { | ||
// empty boilerplate required by dotnet build/publish to emit an entry point | ||
// The entrypoint created is dummy[.exe], which we rename to OpenDebugAD7[.exe] | ||
// The generated entry point will then run OpenDebugAD7.dll for us | ||
} | ||
} | ||
} |
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,33 @@ | ||
{ | ||
"name": "dummy", | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
"dependencies": { | ||
"Microsoft.VisualStudio.clrdbg": "14.0.25025-preview-2839567", | ||
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30225-preview-2", | ||
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20225-preview-2", | ||
"NETStandard.Library": "1.0.0-rc3-23819", | ||
"Newtonsoft.Json": "7.0.1", | ||
"Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1", | ||
"System.Collections.Specialized": "4.0.1-rc3-23819", | ||
"System.Collections.Immutable": "1.2.0-rc3-23819", | ||
"System.Diagnostics.Process" : "4.1.0-rc3-23819", | ||
"System.Diagnostics.StackTrace": "4.0.1-rc3-23819", | ||
"System.Dynamic.Runtime": "4.0.11-rc3-23819", | ||
"Microsoft.CSharp": "4.0.1-rc3-23819", | ||
"System.Threading.Tasks.Dataflow": "4.6.0-rc3-23819", | ||
"System.Threading.Thread": "4.0.0-rc3-23819", | ||
"System.Xml.XDocument": "4.0.11-rc3-23819", | ||
"System.Xml.XmlDocument": "4.0.1-rc3-23819", | ||
"System.Xml.XmlSerializer": "4.0.11-rc3-23819", | ||
"System.ComponentModel": "4.0.1-rc3-23819", | ||
"System.ComponentModel.Annotations": "4.1.0-rc3-23819", | ||
"System.ComponentModel.EventBasedAsync": "4.0.11-rc3-23819", | ||
"System.Runtime.Serialization.Primitives": "4.1.0-rc3-23819", | ||
"System.Net.Http": "4.0.1-rc3-23819" | ||
}, | ||
"frameworks": { | ||
"dnxcore50": { } | ||
} | ||
} |
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
Oops, something went wrong.