You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.6 KiB
37 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
<PropertyGroup> |
|
<Description>A .NET wrapper for the dear ImGui library.</Description> |
|
<AssemblyVersion>0.4.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> |
|
<DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImGui.NET.xml</DocumentationFile> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<PackageReference Include="System.Numerics.Vectors" Version="4.4.0" /> |
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.4.0" /> |
|
<PackageReference Include="System.Buffers" Version="4.4.0" /> |
|
</ItemGroup> |
|
<ItemGroup> |
|
<Content Include="..\..\deps\cimgui\win-x64\cimgui.dll"> |
|
<PackagePath>runtimes/win-x64/native</PackagePath> |
|
<Pack>true</Pack> |
|
</Content> |
|
<Content Include="..\..\deps\cimgui\ubuntu-x64\cimgui.so"> |
|
<PackagePath>runtimes/ubuntu-x64/native</PackagePath> |
|
<Pack>true</Pack> |
|
</Content> |
|
<Content Include="..\..\deps\cimgui\osx-x64\cimgui.dylib"> |
|
<PackagePath>runtimes/osx-x64/native</PackagePath> |
|
<Pack>true</Pack> |
|
</Content> |
|
</ItemGroup> |
|
</Project>
|
|
|