首页 > 编程语言 >.NET Aspire Preview 4 发布!

.NET Aspire Preview 4 发布!

时间:2024-03-14 17:13:29浏览次数:21  
标签:resource Azure see Aspire New NET Preview

.NET Aspire Preview 4 is now available! Here's a summary of what's new in this preview release:
.NET Aspire Preview 4 现已推出!以下是此预览版中新增内容的摘要:

  • Podman  
    • Support for running apps with podman
      支持使用 podman 运行应用程序
  • Dashboard  仪表板
    • Standalone container image, see sample
      独立容器镜像,参见示例
    • Accessibility improvements, including shortcuts with Shift+?
      辅助功能改进,包括 Shift + ? 快捷键
    • Metrics table view, toggle between graph or table
      指标表视图,在图表或表格之间切换
  • Databases and Entity Framework improvements
    数据库和实体框架改进
    • New management tools, MySQL (phpMyAdmin) and MongoDB (mongo-express)
      新的管理工具,MySQL (phpMyAdmin) 和 MongoDB (mongo-express)
    • Entity Framework migrations issues resolved, see sample
      实体框架迁移问题已解决,请参阅示例
    • Database server resource updates
      数据库服务器资源更新
    • Database container resource updates
      数据库容器资源更新
    • New Enrich APIs, Enrich[Provider]DdContext
      新的 Enrich API, Enrich[Provider]DdContext
  • External parameters, see .NET Aspire docs: External parameters
    外部参数,请参阅 .NET Aspire 文档:外部参数
  • New idioms:  新习语:
    • DistributedApplicationBuilder.ExecutionContext, and the IsPublisherMode
      DistributedApplicationBuilder.ExecutionContext 和 IsPublisherMode
    • PublishAsRunAs, and As APIs
      PublishAs 、 RunAs 和 As API
  • API improvements  API 改进
    • Change container properties, WithImageTag
      更改容器属性, WithImageTag
    • Splitting bind and volume mounts, WithVolumeMount and WithBindMount
      拆分绑定和卷安装, WithVolumeMount 和 WithBindMount
  • Components  成分
  • Containers with Azure resource mapping (with more planned)
    具有 Azure 资源映射的容器(还有更多计划)
    • Redis -> Azure Redis
    • Postgres -> Azure Database for PostgresSQL
    • SQL Server -> Azure SQL Server
      SQL 服务器 -> Azure SQL 服务器
  • Deployment  部署
    • New primitive, the Azure Bicep resource
      新primitive,Azure Bicep 资源
    • AZD has been updated to include better support for deployment scenarios to align with preview-4 of .NET Aspire
      AZD 已更新,包含对部署方案的更好支持,以与 .NET Aspire 的 preview-4 保持一致
    • The deployment manifest now only contains six resource types, see .NET Aspire manifest format for deployment tool builders
      部署清单现在仅包含六种资源类型,请参阅部署工具构建器的 .NET Aspire 清单格式
  • Emulators updates  模拟器更新
    • Change from UseEmulator to RunAsEmulator
      从 UseEmulator 更改为 RunAsEmulator

For more information, see .NET Aspire docs: Preview 4.
有关详细信息,请参阅 .NET Aspire 文档:预览版 4。

来自 https://github.com/dotnet/aspire/discussions/2815

标签:resource,Azure,see,Aspire,New,NET,Preview
From: https://www.cnblogs.com/linshuli/p/18073286

相关文章

  • Windows Server 2025 简体中文版下载 (Inside Preview, updated Mar 2024) - 下一代 W
    WindowsServer2025简体中文版下载(InsidePreview,updatedMar2024)-下一代Windows11ServerWindowsServer2025正式版发布在即请访问原文链接:https://sysin.org/blog/windows-server-2025/,查看最新版。原创作品,转载请保留出处。作者主页:sysin.org我们知道Windo......
  • Kubernetes集群节点处于Not Ready问题排查
    Kubernetes集群节点处于NotReady问题排查原创 点击关注......
  • 【AutoCAD .NET】创建Hatch时报错eInvalidInput
    问题出处https://forums.autodesk.com/t5/net/hatch-to-drawn-polyline-e-message-quot-einvalidinput-quot/m-p/9631373问题描述我使用以下语句绘制了一条多段线:Acad.Application.DocumentManager.MdiActiveDocument.SendStringToExecute("PL",true,false,true);按如下......
  • netcat的使用
    目录一、基本使用简介二、netcat的使用渗透测试(端口扫描)要判断某个主机的监听端口是否能连上3.监听服务器4.传输文件5.网速吞吐量测试一、基本使用简介usage:nc[-46CDdFhklNnrStUuvZz][-Ilength][-iinterval][-Mttl][-mminttl][-Olength][-Pproxy_user......
  • netfilter: iptable的使用
    netfilter相关网址官网:netfilter/iptablesprojecthomepageiptables基础知识详解_LarryHai6的博客-CSDN博客_iptables使用iptables进行端口转发-云+社区-腾讯云(tencent.com)原理图iptables1.原理叙述iptables具有Filter,NAT,Mangle,Raw四种内建表:1.Filter......
  • 孪生网络(Siamese Network)和数字孪生的区别?
    1.孪生网络孪生网络是一种特殊的网络框架,基于两个人工神经网络建立的耦合构架,通过比较两个样本在高维度空间的表征来判断它们的相似程度。它包含两个相同结构的神经网络,一个用于学习,一个用于验证学习效果。在训练过程中,两个网络同步更新参数,但验证网络的参数更新较慢,这有......
  • 从SpringBoot到DotNet_3.完成购物模块
    一、从购物车模型完成购物车(一)购物车模型设计​ 使用Guid作为购物车的主键,让EFCore自己管理外部引用,使用ICollection保存商品的信息,这里将商品抽象成LineItem与其他模块进行解耦。namespaceFakeXiecheng.Models;publicclassShoppingCart{[Key]publicGuid......
  • 关于java.net.URLEncoder.encode()将空格转成+问题
    1.情景展示如上图所示,当我们使用jdk自带的类对数据进行URL编码时,空格会被转成+。这其实是不对的,我们知道:空格对应url编码是:%20,所以,jdk自带的URLEncoder将空格转成+是不对的。如何解决?2.解决方案既然jdk自带的URLEncoder有问题,我们就有两种解决办法。一种是仍然使用它,然......
  • 使用Minikube 部署单节点 Kubernetes(K8s)集群通常用于开发环境或测试环境
    部署单节点Kubernetes(K8s)集群通常用于开发环境或测试环境,而不是生产环境,因为在单节点上运行的集群无法提供高可用性保证。以下是一个简化的步骤来在一台机器上部署单节点Kubernetes集群:使用Minikube部署单节点K8sMinikube是一个工具,它使得在本地机器(比如笔记本电脑)上搭建......
  • 基于k8s的Kubernetes进程管理
    鱼弦:公众号【红尘灯塔】,CSDN内容合伙人、CSDN新星导师、全栈领域优质创作者、51CTO(Top红人+专家博主)、github开源爱好者(go-zero源码二次开发、游戏后端架构https://github.com/Peakchen)基于Kubernetes的Kubernetes进程管理1.简介基于Kubernetes的Kubernetes......