mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Publish command project
This commit is contained in:
parent
7930d57c91
commit
8dd9b9c963
1 changed files with 6 additions and 0 deletions
|
|
@ -104,6 +104,12 @@ function Publish-Self-Contained ($p) {
|
|||
# we call dotnet publish on the main project.
|
||||
# The other projects should have been built in Release at this point.
|
||||
dotnet publish -c Release $csproj /p:PublishProfile=$profile
|
||||
|
||||
$command_csproj = Join-Path "$p" "Flow.Launcher.Command/Flow.Launcher.Command.csproj" -Resolve
|
||||
$command_profile = Join-Path "$p" "Flow.Launcher.Command/Properties/PublishProfiles/Net7.0-SelfContained.pubxml" -Resolve
|
||||
|
||||
# we call dotnet publish on the command project.
|
||||
dotnet publish -c Release $command_profile /p:PublishProfile=$profile
|
||||
}
|
||||
|
||||
function Publish-Portable ($outputLocation, $version) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue