添加项目文件。

This commit is contained in:
xief
2022-01-08 15:35:27 +08:00
parent 7f963b5eca
commit 4e75665abc
9 changed files with 309 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Chenfeng.MES.MysqlArchiver
{
internal class DbContext
{
}
}