Show More
Commit Description:
Add issue.
Commit Description:
Add issue.
References:
File last commit:
Show/Diff file:
Action:
ImPlot.NET/ImPlot.NET.Core.csproj
32 lines | 1.4 KiB | text/plain | TextLexer
32 lines | 1.4 KiB | text/plain | TextLexer
r505 | <Project Sdk="Microsoft.NET.Sdk"> | |||
<PropertyGroup> | ||||
<Description>A .NET wrapper for the ImPlot library.</Description> | ||||
<AssemblyVersion>0.8.0</AssemblyVersion> | ||||
<Authors>Eric Mellino</Authors> | ||||
<TargetFramework>netstandard2.0</TargetFramework> | ||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
<DebugType>portable</DebugType> | ||||
<AssemblyName>ImPlot.NET</AssemblyName> | ||||
<PackageId>ImPlot.NET</PackageId> | ||||
<PackagePrereleaseIdentifier></PackagePrereleaseIdentifier> | ||||
<PackageVersion>$(AssemblyVersion)$(PackagePrereleaseIdentifier)</PackageVersion> | ||||
<PackageTags>ImPlot ImGui ImGui.NET Immediate Mode GUI</PackageTags> | ||||
<PackageProjectUrl>https://github.com/mellinoe/imgui.net</PackageProjectUrl> | ||||
<DocumentationFile Condition="'$(Configuration)' == 'Release'">$(OutputPath)\ImPlot.NET.xml</DocumentationFile> | ||||
<RootNamespace>ImPlotNET</RootNamespace> | ||||
</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> | ||||
<ProjectReference Include="..\ImGui.NET\ImGui.NET.csproj" /> | ||||
</ItemGroup> | ||||
<ItemGroup> | ||||
<Folder Include="build\net40" /> | ||||
</ItemGroup> | ||||
<ItemGroup> | ||||
<None Remove="build\net40\ImPlot.NET.targets" /> | ||||
</ItemGroup> | ||||
</Project> | ||||