Skip to content
Merged
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
14 changes: 14 additions & 0 deletions fern/products/sdks/overview/csharp/changelog/2026-03-13.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.30.0
**`(feat):`** Add `sln-format` configuration option. Set to `"sln"` to generate both a legacy
`.sln` solution file and the modern `.slnx` file. The default value `"slnx"` generates
only the `.slnx` file. This is useful for teams that need compatibility with older
.NET tooling or CI systems that do not yet support the `.slnx` format.

```yaml
generators:
- name: fernapi/fern-csharp-sdk
config:
sln-format: sln
```


## 2.29.0
**`(feat):`** Rework enum JSON serialization to eliminate reflection. Each enum now gets
a generated serializer with static dictionary lookups instead of the generic
Expand Down
Loading