Skip to content

Commit 9cae3a3

Browse files
committed
fixed virtual override, removed non required references, removed Any CPU configuration
1 parent 99be605 commit 9cae3a3

17 files changed

+51
-53
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
################################################################################
2+
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
3+
################################################################################
4+
5+
.suo
6+
/src/VisualCoverage.Console/obj
7+
/src/VisualCoverage.Console/bin
8+
/src/VisualCoverage.Core/obj
9+
/src/VisualCoverage.Core/bin
-156 KB
Binary file not shown.
-846 KB
Binary file not shown.

src/VisualCoverage.Console/CmdDriver.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ namespace VisualCoverage.Console
3232
{
3333
using System;
3434
using System.Collections;
35-
using System.Globalization;
3635
using VisualCoverage.Core;
3736
using VisualCoverage.Core.Util;
3837
using VisualCoverage.Core.Elements;

src/VisualCoverage.Console/VisualCoverage.Console.csproj

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,7 @@
3838
</PropertyGroup>
3939
<ItemGroup>
4040
<Reference Include="System" />
41-
<Reference Include="System.Core" />
42-
<Reference Include="System.Xml.Linq" />
43-
<Reference Include="System.Data.DataSetExtensions" />
4441
<Reference Include="Microsoft.CSharp" />
45-
<Reference Include="System.Data" />
46-
<Reference Include="System.Xml" />
4742
</ItemGroup>
4843
<ItemGroup>
4944
<Compile Include="CmdDriver.cs" />
@@ -52,15 +47,15 @@
5247
<Compile Include="Properties\AssemblyInfo.cs" />
5348
<Compile Include="..\CommonAssemblyInfo.cs" />
5449
</ItemGroup>
50+
<ItemGroup>
51+
<None Include="App.config" />
52+
</ItemGroup>
5553
<ItemGroup>
5654
<ProjectReference Include="..\VisualCoverage.Core\VisualCoverage.Core.csproj">
57-
<Project>{91ACD43C-267E-46E9-9E87-52C9F0151AA4}</Project>
55+
<Project>{91acd43c-267e-46e9-9e87-52c9f0151aa4}</Project>
5856
<Name>VisualCoverage.Core</Name>
5957
</ProjectReference>
6058
</ItemGroup>
61-
<ItemGroup>
62-
<None Include="App.config" />
63-
</ItemGroup>
6459
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6560
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6661
Other similar extension points exist, see Microsoft.Common.targets.

src/VisualCoverage.Core/Elements/FileElement.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ namespace VisualCoverage.Core.Elements
3030
{
3131
using System;
3232
using System.Collections.Generic;
33-
using System.IO;
3433
using VisualCoverage.Core.Metrics;
3534

3635
public class FileElement

src/VisualCoverage.Core/Elements/LineElement.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
namespace VisualCoverage.Core.Elements
3030
{
3131
using System;
32-
using VisualCoverage.Core.Metrics;
3332

3433
public class LineElement
3534
{

src/VisualCoverage.Core/Elements/PackageElement.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ namespace VisualCoverage.Core.Elements
3030
{
3131
using System;
3232
using System.Collections.Generic;
33-
using System.IO;
3433
using VisualCoverage.Core.Metrics;
3534

3635
public class PackageElement

src/VisualCoverage.Core/Elements/ProjectElement.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ namespace VisualCoverage.Core.Elements
3030
{
3131
using System;
3232
using System.Collections.Generic;
33-
using System.IO;
3433
using VisualCoverage.Core.Metrics;
3534

3635
public class ProjectElement

src/VisualCoverage.Core/Metrics/BaseMetrics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void Add ( BaseMetrics bm )
6464
}
6565
}
6666

67-
public String ToXml ()
67+
public virtual String ToXml ()
6868
{
6969
StringBuilder buffer = new StringBuilder();
7070
buffer.Append("<metrics ");

0 commit comments

Comments
 (0)