basic restreucturing

This commit is contained in:
Yaakov 2021-09-30 19:44:08 +10:00
parent 395af281d1
commit d2281dc1ca
10 changed files with 136 additions and 1 deletions

View file

@ -0,0 +1,8 @@
using System;
namespace abstractions
{
public class Class1
{
}
}

View file

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Shamir.Abstractions</RootNamespace>
<AssemblyName>Shamir.Abstractions</AssemblyName>
</PropertyGroup>
</Project>

View file

@ -0,0 +1,8 @@
using System;
namespace azure
{
public class Class1
{
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Shamir.Commands.Azure</RootNamespace>
<AssemblyName>Shamir.Commands.Azure</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\abstractions\abstractions.csproj" />
</ItemGroup>
</Project>

View file

@ -0,0 +1,8 @@
using System;
namespace radio
{
public class Class1
{
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Shamir.Commands.Radio</RootNamespace>
<AssemblyName>Shamir.Commands.Radio</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\abstractions\abstractions.csproj" />
</ItemGroup>
</Project>

View file

@ -0,0 +1,8 @@
using System;
namespace steam
{
public class Class1
{
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Shamir.Commands.Steam</RootNamespace>
<AssemblyName>Shamir.Commands.Steam</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\abstractions\abstractions.csproj" />
</ItemGroup>
</Project>

View file

@ -15,4 +15,11 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\abstractions\abstractions.csproj" />
<ProjectReference Include="..\commands\azure\azure.csproj" />
<ProjectReference Include="..\commands\radio\radio.csproj" />
<ProjectReference Include="..\commands\steam\steam.csproj" />
</ItemGroup>
</Project>