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",