Skip to content

Commit

Permalink
Update DotNetLib.tlb
Browse files Browse the repository at this point in the history
Renamed member MatchSingleton.Empty to MatchSingleton.EmptyMatch due to Rubberduck 'Parse Error' issue with the VBA reserved word  'Empty'.  It compiled fine, fix is to address the RD issue added rubberduck-vba/Rubberduck#6161
  • Loading branch information
MarkJohnstoneGitHub committed Oct 1, 2023
1 parent ce48916 commit 1faf08a
Show file tree
Hide file tree
Showing 29 changed files with 8 additions and 7 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified COMDotNetLib/.vs/DotNetLib/v17/.suo
Binary file not shown.
7 changes: 4 additions & 3 deletions COMDotNetLib/DotNetLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
<Compile Include="Extensions\IFormatProviderExtension.cs" />
<Compile Include="Extensions\IWrappedObject.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="System\Collections\IList.cs" />
<Compile Include="System\Collections\IListString.cs" />
<Compile Include="System\Collections\IReadOnlyCollection.cs" />
<Compile Include="System\Collections\Interfaces\IList.cs" />
<Compile Include="System\Collections\Interfaces\IListString.cs" />
<Compile Include="System\Collections\Interfaces\IReadOnlyCollection.cs" />
<Compile Include="System\Collections\List.cs" />
<Compile Include="System\Collections\ListString.cs" />
<Compile Include="System\Collections\ReadOnlyCollection.cs" />
Expand Down Expand Up @@ -197,6 +197,7 @@
</ItemGroup>
<ItemGroup>
<Folder Include="CoordinateSharp\Com Management\" />
<Folder Include="System\Collections\Singletons\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace DotNetLib.System.Text.RegularExpressions
public interface IMatchSingleton
{
//Properties
Match Empty
Match EmptyMatch
{
[Description("Gets the empty group. All failed matches return this empty match.")]
get;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class MatchSingleton : IMatchSingleton
public MatchSingleton() { }

// Properties
public Match Empty => Match.Empty;
public Match EmptyMatch => Match.Empty;

// Methods
public Match Synchronized(Match inner)
Expand Down
Binary file modified COMDotNetLib/bin/Debug/DotNetLib.dll
Binary file not shown.
Binary file modified COMDotNetLib/bin/Debug/DotNetLib.pdb
Binary file not shown.
Binary file modified COMDotNetLib/bin/Debug/DotNetLib.tlb
Binary file not shown.
Binary file modified COMDotNetLib/bin/Release/DotNetLib.dll
Binary file not shown.
Binary file modified COMDotNetLib/bin/Release/DotNetLib.pdb
Binary file not shown.
Binary file modified COMDotNetLib/bin/Release/DotNetLib.tlb
Binary file not shown.
Binary file modified COMDotNetLib/obj/Debug/DotNetLib.csproj.AssemblyReference.cache
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
90c4f415aea6c37e374a2348a441cf891aad9f69
00daeeba8553e89679fcde3055e40fdbe43f80e6
Binary file modified COMDotNetLib/obj/Debug/DotNetLib.dll
Binary file not shown.
Binary file modified COMDotNetLib/obj/Debug/DotNetLib.pdb
Binary file not shown.
Binary file modified COMDotNetLib/obj/DotNetLib.csproj.UnmanagedRegistration.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ef161a5b91280407e19dc37da6153fa181c6df76
f0019cf8fe50b7a8245366beca7cc145d1044be9
Binary file modified COMDotNetLib/obj/Release/DotNetLib.dll
Binary file not shown.
Binary file modified COMDotNetLib/obj/Release/DotNetLib.pdb
Binary file not shown.
Binary file modified VBA/MS-Access/VBADotNetLibrary.accdb
Binary file not shown.

0 comments on commit 1faf08a

Please sign in to comment.