This commit is contained in:
2025-10-03 20:08:33 +08:00
parent c0157a7e91
commit 9c32fc1d9b
3 changed files with 14 additions and 10 deletions
+2
View File
@@ -6,6 +6,8 @@
<ItemGroup>
<ProjectReference Include="..\Generator\Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<Compile Remove="*/*.template.cs" />
<AdditionalFiles Include="*/*.template.cs" />
</ItemGroup>
</Project>
+7
View File
@@ -0,0 +1,7 @@
namespace Generated;
public static class HelloWorld {
public static string SayHello() {
return "Hello World!!!";
}
}