From bf8cf1fd3a7f570da7ce7aac53710a2a039287f2 Mon Sep 17 00:00:00 2001 From: Daniel Cazzulino Date: Wed, 10 Sep 2025 17:03:42 -0300 Subject: [PATCH] Add blank sample with only implicit usings --- src/Demo/Hello.cs | 3 +++ src/Demo/Mcp.cs | 1 + src/Demo/Properties/launchSettings.json | 3 +++ 3 files changed, 7 insertions(+) create mode 100644 src/Demo/Hello.cs diff --git a/src/Demo/Hello.cs b/src/Demo/Hello.cs new file mode 100644 index 0000000..95cd9f1 --- /dev/null +++ b/src/Demo/Hello.cs @@ -0,0 +1,3 @@ +#:property ImplicitUsings=true + +Console.WriteLine("Hello, World!"); \ No newline at end of file diff --git a/src/Demo/Mcp.cs b/src/Demo/Mcp.cs index 81e75bc..cc2daf0 100644 --- a/src/Demo/Mcp.cs +++ b/src/Demo/Mcp.cs @@ -1,5 +1,6 @@ #:property Title=LaTeX to Image MCP #:property Version=0.5.0 +#:property ImplicitUsings=true #:package Smith@0.2.5 #:package DotNetConfig.Configuration@1.2.* #:package ModelContextProtocol@0.3.0-preview.* diff --git a/src/Demo/Properties/launchSettings.json b/src/Demo/Properties/launchSettings.json index 9464a29..051dcc7 100644 --- a/src/Demo/Properties/launchSettings.json +++ b/src/Demo/Properties/launchSettings.json @@ -5,6 +5,9 @@ }, "Mcp.cs": { "commandName": "Project" + }, + "Hello.cs": { + "commandName": "Project" } } } \ No newline at end of file