forked from MonkSoul/Furion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
41 lines (25 loc) · 1.28 KB
/
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[中](https://gitee.com/dotnetchina/Furion) | **En**
# Furion
An application framework that you can integrate into any .NET/C# application.
## Installation
```powershell
dotnet add package Furion
```
## Examples
We have several examples [on the website](https://furion.net). Here is the first one to get you started:
```cs
Serve.Run();
[DynamicApiController]
public class HelloService
{
public string Say() => "Hello, Furion";
}
```
Open browser access `http://localhost:5000`.
## Documentation
You can find the [Furion](https://gitee.com/dotnetchina/Furion) documentation [on the website](https://furion.net).
## Contributing
The main purpose of this repository is to continue evolving [Furion](https://gitee.com/dotnetchina/Furion) core, making it faster and easier to use. Development of [Furion](https://gitee.com/dotnetchina/Furion) happens in the open on [Gitee](https://gitee.com/dotnetchina/Furion), and we are grateful to the community for contributing bugfixes and improvements.
Read [contribution documents](https://furion.net/docs/contribute) to learn how you can take part in improving [Furion](https://gitee.com/dotnetchina/Furion).
## License
[Furion](https://gitee.com/dotnetchina/Furion) uses the [MIT](https://gitee.com/dotnetchina/Furion/blob/v4/LICENSE) open source license.