Skip to content

Commit 7f83519

Browse files
committed
move ILReader to FEC
1 parent ef08166 commit 7f83519

File tree

6 files changed

+127
-301
lines changed

6 files changed

+127
-301
lines changed

FastExpressionCompiler.sln

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastExpressionCompiler.Test
3434
EndProject
3535
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastExpressionCompiler.TestsRunner.Net472", "test\FastExpressionCompiler.TestsRunner.Net472\FastExpressionCompiler.TestsRunner.Net472.csproj", "{6E6D7290-824A-485F-BE58-D0F00685E2D6}"
3636
EndProject
37-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastExpressionCompiler.ILDecoder", "src\FastExpressionCompiler.ILDecoder\FastExpressionCompiler.ILDecoder.csproj", "{4DA38307-D4B4-404C-A643-F665AAC7FDD4}"
38-
EndProject
3937
Global
4038
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4139
Debug|Any CPU = Debug|Any CPU
@@ -154,18 +152,6 @@ Global
154152
{6E6D7290-824A-485F-BE58-D0F00685E2D6}.Release|x64.Build.0 = Release|Any CPU
155153
{6E6D7290-824A-485F-BE58-D0F00685E2D6}.Release|x86.ActiveCfg = Release|Any CPU
156154
{6E6D7290-824A-485F-BE58-D0F00685E2D6}.Release|x86.Build.0 = Release|Any CPU
157-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
158-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|Any CPU.Build.0 = Debug|Any CPU
159-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|x64.ActiveCfg = Debug|Any CPU
160-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|x64.Build.0 = Debug|Any CPU
161-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|x86.ActiveCfg = Debug|Any CPU
162-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Debug|x86.Build.0 = Debug|Any CPU
163-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|Any CPU.ActiveCfg = Release|Any CPU
164-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|Any CPU.Build.0 = Release|Any CPU
165-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|x64.ActiveCfg = Release|Any CPU
166-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|x64.Build.0 = Release|Any CPU
167-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|x86.ActiveCfg = Release|Any CPU
168-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4}.Release|x86.Build.0 = Release|Any CPU
169155
EndGlobalSection
170156
GlobalSection(SolutionProperties) = preSolution
171157
HideSolutionNode = FALSE
@@ -180,7 +166,6 @@ Global
180166
{E5EF1A1B-D2A4-4FF5-999E-8021FDE2E004} = {AA457CA0-4D92-4922-9C5C-6F9575957AE7}
181167
{41FD55F9-E45E-482C-B7CE-0B412026F62C} = {AA457CA0-4D92-4922-9C5C-6F9575957AE7}
182168
{6E6D7290-824A-485F-BE58-D0F00685E2D6} = {AA457CA0-4D92-4922-9C5C-6F9575957AE7}
183-
{4DA38307-D4B4-404C-A643-F665AAC7FDD4} = {B1CBFC5C-9B4F-4C54-A61E-4422B8D0300B}
184169
EndGlobalSection
185170
GlobalSection(ExtensibilityGlobals) = postSolution
186171
SolutionGuid = {E0034036-4006-4AA3-8322-F3F461C3C444}

src/FastExpressionCompiler.ILDecoder/FastExpressionCompiler.ILDecoder.csproj

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

src/FastExpressionCompiler.LightExpression/FastExpressionCompiler.LightExpression.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,10 @@
8585
<ItemGroup>
8686
<Compile Include="..\FastExpressionCompiler\FastExpressionCompiler.cs"/>
8787
<Compile Include="..\FastExpressionCompiler\ImTools.cs"/>
88+
<Compile Include="..\FastExpressionCompiler\ILReader.cs"/>
8889
<Compile Include="..\FastExpressionCompiler\TestTools.cs"/>
8990
</ItemGroup>
9091

91-
<ItemGroup>
92-
<ProjectReference Include="..\FastExpressionCompiler.ILDecoder\FastExpressionCompiler.ILDecoder.csproj" />
93-
</ItemGroup>
94-
9592
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
9693
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0"/>
9794
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0"/>

src/FastExpressionCompiler/FastExpressionCompiler.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@
7979
<IsTrimmable>true</IsTrimmable>
8080
</PropertyGroup>
8181

82-
<ItemGroup>
83-
<ProjectReference Include="..\FastExpressionCompiler.ILDecoder\FastExpressionCompiler.ILDecoder.csproj" />
84-
</ItemGroup>
85-
8682
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
8783
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0"/>
8884
</ItemGroup>

0 commit comments

Comments
 (0)