Initial Commit

This commit is contained in:
2019-03-04 21:05:49 +01:00
parent ce3fe28a5a
commit fa79ea9f05
94 changed files with 9140 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<Authors>Ilyx</Authors>
<Description>Broker of the PlantBox project</Description>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PlantBox.Shared\PlantBox.Shared.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,12 @@
using System;
namespace PlantBox.Broker
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}