namespacing

This commit is contained in:
Yaakov 2021-09-25 22:19:16 +10:00
parent 2fd9a65f37
commit 7d656c7dd8
4 changed files with 4 additions and 3 deletions

View file

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using CommandLine; using CommandLine;
using CommandLine.Text; using CommandLine.Text;
namespace Shamir namespace Shamir.Console
{ {
public class CdnOperations : ICommandSet public class CdnOperations : ICommandSet
{ {

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<RootNamespace>Shamir</RootNamespace> <RootNamespace>Shamir.Console</RootNamespace>
<OutputPath>..\..\bin</OutputPath> <OutputPath>..\..\bin</OutputPath>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>

View file

@ -1,6 +1,6 @@
using NUnit.Framework; using NUnit.Framework;
namespace console.tests namespace Shamir.Console.Tests
{ {
public class Tests public class Tests
{ {

View file

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<RootNamespace>Shamir.Console.Tests
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>