Skip to content

Commit 6b2c655

Browse files
committed
Add a Directory.Build.props file to the repo, and fix XML docs.
1 parent d86dc08 commit 6b2c655

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Directory.Build.props

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="OutDir">
2+
<PropertyGroup>
3+
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
4+
<BinDir>$(RepositoryRootDirectory)bin</BinDir>
5+
<OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>
6+
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
7+
<ProjectDir>$(MSBuildThisFileDirectory)</ProjectDir>
8+
</PropertyGroup>
9+
</Project>

src/ImGui.NET/DrawList.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ public unsafe struct NativeDrawList
130130
public uint _VtxCurrentIdx;
131131

132132
/// <summary>
133-
/// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
133+
/// [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector operators too much)
134134
/// </summary>
135135
public IntPtr _VtxWritePtr;
136136
/// <summary>
137-
/// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much)
137+
/// [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector operators too much)
138138
/// </summary>
139139
public IntPtr _IdxWritePtr;
140140

0 commit comments

Comments
 (0)