增加快速拥有
This commit is contained in:
parent
3317075e33
commit
c11b83c8f8
25
README.md
25
README.md
|
@ -17,6 +17,31 @@ XCode教程:<https://newlifex.com/xcode>
|
|||
核心库教程:<https://newlifex.com/core>
|
||||
|
||||
|
||||
## 快速拥有
|
||||
|
||||
使用NewLife组件的最简便方式是从Nuget引用,例如在项目Nuget管理中搜索`NewLife.Cube.Core` 并引入。
|
||||
|
||||
NewLife组件由社区共创20多年,使用MIT开源协议,**任何人可任意修改并再次发行**(无需声明来源)!许多企业基于此构建内部开发框架时,甚至可通过批量替换源码中所有`NewLife`字符串为贵公司名实现私有化定制。
|
||||
|
||||
团队始终秉承开放态度,不仅支持VisualStudio(最新正式版)打开解决方案编译,也兼容`dotnet build`命令行编译,项目文件摒弃复杂功能以追求简单易用,真正做到开箱即用。
|
||||
|
||||
我们公开强命名证书`newlife.snk`以支持独自编译替换程序集。
|
||||
|
||||
|
||||
|
||||
命令行中运行以下命令快速体验NewLife组件:
|
||||
|
||||
```
|
||||
dotnet new install NewLife.Templates
|
||||
dotnet new cube --name CubeWeb
|
||||
dotnet new xcode --name Zero.Data
|
||||
cd CubeWeb
|
||||
dotnet build
|
||||
start http://localhost:6080
|
||||
dotnet run
|
||||
```
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in New Issue