Skip to content

Commit 15539c1

Browse files
restructure as one dll (#208)
* restructure as one dll * ditch extra project
1 parent 4a671a8 commit 15539c1

File tree

4 files changed

+14
-82
lines changed

4 files changed

+14
-82
lines changed

MAPIInspector/Source/BlockParser/BlockParser.csproj

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

MAPIInspector/Source/BlockParserTests/BlockParserTests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@
6262
<Compile Include="StringsTests.cs" />
6363
</ItemGroup>
6464
<ItemGroup>
65-
<ProjectReference Include="..\BlockParser\BlockParser.csproj">
66-
<Project>{67F29406-30D1-4390-AE42-F08ACF9E32A7}</Project>
67-
<Name>BlockParser</Name>
68-
</ProjectReference>
6965
<ProjectReference Include="..\MAPIInspector.csproj">
7066
<Project>{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}</Project>
7167
<Name>MAPIInspector</Name>

MAPIInspector/Source/MAPIInspector.csproj

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,20 @@
755755
<Compile Include="SessionExtensions.cs" />
756756
<Compile Include="SessionNavigator.cs" />
757757
<Compile Include="Utilities.cs" />
758+
<Compile Include="BlockParser\BinaryParser.cs" />
759+
<Compile Include="BlockParser\Block.cs" />
760+
<Compile Include="BlockParser\BlockAdders.cs" />
761+
<Compile Include="BlockParser\BlockBytes.cs" />
762+
<Compile Include="BlockParser\BlockCreators.cs" />
763+
<Compile Include="BlockParser\BlockException.cs" />
764+
<Compile Include="BlockParser\BlockJunk.cs" />
765+
<Compile Include="BlockParser\BlockParsers.cs" />
766+
<Compile Include="BlockParser\BlockString.cs" />
767+
<Compile Include="BlockParser\BlockStringA.cs" />
768+
<Compile Include="BlockParser\BlockStringW.cs" />
769+
<Compile Include="BlockParser\BlockT.cs" />
770+
<Compile Include="BlockParser\ScratchBlock.cs" />
771+
<Compile Include="BlockParser\Strings.cs" />
758772
</ItemGroup>
759773
<ItemGroup>
760774
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
@@ -783,12 +797,6 @@
783797
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
784798
</EmbeddedResource>
785799
</ItemGroup>
786-
<ItemGroup>
787-
<ProjectReference Include="BlockParser\BlockParser.csproj">
788-
<Project>{67f29406-30d1-4390-ae42-f08acf9e32a7}</Project>
789-
<Name>BlockParser</Name>
790-
</ProjectReference>
791-
</ItemGroup>
792800
<ItemGroup>
793801
<None Include="res\Search.png" />
794802
</ItemGroup>

MAPIInspector/Source/MAPIInspector.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 17.8.34322.80
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAPIInspector", "MAPIInspector.csproj", "{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlockParser", "BlockParser\BlockParser.csproj", "{67F29406-30D1-4390-AE42-F08ACF9E32A7}"
9-
EndProject
108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlockParserTests", "BlockParserTests\BlockParserTests.csproj", "{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}"
119
EndProject
1210
Global
@@ -19,10 +17,6 @@ Global
1917
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
2018
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
2119
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Release|Any CPU.Build.0 = Release|Any CPU
22-
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23-
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
24-
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
25-
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Release|Any CPU.Build.0 = Release|Any CPU
2620
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2721
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Debug|Any CPU.Build.0 = Debug|Any CPU
2822
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Release|Any CPU.ActiveCfg = Release|Any CPU

0 commit comments

Comments
 (0)