fixing errantly-excluded source files

This commit is contained in:
Steve Bohlen
2015-11-22 14:22:58 -05:00
parent 646787b935
commit d4d8f156a9
3 changed files with 4 additions and 4 deletions

View File

@@ -130,10 +130,12 @@
<Compile Include="Collections\DictionarySet.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Collections\Generic\AbstractDictionary.cs" />
<Compile Include="Collections\Generic\DictionarySet.cs" />
<Compile Include="Collections\Generic\HashedSet.cs" />
<Compile Include="Collections\Generic\ImmutableSet.cs" />
<Compile Include="Collections\Generic\ISet.cs" />
<Compile Include="Collections\Generic\LinkedHashDictionary.cs" />
<Compile Include="Collections\Generic\OrderedSet.cs" />
<Compile Include="Collections\Generic\ReadOnlyDictionary.cs" />
<Compile Include="Collections\Generic\Set.cs" />

View File

@@ -18,13 +18,11 @@
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using Spring.Collections.Generic
using NUnit.Framework;
namespace Spring.Collections.Generic.Test
namespace Spring.Collections.Generic
{
/// <summary>
/// This class contains tests for LinkedHashDictionary

View File

@@ -127,7 +127,7 @@
<SubType>Code</SubType>
</Compile>
<Compile Include="Collections\CaseInsensitiveHashtableTests.cs" />
<Compile Include="Collections\Generic\ReadOnlyDictionaryTests.cs" />
<Compile Include="Collections\LinkedHashDictionaryTest.cs" />
<Compile Include="Collections\HashedSetTests.cs">
<SubType>Code</SubType>
</Compile>