Skip to content

Commit 41c76a2

Browse files
committed
Add DependsOnNETStandard to csproj and update cli version
1 parent ee63f5b commit 41c76a2

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{6608738C-3BDB-47F5-BC62-66A8BDF9D884}</ProjectGuid>
8+
<DependsOnNETStandard>true</DependsOnNETStandard>
89
<OutputType>Exe</OutputType>
910
<AppDesignerFolder>Properties</AppDesignerFolder>
1011
<RootNamespace>Azure.Functions.Cli</RootNamespace>

src/Azure.Functions.Cli/Common/Constants.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ internal static class Constants
66
public const string FunctionsStorageAccountNamePrefix = "AzureFunctions";
77
public const string StorageAccountArmType = "Microsoft.Storage/storageAccounts";
88
public const string FunctionAppArmKind = "functionapp";
9-
public const string CliVersion = "1.0.5";
9+
public const string CliVersion = "1.0.6";
1010
public const string CliDebug = "CLI_DEBUG";
1111
public const string DefaultSqlProviderName = "System.Data.SqlClient";
1212
public const string WebsiteHostname = "WEBSITE_HOSTNAME";
@@ -19,4 +19,4 @@ public static class Errors
1919
public const string EitherPidOrAllMustBeSpecified = "Must specify either -a/--all or -p/--processId <Pid>";
2020
}
2121
}
22-
}
22+
}

src/Azure.Functions.Cli/npm/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-functions-core-tools",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Azure Functions Core Tools",
55
"scripts": {
66
"postinstall": "node lib/install.js"
@@ -26,4 +26,4 @@
2626
"tmp": "^0.0.33",
2727
"unzipper": "^0.8.9"
2828
}
29-
}
29+
}

0 commit comments

Comments
 (0)