diff --git a/src/Azure.Functions.PowerShell.Worker.Package.props b/src/Azure.Functions.PowerShell.Worker.Package.props new file mode 100644 index 00000000..14bd9668 --- /dev/null +++ b/src/Azure.Functions.PowerShell.Worker.Package.props @@ -0,0 +1,25 @@ + + + + 0.1.0 + Azure.Functions.PowerShell.Worker + Microsoft + Microsoft + Microsoft Corporation + The Azure Function PowerShell Language Worker allows users to write Azure Function Apps using PowerShell. It leverages the PowerShell Core SDK. + Azure Function PowerShell Language Worker + © Microsoft Corporation. All rights reserved. + https://github.com/Azure/azure-functions-powershell-worker/blob/dev/LICENSE + https://github.com/Azure/azure-functions-powershell-worker + https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_64.png + azure,functions,powershell,worker + + # 0.1.0 + + Initial Release + + + diff --git a/src/Azure.Functions.PowerShell.Worker.csproj b/src/Azure.Functions.PowerShell.Worker.csproj index 03feccdf..922e7d58 100644 --- a/src/Azure.Functions.PowerShell.Worker.csproj +++ b/src/Azure.Functions.PowerShell.Worker.csproj @@ -1,16 +1,19 @@ + - + Exe - netcoreapp2.1 + netcoreapp2.1 Azure Function PowerShell Language Worker - Microsoft Corporation - (c) Microsoft Corporation. All rights reserved. - Latest true false true + true + true true en-US @@ -24,13 +27,13 @@ - + PreserveNewest - - + + Modules\%(RecursiveDir)\%(FileName)%(Extension) PreserveNewest - + diff --git a/test/Function/FunctionLoaderTests.cs b/test/Function/FunctionLoaderTests.cs index a5b6bd3d..da6625c4 100644 --- a/test/Function/FunctionLoaderTests.cs +++ b/test/Function/FunctionLoaderTests.cs @@ -127,7 +127,7 @@ public void TestFunctionLoaderGetInfo() Assert.Equal(directory, funcInfo.Directory); Assert.Equal(name, funcInfo.FunctionName); Assert.Equal(2, funcInfo.AllBindings.Count); - Assert.Equal(1, funcInfo.OutBindings.Count); + Assert.Single(funcInfo.OutputBindings); } } }