mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
27 lines
1.0 KiB
XML
27 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Description>A .NET wrapper for the Dear ImGui library.</Description>
|
|
<AssemblyVersion>1.90.0.1</AssemblyVersion>
|
|
<Authors>Eric Mellino</Authors>
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DebugType>portable</DebugType>
|
|
<AssemblyName>ImGui.NET</AssemblyName>
|
|
<PackageId>ImGui.NET</PackageId>
|
|
<PackageTags>ImGui ImGui.NET Immediate Mode GUI</PackageTags>
|
|
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl>
|
|
<RootNamespace>ImGuiNET</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
<_Parameter1>ImPlot.NET</_Parameter1>
|
|
</AssemblyAttribute>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
<_Parameter1>ImNodes.NET</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Generated\" />
|
|
</ItemGroup>
|
|
</Project>
|