mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-11 02:13:46 +00:00
Initial Commit
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user