We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7930d57 commit 8dd9b9cCopy full SHA for 8dd9b9c
Scripts/post_build.ps1
@@ -104,6 +104,12 @@ function Publish-Self-Contained ($p) {
104
# we call dotnet publish on the main project.
105
# The other projects should have been built in Release at this point.
106
dotnet publish -c Release $csproj /p:PublishProfile=$profile
107
+
108
+ $command_csproj = Join-Path "$p" "Flow.Launcher.Command/Flow.Launcher.Command.csproj" -Resolve
109
+ $command_profile = Join-Path "$p" "Flow.Launcher.Command/Properties/PublishProfiles/Net7.0-SelfContained.pubxml" -Resolve
110
111
+ # we call dotnet publish on the command project.
112
+ dotnet publish -c Release $command_profile /p:PublishProfile=$profile
113
}
114
115
function Publish-Portable ($outputLocation, $version) {
0 commit comments