Initial Commit

This commit is contained in:
2020-06-08 14:11:54 -05:00
commit 830e905300
24 changed files with 2129 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Threading;
using QSharp;
namespace qControlDemo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("qControlDemo Started");
QBrowser browser = new QBrowser();
Thread.Sleep(100000000);
}
}
}
+11
View File
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\QSharp\QSharp.csproj" />
</ItemGroup>
</Project>