作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个用于 .NET 的 HttpClient
的通用包装器,但我想使用 NSwagStudio 的代码生成器生成调用我的通用客户端而不是标准 HttpClient
的代码。我已经实现了其中的大部分,但是有一部分我无法自定义:DTO 对象的代码。我知道它是从此处的 File.liquid 模板生成的:
{% if GenerateContracts -%}
{{ Classes | tab }}
我看不到如何修改从 Classes
生成的代码是:
public partial class ExampleDomainObject
{
[Newtonsoft.Json.JsonProperty("id", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public int Id { get; set; }
[Newtonsoft.Json.JsonProperty("name", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string Name { get; set; }
}
我想使用 System.Text.Json
而不是 Newtonsoft,所以我要么想完全删除 Newtonsoft 属性,要么改用 JsonPropertyName
。
谁能指出我在哪里进行更改?
最佳答案
关于c# - 如何在 NSwagStudio 中为 C# 客户端自定义生成的 DTO,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65131576/
我是一名优秀的程序员,十分优秀!