summaryrefslogtreecommitdiff
path: root/CommandLineWrapper/CommandLineWrapper.csproj
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-10 00:19:26 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-10 00:19:26 +0800
commitc7ed0578fcfa501ce68bb69678db2765ed75d721 (patch)
tree84c78d4acddfc83ee2fbbf292b0d65c3cc9c03eb /CommandLineWrapper/CommandLineWrapper.csproj
parent75f7578d784a4e209da4b29a80d27940197d8945 (diff)
Add code generator for workspace command extensions
Diffstat (limited to 'CommandLineWrapper/CommandLineWrapper.csproj')
-rw-r--r--CommandLineWrapper/CommandLineWrapper.csproj13
1 files changed, 13 insertions, 0 deletions
diff --git a/CommandLineWrapper/CommandLineWrapper.csproj b/CommandLineWrapper/CommandLineWrapper.csproj
index b92e51b..753d77a 100644
--- a/CommandLineWrapper/CommandLineWrapper.csproj
+++ b/CommandLineWrapper/CommandLineWrapper.csproj
@@ -4,6 +4,19 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
+ </PropertyGroup>
+
+ <Target Name="GenerateWorkspaceExtensions" BeforeTargets="BeforeBuild">
+ <Exec
+ Command="dotnet run --project WorkspaceCommandGenerator/WorkspaceCommandGenerator.csproj"
+ WorkingDirectory="$(MSBuildProjectDirectory)"
+ />
+ </Target>
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
</PropertyGroup>
</Project>