Build command project after main project

This commit is contained in:
Jack251970 2025-06-15 15:54:17 +08:00
parent 478ba29966
commit 911999810c

View file

@ -142,4 +142,13 @@
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
</Target>
<Target Name="BuildCommandProject" AfterTargets="Build">
<MSBuild
Projects="..\Flow.Launcher.Command\Flow.Launcher.Command.csproj"
Targets="Build"
BuildInParallel="false"
Properties="Platform=$(Platform);Configuration=$(Configuration)" />
</Target>
</Project>