Add a Directory.Build.props file to the repo, and fix XML docs.

internals
Eric Mellino 7 years ago
parent d86dc085ed
commit 6b2c655922
  1. 9
      Directory.Build.props
  2. 4
      src/ImGui.NET/DrawList.cs

@ -0,0 +1,9 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="OutDir">
<PropertyGroup>
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
<BinDir>$(RepositoryRootDirectory)bin</BinDir>
<OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
<ProjectDir>$(MSBuildThisFileDirectory)</ProjectDir>
</PropertyGroup>
</Project>

@ -130,11 +130,11 @@ namespace ImGuiNET
public uint _VtxCurrentIdx;
/// <summary>
/// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
/// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector operators too much)
/// </summary>
public IntPtr _VtxWritePtr;
/// <summary>
/// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
/// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector operators too much)
/// </summary>
public IntPtr _IdxWritePtr;

Loading…
Cancel
Save