Make extensive use of raw string literals C#11 feature

This commit is contained in:
Kwoth
2023-01-21 01:12:11 +01:00
parent 0fe4f14d96
commit 63a9ae2dac
32 changed files with 756 additions and 587 deletions

View File

@@ -7,10 +7,10 @@ namespace Nadeko.Medusa;
[Cloneable]
public sealed partial class MedusaConfig : ICloneable<MedusaConfig>
{
[Comment(@"DO NOT CHANGE")]
[Comment("""DO NOT CHANGE""")]
public int Version { get; set; } = 1;
[Comment("List of medusae automatically loaded at startup")]
[Comment("""List of medusae automatically loaded at startup""")]
public List<string>? Loaded { get; set; }
public MedusaConfig()