Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 69f8639

Browse files
committed
Updating namespace to follow APIM team recommendation
1 parent 5aafe52 commit 69f8639

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

src/apimtemplate.test/CmdLine/Create.cs renamed to src/apimtemplate.test/CmdLine/CreateTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
using System;
22
using Xunit;
3-
using APIManagement.Template;
43
using McMaster.Extensions.CommandLineUtils;
54

6-
namespace apimtemplate.test
5+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
76
{
8-
public class Create
7+
public class CreateTests
98
{
109

1110
[Fact]

src/apimtemplate.test/CmdLine/Extract.cs renamed to src/apimtemplate.test/CmdLine/ExtractTests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using System;
22
using Xunit;
3-
using APIManagement.Template;
43
using McMaster.Extensions.CommandLineUtils;
54

65

7-
namespace apimtemplate.test
6+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
87
{
9-
public class Extract
8+
public class ExtractTests
109
{
1110
[Fact]
1211
public void ShouldFailWithUnknownCommand()

src/apimtemplate.test/apimtemplate.test.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
15-
<PackageReference Include="moq" Version="4.10.1" />
1615
<PackageReference Include="xunit" Version="2.4.0" />
1716
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
1817
</ItemGroup>

src/apimtemplate/Commands/Create.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using McMaster.Extensions.CommandLineUtils.HelpText;
44
using Colors.Net;
55

6-
namespace APIManagement.Template
6+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
77
{
88
public class CreateCommand : CommandLineApplication
99
{

src/apimtemplate/Commands/Extract.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using McMaster.Extensions.CommandLineUtils.HelpText;
44
using Colors.Net;
55

6-
namespace APIManagement.Template
6+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
77
{
88
public class ExtractCommand : CommandLineApplication
99
{

src/apimtemplate/Common/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace APIManagement.Template
3+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
44
{
55
internal static class Constants
66
{

src/apimtemplate/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Colors.Net;
44
using McMaster.Extensions.CommandLineUtils;
55

6-
namespace APIManagement.Template
6+
namespace Microsoft.Azure.Management.ApiManagement.ArmTemplates
77
{
88
public class AppArgs
99
{

0 commit comments

Comments
 (0)