From 76fe3a6725fe5ae2deccea2a2d3df7ecfdcd4d35 Mon Sep 17 00:00:00 2001 From: Eric Mellino Date: Wed, 27 Apr 2016 16:46:32 -0700 Subject: [PATCH] Allow opening in VS Code/VS --- .gitignore | 3 +++ .../ImGui.NET.SampleProgram.xproj | 19 +++++++++++++++++++ .../Properties/launchSettings.json | 3 +++ src/ImGui.NET.SampleProgram/project.json | 3 ++- src/ImGui.NET/ImGui.NET.xproj | 19 +++++++++++++++++++ src/ImGui.NET/project.json | 3 ++- 6 files changed, 48 insertions(+), 2 deletions(-) create mode 100644 src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.xproj create mode 100644 src/ImGui.NET.SampleProgram/Properties/launchSettings.json create mode 100644 src/ImGui.NET/ImGui.NET.xproj diff --git a/.gitignore b/.gitignore index 3906ce0..8f7b378 100644 --- a/.gitignore +++ b/.gitignore @@ -248,3 +248,6 @@ Temporary Items Session.vim .netrwhist *~ + +# VS Code junk +.vscode \ No newline at end of file diff --git a/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.xproj b/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.xproj new file mode 100644 index 0000000..232c037 --- /dev/null +++ b/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 8c3965d6-cc79-450b-ba6f-7b5f57b90aa7 + ImGui.NET.SampleProgram + .\obj + .\bin\ + + + + 2.0 + + + \ No newline at end of file diff --git a/src/ImGui.NET.SampleProgram/Properties/launchSettings.json b/src/ImGui.NET.SampleProgram/Properties/launchSettings.json new file mode 100644 index 0000000..43e0c99 --- /dev/null +++ b/src/ImGui.NET.SampleProgram/Properties/launchSettings.json @@ -0,0 +1,3 @@ +{ + "profiles": {} +} \ No newline at end of file diff --git a/src/ImGui.NET.SampleProgram/project.json b/src/ImGui.NET.SampleProgram/project.json index f0f6a97..972fa33 100644 --- a/src/ImGui.NET.SampleProgram/project.json +++ b/src/ImGui.NET.SampleProgram/project.json @@ -1,7 +1,8 @@ { "compilationOptions": { "allowUnsafe": true, - "emitEntryPoint": true + "emitEntryPoint": true, + "debugType": "portable" }, "dependencies": { "Microsoft.NETCore.App": { diff --git a/src/ImGui.NET/ImGui.NET.xproj b/src/ImGui.NET/ImGui.NET.xproj new file mode 100644 index 0000000..2c0dbd6 --- /dev/null +++ b/src/ImGui.NET/ImGui.NET.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 96d9b05a-94da-426d-ae09-dc5346f834cb + ImGui.NET + .\obj + .\bin\ + + + + 2.0 + + + \ No newline at end of file diff --git a/src/ImGui.NET/project.json b/src/ImGui.NET/project.json index 5fa7748..37b4227 100644 --- a/src/ImGui.NET/project.json +++ b/src/ImGui.NET/project.json @@ -9,7 +9,8 @@ "ImGui ImGui.NET Immediate Mode GUI" ], "compilationOptions": { - "allowUnsafe": true + "allowUnsafe": true, + "debugType": "portable" }, "dependencies": { "NETStandard.Library": "1.5.0-rc3-24019-00",