Skip to content

Commit

Permalink
Changed assembly to *TestAdapter so dotnet test can find it
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Benjamin <[email protected]>
  • Loading branch information
annymsMthd committed Jan 21, 2018
1 parent bb331f4 commit 6361089
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/JunitTestLogger/JUnitTestLogger.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestLogger</AssemblyName>
<RootNamespace>Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestLogger</RootNamespace>
<AssemblyName>Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestAdapter</AssemblyName>
<RootNamespace>Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestAdapter</RootNamespace>
<PackageId>JUnitTestLogger</PackageId>
<Authors>Syncromatics Engineering</Authors>
<Company>Syncromatics</Company>
Expand Down
6 changes: 2 additions & 4 deletions src/JunitTestLogger/JUnitXmlTestLogger.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@

using System;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml.Linq;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Client;
using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging;

namespace Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestLogger
namespace Microsoft.VisualStudio.TestPlatform.Extension.JUnit.Xml.TestAdapter
{
[FriendlyName(FriendlyName)]
[ExtensionUri(ExtensionUri)]
Expand Down

0 comments on commit 6361089

Please sign in to comment.