Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions host/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ stages:
displayName: "Copy needed files"
inputs:
SourceFolder: "$(Build.ArtifactStagingDirectory)/output/linux"
# Publish output will include many other files. We only need the FunctionsNetHost & libnethost.so
# Publish output will include many other files. We only need the FunctionsNetHost, FunctionsNetHost.dbg & libnethost.so
Contents: |
FunctionsNetHost
FunctionsNetHost.dbg
libnethost.so
TargetFolder: "$(Build.ArtifactStagingDirectory)/output/linux_filtered"

Expand Down Expand Up @@ -80,9 +81,10 @@ stages:
displayName: "Copy needed files"
inputs:
SourceFolder: "$(Build.ArtifactStagingDirectory)/output/windows"
# Publish output will include many other files. We only need FunctionsNetHost.exe & nethost.dll
# Publish output will include many other files. We only need FunctionsNetHost.exe, pdb & nethost.dll
Contents: |
FunctionsNetHost.exe
FunctionsNetHost.pdb
nethost.dll
TargetFolder: "$(Build.ArtifactStagingDirectory)/output/windows_filtered"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<id>Microsoft.Azure.Functions.DotNetIsolatedNativeHost</id>
<title>Microsoft Azure Functions dotnet-isolated native host</title>
<tags>dotnet-isolated azure-functions azure</tags>
<version>1.0.2</version>
<version>1.0.3</version>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<projectUrl>https://github.com/Azure/azure-functions-dotnet-worker</projectUrl>
Expand Down