diff --git a/Directory.Build.props b/Directory.Build.props
new file mode 100644
index 0000000..cc50eb2
--- /dev/null
+++ b/Directory.Build.props
@@ -0,0 +1,9 @@
+
+
+ $(MSBuildThisFileDirectory)
+ $(RepositoryRootDirectory)bin
+ $([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)
+ $([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\
+ $(MSBuildThisFileDirectory)
+
+
diff --git a/src/ImGui.NET/DrawList.cs b/src/ImGui.NET/DrawList.cs
index 920821a..1af80b0 100644
--- a/src/ImGui.NET/DrawList.cs
+++ b/src/ImGui.NET/DrawList.cs
@@ -130,11 +130,11 @@ namespace ImGuiNET
public uint _VtxCurrentIdx;
///
- /// [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)
///
public IntPtr _VtxWritePtr;
///
- /// [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)
///
public IntPtr _IdxWritePtr;