Fix assembly version, update cimgui.dll location.

* cimgui.dll is now under win-x64, instead of win7-x64. This just makes
  the package more flexible, but should behave the same as before.
internals
Eric Mellino 7 years ago
parent bd1e12c39f
commit 09fd7c2076
  1. 1
      Directory.Build.props
  2. 0
      deps/cimgui/win-x64/cimgui.dll
  3. 8
      src/ImGui.NET/ImGui.NET.csproj

@ -1,5 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="OutDir">
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
<BinDir>$(RepositoryRootDirectory)bin</BinDir>
<OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>

@ -1,18 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A .NET wrapper for the dear ImGui library.</Description>
<VersionPrefix>0.3.0</VersionPrefix>
<AssemblyVersion>0.3.0</AssemblyVersion>
<Authors>Eric Mellino</Authors>
<TargetFramework>netstandard1.1</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<AssemblyName>ImGui.NET</AssemblyName>
<PackageId>ImGui.NET</PackageId>
<PackageVersion>$(AssemblyVersion)</PackageVersion>
<PackageTags>ImGui ImGui.NET Immediate Mode GUI</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImGui.NET.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
@ -24,8 +24,8 @@
<PackageReference Include="System.Buffers" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.dll">
<PackagePath>runtimes/win7-x64/native</PackagePath>
<Content Include="..\..\deps\cimgui\win-x64\cimgui.dll">
<PackagePath>runtimes/win-x64/native</PackagePath>
<Pack>true</Pack>
</Content>
<Content Include="..\..\deps\cimgui\ubuntu.14.04-x64\cimgui.so">

Loading…
Cancel
Save