⚠️feat: 正式删除mvc项目

This commit is contained in:
yubaolee
2025-06-07 23:58:32 +08:00
parent a6bd2c946b
commit 3ca9c14328
5 changed files with 1 additions and 17 deletions

View File

@@ -11,8 +11,6 @@ OpenAuth.Net是基于最新版.Net的开源权限工作流快速开发框架。
开源Vue2演示[http://demo.openauth.net.cn:1803/](http://demo.openauth.net.cn:1803/)
开源MVC演示[http://demo.openauth.net.cn:1802/](http://demo.openauth.net.cn:1802/) 即将弃用⚠️
如果你想了解企业版的内容,请访问:[http://doc.openauth.net.cn/pro](http://doc.openauth.net.cn/pro/)
::: tip 提示

View File

@@ -14,7 +14,7 @@ permalink: /core/cache/
* 基于`Enyim Memcache`实现的`EnyimMemcachedContext`
可以根据自己需要扩展其他缓存。OpenAuth.Mvc和OpenAuth.Api默认使用的是CacheContext。可以在`AutofacExt.cs`跟换自己喜欢的缓存:
可以根据自己需要扩展其他缓存。OpenAuth.Api默认使用的是CacheContext。可以在`AutofacExt.cs`跟换自己喜欢的缓存:
```csharp
public static void InitAutofac(ContainerBuilder builder)
{

View File

@@ -11,15 +11,6 @@ permalink: /core/specialist/
- OpenAuth.WebApi
- Controllers
- StocksController.cs // WebApi控制器
- OpenAuth.Mvc
- Controllers
- StocksController.cs // MVC控制器
- Views
- Stocks
- index.cshtml // MVC视图
- wwwroot
- userJs
- stock.js // 业务脚本
- OpenAuth.App
- StockApp.cs // 应用层
- Request

View File

@@ -10,8 +10,6 @@ permalink: /core/unittest/
* OpenAuth.App: 测试所有业务逻辑测试级别为各种xxxApp/xxxService等。可以模拟用户登录和前端Cookie提交的信息。在该项目的`TestBase.cs`中配置连接字符串;
* OpenAuth.Mvc: 测试MVC的访问可以模拟用户登录和前端Cookie提交的信息。使用OpenAuth.App中的测试连接字符串
* OpenAuth.WebApi: 测试接口WebApi访问可以模拟用户登录和前端Cookie提交的信息。使用OpenAuth.App中的测试连接字符串
所有的测试代码均在每个项目的`Test`文件夹中编写。比如`OpenAuth.App\Test\TestAccessObjs.cs`