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
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Environment (please complete the following information):**
- Monify Version: [e.g. 1.0.0]
- .NET Version (Your Project): [e.g. NET 8]
- IDE: [e.g. Visual Studio 2022]
- Monify Version: [1.3.1]
- .NET Version (Your Project): [NET 10]
- IDE: [Visual Studio 2022 v18.0.2]

**Additional context**
Add any other context about the problem here.
Add any other context about the problem here.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to Monify will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [1.3.0] - TBC
# [1.3.1] - 2025-12-07

## Fixed

- Nested partial classes are now ordered correctly (#49).

# [1.3.0] - 2025-11-29

## Added

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
namespace Monify.Snippets.Declarations.Classes;

using Microsoft.CodeAnalysis.CSharp;
using static Monify.Snippets.Snippets;

internal static partial class Nested
{
public static partial class MultiLevel
{
public static class Declarations
{
public static readonly Content Main = new(
$$"""
namespace Monify.Testing.Classes
{
public partial class Snippet
{
public partial class BlockOptions
{
[{{BodyTag}}]
public sealed partial class InlineStyle
{
}
}
}
}
""",
LanguageVersion.CSharp2);
}
}
}
Loading