chatRooms

This commit is contained in:
Paul Schneider 2018-01-02 16:35:03 +01:00
commit 871cf6b884
42 changed files with 15345 additions and 225 deletions

9
app/YaDaemon/Program.cs Normal file
View file

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

8
app/YaDaemon/YaDaemon.csproj Executable file
View file

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.0</TargetFramework>
</PropertyGroup>
</Project>

5
app/YaDaemon/global.json Normal file
View file

@ -0,0 +1,5 @@
{
"sdk": {
"version": "1.0.0-rc4-004771"
}
}