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
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ specified per file:

```csharp
#:package Humanizer@2.14.1
#:property ImplicitUsings true
#:property Nullable enable
#:property ImplicitUsings=true
#:property Nullable=enable

using Humanizer;

Expand Down
4 changes: 2 additions & 2 deletions src/Demo/Humanizer.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#:property ImplicitUsings true
#:property Nullable enable
#:property ImplicitUsings=true
#:property Nullable=enable
#:package Humanizer@2.14.1

using Humanizer;
Expand Down
4 changes: 2 additions & 2 deletions src/Demo/Mcp.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#:property Title LaTeX to Image MCP
#:property Version 0.5.0
#:property Title=LaTeX to Image MCP
#:property Version=0.5.0
#:package Smith@0.2.5
#:package DotNetConfig.Configuration@1.2.*
#:package ModelContextProtocol@0.3.0-preview.*
Expand Down
2 changes: 1 addition & 1 deletion src/SmallSharp/EmitTargets.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class EmitTargets : Task
{
static readonly Regex sdkExpr = new(@"^#:sdk\s+([^@]+?)(@(.+))?$");
static readonly Regex packageExpr = new(@"^#:package\s+([^@]+)@(.+)$");
static readonly Regex propertyExpr = new(@"^#:property\s+([^\s]+)\s+(.+)$");
static readonly Regex propertyExpr = new(@"^#:property\s+([^=]+)=(.+)$");

[Required]
public required ITaskItem StartupFile { get; set; }
Expand Down