Skip to content

Commit

Permalink
rename Conversion to MSBuild.Conversion.Project
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarolf committed Oct 4, 2019
1 parent 56b7656 commit 3b6c210
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/MSBuild.Conversion.Project/Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Xml;
using System.Xml.Linq;

namespace Conversion
namespace MSBuild.Conversion.Project
{
public class Converter
{
Expand Down
2 changes: 1 addition & 1 deletion src/MSBuild.Conversion.Project/Differ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.IO;
using System.Linq;

namespace Conversion
namespace MSBuild.Conversion.Project
{
public class Differ
{
Expand Down
2 changes: 1 addition & 1 deletion src/MSBuild.Conversion.Project/ItemsDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Immutable;
using System.Linq;

namespace Conversion
namespace MSBuild.Conversion.Project
{
public struct ItemsDiff
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using System.IO;
using System.Linq;

namespace Conversion
namespace MSBuild.Conversion.Project
{
public static class ProjectRootElementExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/MSBuild.Conversion.Project/PropertiesDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Immutable;
using System.Linq;

namespace Conversion
namespace MSBuild.Conversion.Project
{
public struct PropertiesDiff
{
Expand Down
2 changes: 1 addition & 1 deletion src/try-convert/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
using System.CommandLine;
using Conversion;
using MSBuild.Conversion.Project;
using MSBuild.Abstractions;
using System.CommandLine.Builder;
using System.CommandLine.Invocation;
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/Smoke.Tests/BasicConversions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Conversion;
using MSBuild.Conversion.Project;
using Microsoft.Build.Construction;
using MSBuild.Abstractions;
using System;
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/ProjectConversion.Tests/ItemsDiffTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using Conversion;
using MSBuild.Conversion.Project;
using MSBuild.Abstractions.Tests.Mocks;
using Xunit;

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/ProjectConversion.Tests/PropertiesDiffTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Immutable;
using System.Linq;
using Conversion;
using MSBuild.Conversion.Project;
using MSBuild.Abstractions.Tests.Mocks;
using Xunit;

Expand Down

0 comments on commit 3b6c210

Please sign in to comment.