Skip to content

Commit 614f2a9

Browse files
Merge pull request #59 from kendaleiv/move-range-into-filter
Move Range into Filter
2 parents 76c617e + 393917c commit 614f2a9

File tree

19 files changed

+24
-300
lines changed

19 files changed

+24
-300
lines changed

Filter.sln

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28010.2036
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{D26BB0C9-295E-4F30-90FA-532CAFA73A7D}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Range", "src\Range\Range.csproj", "{0E804077-79B6-4E0F-A4BB-AD5F6EC194B3}"
9-
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Range.Tests", "tests\Range.Tests\Range.Tests.csproj", "{3A86B628-26DC-4E27-B688-7ED3DCA21EEB}"
11-
EndProject
128
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Filter", "src\Filter\Filter.csproj", "{78EA264D-1EAB-4D55-BAD1-71F2D3DE1A2A}"
139
EndProject
1410
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Filter.Tests", "tests\Filter.Tests\Filter.Tests.csproj", "{A5283D85-C24D-467A-8B29-315320E5F80F}"
@@ -29,14 +25,6 @@ Global
2925
Release|Any CPU = Release|Any CPU
3026
EndGlobalSection
3127
GlobalSection(ProjectConfigurationPlatforms) = postSolution
32-
{0E804077-79B6-4E0F-A4BB-AD5F6EC194B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33-
{0E804077-79B6-4E0F-A4BB-AD5F6EC194B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
34-
{0E804077-79B6-4E0F-A4BB-AD5F6EC194B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
35-
{0E804077-79B6-4E0F-A4BB-AD5F6EC194B3}.Release|Any CPU.Build.0 = Release|Any CPU
36-
{3A86B628-26DC-4E27-B688-7ED3DCA21EEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37-
{3A86B628-26DC-4E27-B688-7ED3DCA21EEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
38-
{3A86B628-26DC-4E27-B688-7ED3DCA21EEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
39-
{3A86B628-26DC-4E27-B688-7ED3DCA21EEB}.Release|Any CPU.Build.0 = Release|Any CPU
4028
{78EA264D-1EAB-4D55-BAD1-71F2D3DE1A2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4129
{78EA264D-1EAB-4D55-BAD1-71F2D3DE1A2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
4230
{78EA264D-1EAB-4D55-BAD1-71F2D3DE1A2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -66,9 +54,11 @@ Global
6654
HideSolutionNode = FALSE
6755
EndGlobalSection
6856
GlobalSection(NestedProjects) = preSolution
69-
{3A86B628-26DC-4E27-B688-7ED3DCA21EEB} = {D26BB0C9-295E-4F30-90FA-532CAFA73A7D}
7057
{A5283D85-C24D-467A-8B29-315320E5F80F} = {D26BB0C9-295E-4F30-90FA-532CAFA73A7D}
7158
{1EC8770C-D078-45CA-B9CA-44FE3C66136D} = {86DCF3A9-55B1-48EB-B5E7-EF257718DA7D}
7259
{2B4310E6-CD36-4BF7-9519-6CB6A7C8F2EA} = {D26BB0C9-295E-4F30-90FA-532CAFA73A7D}
7360
EndGlobalSection
61+
GlobalSection(ExtensibilityGlobals) = postSolution
62+
SolutionGuid = {000D7362-598F-40B3-8D68-2436EA8FD8AC}
63+
EndGlobalSection
7464
EndGlobal

samples/Range.Web.Http/Range.Web.Http.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
<IISExpressWindowsAuthentication />
2222
<IISExpressUseClassicPipelineMode />
2323
<LangVersion>latest</LangVersion>
24+
<Use64BitIISExpress />
25+
<UseGlobalApplicationHostFile />
2426
</PropertyGroup>
2527
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2628
<DebugSymbols>true</DebugSymbols>
@@ -104,10 +106,6 @@
104106
<Project>{494eb0e9-22ad-4840-9d7c-3c8d4ab36291}</Project>
105107
<Name>Range.Web.Http</Name>
106108
</ProjectReference>
107-
<ProjectReference Include="..\..\src\Range\Range.csproj">
108-
<Project>{0e804077-79b6-4e0f-a4bb-ad5f6ec194b3}</Project>
109-
<Name>Range</Name>
110-
</ProjectReference>
111109
</ItemGroup>
112110
<ItemGroup>
113111
<Content Include="packages.config" />

src/Filter.Nest/Filter.Nest.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
<None Include="packages.config" />
6767
</ItemGroup>
6868
<ItemGroup>
69-
<ProjectReference Include="..\Range\Range.csproj">
70-
<Project>{0e804077-79b6-4e0f-a4bb-ad5f6ec194b3}</Project>
71-
<Name>Range</Name>
69+
<ProjectReference Include="..\Filter\Filter.csproj">
70+
<Project>{78EA264D-1EAB-4D55-BAD1-71F2D3DE1A2A}</Project>
71+
<Name>Filter</Name>
7272
</ProjectReference>
7373
</ItemGroup>
7474
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

src/Filter/Filter.csproj

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,11 @@
4343
<Compile Include="Filter.cs" />
4444
<Compile Include="Generic\IEnumerable`1Extensions.cs" />
4545
<Compile Include="Generic\IQueryable`1Extensions.cs" />
46+
<Compile Include="Generic\IRange`1.cs" />
47+
<Compile Include="Generic\Range`1.cs" />
4648
<Compile Include="Properties\AssemblyInfo.cs" />
47-
</ItemGroup>
48-
<ItemGroup>
49-
<ProjectReference Include="..\Range\Range.csproj">
50-
<Project>{0e804077-79b6-4e0f-a4bb-ad5f6ec194b3}</Project>
51-
<Name>Range</Name>
52-
</ProjectReference>
49+
<Compile Include="Range.cs" />
50+
<Compile Include="SmartConverter.cs" />
5351
</ItemGroup>
5452
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5553
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
File renamed without changes.

src/Range.Web.Http/Range.Web.Http.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@
5858
<Compile Include="Properties\AssemblyInfo.cs" />
5959
</ItemGroup>
6060
<ItemGroup>
61-
<ProjectReference Include="..\Range\Range.csproj">
62-
<Project>{0e804077-79b6-4e0f-a4bb-ad5f6ec194b3}</Project>
63-
<Name>Range</Name>
64-
</ProjectReference>
61+
<None Include="packages.config" />
6562
</ItemGroup>
6663
<ItemGroup>
67-
<None Include="packages.config" />
64+
<ProjectReference Include="..\Filter\Filter.csproj">
65+
<Project>{78ea264d-1eab-4d55-bad1-71f2d3de1a2a}</Project>
66+
<Name>Filter</Name>
67+
</ProjectReference>
6868
</ItemGroup>
6969
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7070
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

src/Range/IEnumerableExtensions.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)