Skip to content

Commit 09fd7c2

Browse files
committed
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.
1 parent bd1e12c commit 09fd7c2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Directory.Build.props

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="OutDir">
22
<PropertyGroup>
3+
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
34
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
45
<BinDir>$(RepositoryRootDirectory)bin</BinDir>
56
<OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>
File renamed without changes.

src/ImGui.NET/ImGui.NET.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>A .NET wrapper for the dear ImGui library.</Description>
4-
<VersionPrefix>0.3.0</VersionPrefix>
4+
<AssemblyVersion>0.3.0</AssemblyVersion>
55
<Authors>Eric Mellino</Authors>
66
<TargetFramework>netstandard1.1</TargetFramework>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
88
<DebugType>portable</DebugType>
99
<AssemblyName>ImGui.NET</AssemblyName>
1010
<PackageId>ImGui.NET</PackageId>
11+
<PackageVersion>$(AssemblyVersion)</PackageVersion>
1112
<PackageTags>ImGui ImGui.NET Immediate Mode GUI</PackageTags>
1213
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1314
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl>
1415
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
15-
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1616
<DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImGui.NET.xml</DocumentationFile>
1717
</PropertyGroup>
1818
<ItemGroup>
@@ -24,8 +24,8 @@
2424
<PackageReference Include="System.Buffers" Version="4.3.0" />
2525
</ItemGroup>
2626
<ItemGroup>
27-
<Content Include="..\..\deps\cimgui\win7-x64\cimgui.dll">
28-
<PackagePath>runtimes/win7-x64/native</PackagePath>
27+
<Content Include="..\..\deps\cimgui\win-x64\cimgui.dll">
28+
<PackagePath>runtimes/win-x64/native</PackagePath>
2929
<Pack>true</Pack>
3030
</Content>
3131
<Content Include="..\..\deps\cimgui\ubuntu.14.04-x64\cimgui.so">

0 commit comments

Comments
 (0)