diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-10 00:19:26 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-10 00:19:26 +0800 |
| commit | c7ed0578fcfa501ce68bb69678db2765ed75d721 (patch) | |
| tree | 84c78d4acddfc83ee2fbbf292b0d65c3cc9c03eb /CommandLineWrapper/CommandLineWrapper.csproj | |
| parent | 75f7578d784a4e209da4b29a80d27940197d8945 (diff) | |
Add code generator for workspace command extensions
Diffstat (limited to 'CommandLineWrapper/CommandLineWrapper.csproj')
| -rw-r--r-- | CommandLineWrapper/CommandLineWrapper.csproj | 13 |
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> |
