3 Star 11 Fork 7

积雨云 / LicenseGenerator

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Program.cs 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
CosineG 提交于 2021-11-07 16:31 . 添加项目文件。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using LicenseGenerator.View;
namespace LicenseGenerator
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
new ClientForm().Show();
Application.Run(new GeneratorForm());
}
}
}
C#
1
https://gitee.com/cosineg/license-generator.git
git@gitee.com:cosineg/license-generator.git
cosineg
license-generator
LicenseGenerator
main

搜索帮助