You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OMS.NET/README.md

31 lines
645 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# OMSS.NET
OMSS.NET为标准名称使用.NET 6开发语言使用C#。
对数据库结构进行重新设计,简化服务器指令操作
## 先决条件
### 确保.NET开发环境已安装
- [.NET SDK](https://dotnet.microsoft.com/download)
### 创建server.yaml
模板如下按情况修改user、pas、port
```yaml
#连接字符串和默认监听端口
ConnectionString: server=localhost;port=3306;user=user;password=pas
DataBaseName: map_test1
ListenPort: port
#匿名登录
AnonymousLogin: false
ServerConfigMaxUser: 20
```
## 快速开始
```bash
git clone https://xxx.git
cd OMS.NET
dotnet restore
dotnet build
dotnet run
```