-
Notifications
You must be signed in to change notification settings - Fork 679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
**Review Only** Incorproate coreclr-debug into omnisharp extension #40
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6db54aa
Incorproate coreclr-debug into omnisharp extension
chuckries ad16289
Update coreclr-debug dependencies.
chuckries 9d7983e
Remove FSharp references
chuckries 81b9a43
Change var to let for file level variables
chuckries a2d6984
Add install logging and install.complete generation
chuckries f0f37f9
'cleanup'
chuckries 2f28f57
Update project.json and Remove CopyFiles
chuckries 5ddc12a
Update the project.json and nuget.config
chuckries d7edb63
Bump vs code version to ^0.10.10
chuckries File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
], | ||
"stopOnEntry": false, | ||
"sourceMaps": true, | ||
"outDir": "out" | ||
"outDir": "${workspaceRoot}/out" | ||
} | ||
] | ||
} |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should merge in the most recent changes that @caslan made to this (removal of 'dnxcore50').