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.Text;
namespace Shamir
namespace Shamir.Console
{
public class CdnOperations : ICommandSet
{

View file

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

View file

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

View file

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