Show More
Commit Description:
Add missing component and message.
Commit Description:
Add missing component and message.
References:
File last commit:
Show/Diff file:
Action:
ImGui.NET/ImGui.NET.csproj
56 lines | 2.4 KiB | text/plain | TextLexer
56 lines | 2.4 KiB | text/plain | TextLexer
r30 | <Project Sdk="Microsoft.NET.Sdk"> | |||
r16 | <PropertyGroup> | |||
<Description>A .NET wrapper for the Dear ImGui library.</Description> | ||||
r505 | <AssemblyVersion>1.86.0</AssemblyVersion> | |||
r16 | <Authors>Eric Mellino</Authors> | |||
r30 | <TargetFramework>netstandard2.0</TargetFramework> | |||
r16 | <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> | ||||
r517 | <!-- <DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImGui.NET.xml</DocumentationFile> --> | |||
r16 | <RootNamespace>ImGuiNET</RootNamespace> | |||
r21 | </PropertyGroup> | |||
r16 | <ItemGroup> | |||
r505 | <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> | ||||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||||
<_Parameter1>ImPlot.NET</_Parameter1> | ||||
</AssemblyAttribute> | ||||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | ||||
<_Parameter1>ImNodes.NET</_Parameter1> | ||||
</AssemblyAttribute> | ||||
r16 | </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> | ||||
</Project> | ||||