Allow the use of dotnet build on ImGui.NET

internals
Eric Mellino 9 years ago
parent 0b9c3ddd8b
commit 63808c6115
  1. 2
      corebuild
  2. BIN
      deps/cimgui/ubuntu14.04-x64/cimgui.so
  3. 0
      deps/cimgui/win7-x64/cimgui.dll
  4. BIN
      deps/cimgui/x64/cimgui.pdb
  5. 4
      src/ImGui.NET.SampleProgram.Net46/ImGui.NET.SampleProgram.Net46.csproj
  6. 4
      src/ImGui.NET.SampleProgram/ImGui.NET.SampleProgram.csproj
  7. 25
      src/ImGui.NET/project.json

@ -1 +1 @@
Subproject commit 6d52a02e4c81463cf89f1fefdebdaa5cfda46542
Subproject commit ac59741e0732b5387c06a348e804938f234c72e0

Binary file not shown.

Binary file not shown.

@ -38,11 +38,11 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\deps\cimgui\x64\cimgui.dll">
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.dll">
<Link>cimgui.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\deps\cimgui\x64\cimgui.pdb">
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.pdb">
<Link>cimgui.pdb</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

@ -32,11 +32,11 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\deps\cimgui\x64\cimgui.dll">
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.dll">
<Link>cimgui.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\deps\cimgui\x64\cimgui.pdb">
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.pdb">
<Link>cimgui.pdb</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

@ -1,8 +1,27 @@
{
"version": "0.1.0-*",
"description": "A .NET wrapper for the dear ImGui library.",
"projectUrl": "https://github.com/mellinoe/imgui.net",
"authors": [
"Eric Mellino"
],
"tags": [
"ImGui ImGui.NET Immediate Mode GUI"
],
"compilationOptions": {
"allowUnsafe": true
},
"dependencies": {
"Microsoft.NETCore.Console": "1.0.0-beta-23504"
"NETStandard.Library": "1.5.0-rc3-24019-00",
"System.Numerics.Vectors": "4.1.1-rc3-24019-00",
},
"frameworks": {
"dnxcore50": { }
"netstandard1.5": {
"imports": [ ]
}
},
"packInclude": {
"runtimes/win7-x64/native/": "../../deps/cimgui/win7-x64/cimgui.dll",
"runtimes/ubuntu14.04-x64/native/": "../../deps/cimgui/ubuntu14.04-x64/cimgui.so"
}
}
}

Loading…
Cancel
Save