1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-26 13:13:37 +00:00

stub out projects for the solution

This commit is contained in:
Kyle Spearrin
2017-05-11 21:50:13 -04:00
parent e5f3b30edd
commit 3de0755fb3
25 changed files with 2067 additions and 0 deletions

19
src/App/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace App
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}