Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions MAPIInspector/Source/BlockParserTests/BlockParserTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@
<Compile Include="StringsTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BlockParser\BlockParser.csproj">
<Project>{67F29406-30D1-4390-AE42-F08ACF9E32A7}</Project>
<Name>BlockParser</Name>
</ProjectReference>
<ProjectReference Include="..\MAPIInspector.csproj">
<Project>{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}</Project>
<Name>MAPIInspector</Name>
Expand Down
20 changes: 14 additions & 6 deletions MAPIInspector/Source/MAPIInspector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,20 @@
<Compile Include="SessionExtensions.cs" />
<Compile Include="SessionNavigator.cs" />
<Compile Include="Utilities.cs" />
<Compile Include="BlockParser\BinaryParser.cs" />
<Compile Include="BlockParser\Block.cs" />
<Compile Include="BlockParser\BlockAdders.cs" />
<Compile Include="BlockParser\BlockBytes.cs" />
<Compile Include="BlockParser\BlockCreators.cs" />
<Compile Include="BlockParser\BlockException.cs" />
<Compile Include="BlockParser\BlockJunk.cs" />
<Compile Include="BlockParser\BlockParsers.cs" />
<Compile Include="BlockParser\BlockString.cs" />
<Compile Include="BlockParser\BlockStringA.cs" />
<Compile Include="BlockParser\BlockStringW.cs" />
<Compile Include="BlockParser\BlockT.cs" />
<Compile Include="BlockParser\ScratchBlock.cs" />
<Compile Include="BlockParser\Strings.cs" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
Expand Down Expand Up @@ -783,12 +797,6 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="BlockParser\BlockParser.csproj">
<Project>{67f29406-30d1-4390-ae42-f08acf9e32a7}</Project>
<Name>BlockParser</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="res\Search.png" />
</ItemGroup>
Expand Down
6 changes: 0 additions & 6 deletions MAPIInspector/Source/MAPIInspector.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 17.8.34322.80
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MAPIInspector", "MAPIInspector.csproj", "{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlockParser", "BlockParser\BlockParser.csproj", "{67F29406-30D1-4390-AE42-F08ACF9E32A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BlockParserTests", "BlockParserTests\BlockParserTests.csproj", "{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}"
EndProject
Global
Expand All @@ -19,10 +17,6 @@ Global
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6AD8210-981D-42D9-B8FA-0970FD41DBE5}.Release|Any CPU.Build.0 = Release|Any CPU
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{67F29406-30D1-4390-AE42-F08ACF9E32A7}.Release|Any CPU.Build.0 = Release|Any CPU
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9DA1E185-CC83-4CD4-ABEA-9DA0E2AEE034}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
Loading