diff --git a/global.json b/global.json new file mode 100644 index 0000000..b0323e4 --- /dev/null +++ b/global.json @@ -0,0 +1,3 @@ +{ + "projects": [ "src" ] +} \ No newline at end of file diff --git a/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.csproj b/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.csproj index c778553..108056b 100644 --- a/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.csproj +++ b/src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.csproj @@ -1,5 +1,9 @@  + + Ubuntu_Debug + Windows_Debug + 14.0 @@ -8,7 +12,8 @@ ImGuiNET SampleGUIProgram true - true + .NETCoreApp,Version=v1.0 + win7 @@ -24,9 +29,6 @@ - - True - ImGUI.NET @@ -36,10 +38,6 @@ cimgui.dll PreserveNewest - - cimgui.pdb - PreserveNewest - \ No newline at end of file diff --git a/src/ImGui.NET.SampleProgram/cimgui.dll b/src/ImGui.NET.SampleProgram/cimgui.dll new file mode 100644 index 0000000..d36dad5 Binary files /dev/null and b/src/ImGui.NET.SampleProgram/cimgui.dll differ diff --git a/src/ImGui.NET.SampleProgram/cimgui.so b/src/ImGui.NET.SampleProgram/cimgui.so new file mode 100644 index 0000000..203c8d7 Binary files /dev/null and b/src/ImGui.NET.SampleProgram/cimgui.so differ diff --git a/src/ImGui.NET.SampleProgram/project.json b/src/ImGui.NET.SampleProgram/project.json index 62fac6f..f0f6a97 100644 --- a/src/ImGui.NET.SampleProgram/project.json +++ b/src/ImGui.NET.SampleProgram/project.json @@ -1,16 +1,32 @@ { - "dependencies": { - "Microsoft.NETCore.Console": "1.0.0-beta-23504", - "System.Console": "4.0.0-beta-23504", - "System.Reflection.Metadata": "1.1.1-beta-23504", - "System.Threading.Thread": "4.0.0-beta-23504" + "compilationOptions": { + "allowUnsafe": true, + "emitEntryPoint": true + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0-rc2-3002520" }, - "runtimes": { - "win10-x64": { }, - "ubuntu.14.04-x64": { }, - "osx.10.10-x64": { } - }, - "frameworks": { - "dnxcore50": { } + "ImGui.NET": { "target": "project" }, + "OpenTK.NETCore": "1.1.2287.6424", + "Microsoft.NETCore.ConsoleHost": "1.0.0-rc3-24019-00", + "Microsoft.NETCore.Runtime": "1.0.2-rc3-24019-00", + "System.ComponentModel": "4.0.1-rc3-24019-00", + "System.Threading.Thread": "4.0.0-rc3-24019-00", + "System.Reflection.TypeExtensions": "4.1.0-rc3-24019-00", + }, + "frameworks": { + "netcoreapp1.0": { + "imports": "dnxcore50" } + }, + "runtimes": { + "win7-x64": { }, + "ubuntu.14.04-x64": { }, + }, + "content": [ + "cimgui.dll", + "cimgui.so" + ] } \ No newline at end of file