Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ cd netcorepal-cloud-template
`dotnet new install` 支持直接从包含模板的源码目录安装,无需构建和打包:

```bash
# 建议先清理旧文件以避免冲突
git clean -fdX

# 在项目根目录直接安装(推荐)
dotnet new install . --force
```
Expand Down Expand Up @@ -425,7 +428,7 @@ netcorepal-codeanalysis generate --output architecture.html
+ [代码流分析文档](https://netcorepal.github.io/netcorepal-cloud-framework/zh/code-analysis/code-flow-analysis/)
+ [代码分析工具文档](https://netcorepal.github.io/netcorepal-cloud-framework/zh/code-analysis/code-analysis-tools/)

## 支持特性(WIP)
## 支持特性

+ 文件存储
+ [x] 本地文件
Expand All @@ -437,17 +440,17 @@ netcorepal-codeanalysis generate --output architecture.html
+ [ ] Apollo
+ [ ] AgileConfig
+ 数据库
+ [x] InMemory
+ [x] SqlServer
+ [x] MySql
+ [x] PostgreSql
+ [x] PostgreSQL
+ [x] Sqlite
+ [x] GaussDB
+ [x] DMDB
+ [x] MongoDB
+ 消息队列
+ [x] RabbitMQ
+ [x] Kafka
+ [x] NATS
+ [x] RedisStreams
+ [x] AzureServiceBus
+ [x] AmazonSQS
Expand All @@ -470,4 +473,6 @@ netcorepal-codeanalysis generate --output architecture.html
+ 缓存中间件
+ [x] Redis
+ 熔断限流
+ [ ] Polly
+ [x] Polly

备注:未打勾表示该模板未集成该特性,但可手动添加。
2 changes: 1 addition & 1 deletion eng/versions.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<VersionPrefix>3.1.4</VersionPrefix>
<VersionPrefix>3.2.0</VersionPrefix>
</PropertyGroup>
</Project>
6 changes: 3 additions & 3 deletions template/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

<PropertyGroup>
<!-- Third-party package versions -->
<NetCorePalVersion>3.1.0</NetCorePalVersion>
<NetCorePalVersion>3.2.1</NetCorePalVersion>
<FastEndpointsVersion>7.1.1</FastEndpointsVersion>
<TestcontainersVersion>4.9.0</TestcontainersVersion>
<AspireVersion>13.1.0</AspireVersion>
<OpenTelemetryVersion>1.14.0</OpenTelemetryVersion>
<NetCorePalTestcontainerVersion>1.0.1</NetCorePalTestcontainerVersion>
<NetCorePalAspireVersion>1.1.0</NetCorePalAspireVersion>
<NetCorePalTestcontainerVersion>1.0.5</NetCorePalTestcontainerVersion>
<NetCorePalAspireVersion>1.1.2</NetCorePalAspireVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading