Update versions for .NET Core RTM

internals
Eric Mellino 8 years ago
parent c69e99ea4a
commit cbc1395f59
  1. 6
      NuGet.Config
  2. 20
      src/ImGui.NET.SampleProgram/project.json
  3. 1
      src/ImGui.NET/ImGui.NET.csproj
  4. 20
      src/ImGui.NET/project.json

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="dotnet-myget dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
</packageSources>
</configuration>

@ -1,5 +1,5 @@
{ {
"compilationOptions": { "buildOptions": {
"allowUnsafe": true, "allowUnsafe": true,
"emitEntryPoint": true, "emitEntryPoint": true,
"debugType": "portable" "debugType": "portable"
@ -7,24 +7,18 @@
"dependencies": { "dependencies": {
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"type": "platform", "type": "platform",
"version": "1.0.0-rc2-3002520" "version": "1.0.0"
}, },
"ImGui.NET": { "target": "project" }, "ImGui.NET": { "target": "project" },
"OpenTK.NETCore": "1.1.2287.6424", "OpenTK.NETCore": "1.1.2364.6424",
"Microsoft.NETCore.ConsoleHost": "1.0.0-rc3-24019-00", "Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24027"
"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": { "frameworks": {
"netcoreapp1.0": { "netcoreapp1.0": {}
"imports": "dnxcore50"
}
}, },
"runtimes": { "runtimes": {
"win7-x64": { }, "win7-x64": {},
"ubuntu.14.04-x64": { }, "ubuntu.14.04-x64": {}
}, },
"content": [ "content": [
"cimgui.dll", "cimgui.dll",

@ -8,6 +8,7 @@
<RootNamespace>ImGuiNET</RootNamespace> <RootNamespace>ImGuiNET</RootNamespace>
<AssemblyName>ImGui.NET</AssemblyName> <AssemblyName>ImGui.NET</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NuGetTargetMoniker>.NETStandard,Version=v1.1</NuGetTargetMoniker>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Align.cs" /> <Compile Include="Align.cs" />

@ -1,25 +1,25 @@
{ {
"version": "0.1.4-*", "version": "0.1.5-*",
"description": "A .NET wrapper for the dear ImGui library.", "description": "A .NET wrapper for the dear ImGui library.",
"projectUrl": "https://github.com/mellinoe/imgui.net", "projectUrl": "https://github.com/mellinoe/imgui.net",
"authors": [ "authors": [
"Eric Mellino" "Eric Mellino"
], ],
"tags": [ "packOptions": {
"ImGui ImGui.NET Immediate Mode GUI" "tags": [
], "ImGui ImGui.NET Immediate Mode GUI"
"compilationOptions": { ]
},
"buildOptions": {
"allowUnsafe": true, "allowUnsafe": true,
"debugType": "portable" "debugType": "portable"
}, },
"dependencies": { "dependencies": {
"NETStandard.Library": "1.5.0-rc3-24019-00", "System.Numerics.Vectors": "4.1.1",
"System.Numerics.Vectors": "4.1.1-rc3-24019-00", "System.Runtime.InteropServices": "4.1.0"
}, },
"frameworks": { "frameworks": {
"netstandard1.5": { "netstandard1.1": {}
"imports": [ ]
}
}, },
"packInclude": { "packInclude": {
"runtimes/win7-x64/native/": "../../deps/cimgui/win7-x64/cimgui.dll", "runtimes/win7-x64/native/": "../../deps/cimgui/win7-x64/cimgui.dll",

Loading…
Cancel
Save