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,
"emitEntryPoint": true,
"debugType": "portable"
@ -7,24 +7,18 @@
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-3002520"
"version": "1.0.0"
},
"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",
"OpenTK.NETCore": "1.1.2364.6424",
"Microsoft.NETCore.ConsoleHost": "1.0.0-rc2-24027"
},
"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
}
"netcoreapp1.0": {}
},
"runtimes": {
"win7-x64": { },
"ubuntu.14.04-x64": { },
"win7-x64": {},
"ubuntu.14.04-x64": {}
},
"content": [
"cimgui.dll",

@ -8,6 +8,7 @@
<RootNamespace>ImGuiNET</RootNamespace>
<AssemblyName>ImGui.NET</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NuGetTargetMoniker>.NETStandard,Version=v1.1</NuGetTargetMoniker>
</PropertyGroup>
<ItemGroup>
<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.",
"projectUrl": "https://github.com/mellinoe/imgui.net",
"authors": [
"Eric Mellino"
],
"tags": [
"ImGui ImGui.NET Immediate Mode GUI"
],
"compilationOptions": {
"packOptions": {
"tags": [
"ImGui ImGui.NET Immediate Mode GUI"
]
},
"buildOptions": {
"allowUnsafe": true,
"debugType": "portable"
},
"dependencies": {
"NETStandard.Library": "1.5.0-rc3-24019-00",
"System.Numerics.Vectors": "4.1.1-rc3-24019-00",
"System.Numerics.Vectors": "4.1.1",
"System.Runtime.InteropServices": "4.1.0"
},
"frameworks": {
"netstandard1.5": {
"imports": [ ]
}
"netstandard1.1": {}
},
"packInclude": {
"runtimes/win7-x64/native/": "../../deps/cimgui/win7-x64/cimgui.dll",

Loading…
Cancel
Save