Marcel
Marcel
### Repro steps ```cs public class TokenService { private AccessTokenModel _lastTokenModel; public DateTime? LastIssue { get; private set; } public string GetAccessToken() { if (LastIssue + _lastTokenModel?.ExpiresIn > DateTime.Now) return...
Hi I got this "simple" model ``` c# public class Container { public int Id { get; set; } public string Name { get; set; } public List Items {...
Given the following snippet: ```js var source = ["Coffee", "Tea", "Cereales", "Toast", "Butter", "Eggs", "Beacon", "Fruits"]; var $input = $("#breakfast"); $input.typeahead({ minLength: 0, showHintOnFocus: "all", source: source }); ``` 1....
I use the following command to generate a swagger.json: > <Exec Command="$(NSwagExe_Net60) aspnetcore2openapi /assembly:$(TargetDir)$(MSBuildProjectName).dll /outputType:OpenApi3 /output:swagger.json" /> The good old `Newtonsoft` works as expected: ```cs [Newtonsoft.Json.JsonExtensionData] //[System.Text.Json.Serialization.JsonExtensionData] public IDictionary AdditionalProperties...
The ` 756 ` value is not recognized by Swagger UI. ## VERSION: ## 5.6.3 ## STEPS TO REPRODUCE: ## ```cs public class SearchQueryViewModel { /// ISO 3166 code of...
## VERSION: ## `` ## STEPS TO REPRODUCE: ## ```cs public ActionResult Get([FromQuery] PersonQuery query) { ... } public class PersonQuery { ... /// ISO 3166 code of the nationality...
Starting the build script the first time the following message comes up: ``` # NOTE: Aside from the Project Name, you may leave any # of these blank, but you...
After months I've just tried to get ProjectScaffold running again. I'm stuck in the release process: My Release target doesn't work. Works: `Git.Commit.Commit "" (sprintf "Version %s" release.NugetVersion)` Works not:...
### Magick.NET version Magick.NET-Q16-AnyCPU 13.9.0 ### Environment (Operating system, version and so on) Windows 11 23H2 ### Description I have a .NET Framework 4.8 environment and need Magick.NET and old...
Introducing .NET 7 `Results` (https://learn.microsoft.com/en-us/aspnet/core/web-api/action-return-types#resultt-type) Microsoft promised that > All the [[ProducesResponseType]](https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.mvc.producesresponsetypeattribute) attribute's can be excluded, since the HttpResult implementation contributes automatically to the endpoint metadata. But if I write...