|
|
<Project ToolsVersion="15.0">
|
|
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
|
|
|
<PropertyGroup>
|
|
|
<Description>A .NET wrapper for the Dear ImGui library.</Description>
|
|
|
<AssemblyVersion>1.78.0</AssemblyVersion>
|
|
|
<Authors>Eric Mellino</Authors>
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
<DebugType>portable</DebugType>
|
|
|
<AssemblyName>ImGui.NET</AssemblyName>
|
|
|
<PackageId>ImGui.NET</PackageId>
|
|
|
<PackagePrereleaseIdentifier></PackagePrereleaseIdentifier>
|
|
|
<PackageVersion>$(AssemblyVersion)$(PackagePrereleaseIdentifier)</PackageVersion>
|
|
|
<PackageTags>ImGui ImGui.NET Immediate Mode GUI</PackageTags>
|
|
|
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl>
|
|
|
<DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImGui.NET.xml</DocumentationFile>
|
|
|
<RootNamespace>ImGuiNET</RootNamespace>
|
|
|
</PropertyGroup>
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
<DebugType></DebugType>
|
|
|
<DocumentationFile></DocumentationFile>
|
|
|
</PropertyGroup>
|
|
|
<ItemGroup>
|
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
|
|
|
<PackageReference Include="System.Buffers" Version="4.5.1" />
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Content Include="..\..\deps\cimgui\win-x86\cimgui.dll">
|
|
|
<PackagePath>runtimes/win-x86/native</PackagePath>
|
|
|
<Pack>true</Pack>
|
|
|
</Content>
|
|
|
<Content Include="..\..\deps\cimgui\win-x64\cimgui.dll">
|
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
|
<Pack>true</Pack>
|
|
|
</Content>
|
|
|
<Content Include="..\..\deps\cimgui\linux-x64\cimgui.so">
|
|
|
<PackagePath>runtimes/linux-x64/native/libcimgui.so</PackagePath>
|
|
|
<Pack>true</Pack>
|
|
|
</Content>
|
|
|
<Content Include="..\..\deps\cimgui\osx-x64\cimgui.dylib">
|
|
|
<PackagePath>runtimes/osx-x64/native/libcimgui.dylib</PackagePath>
|
|
|
<Pack>true</Pack>
|
|
|
</Content>
|
|
|
<Content Include="build\net40\ImGui.NET.targets">
|
|
|
<PackagePath>build/net40/ImGui.NET.targets</PackagePath>
|
|
|
<Pack>true</Pack>
|
|
|
</Content>
|
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
|
<Folder Include="Generated\" />
|
|
|
</ItemGroup>
|
|
|
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
|
|
|
</Project>
|
|
|
|