Create new Windows Form Demo app.

This commit is contained in:
Joel Wetzell
2020-06-13 17:27:32 -05:00
parent 4ecc692fec
commit 1670326789
7 changed files with 398 additions and 28 deletions
+18
View File
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\QSharp\QSharp.csproj" />
</ItemGroup>
</Project>