После установки Azure Core Tools инструментов с npm i -g azure-functions-core-tools@3 --unsafe-perm true
я предполагал, что команда func init --ProjectName
создаст проект Azure Functions с AzureFunctionsVersion v3, но вместо этого он будет создан с v2 в файле проекта:
.csproj
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
</ItemGroup>
</Project>
После установки переменной окружения CLI_DEBUG=1
и повторного запуска забавной команды init c, которую я понял, она запускает следующие команды:
> dotnet new --install "C:\Users\murat\AppData\Roaming\npm\node_modules\azure-functions-core-tools\bin\templates\itemTemplates.3.0.10405.nupkg"
> dotnet new --install "C:\Users\murat\AppData\Roaming\npm\node_modules\azure-functions-core-tools\bin\templates\projectTemplates.3.0.10405.nupkg"
> dotnet new func --AzureFunctionsVersion v2 --name ProjectName --StorageConnectionStringValue "UseDevelopmentStorage=true"
> dotnet new --uninstall "C:\Users\murat\AppData\Roaming\npm\node_modules\azure-functions-core-tools\bin\templates\itemTemplates.3.0.10405.nupkg"
> dotnet new --uninstall "C:\Users\murat\AppData\Roaming\npm\node_modules\azure-functions-core-tools\bin\templates\projectTemplates.3.0.10405.nupkg"
ясно это вызывает аргумент --AzureFunctionsVersion v2
. Это поведение по умолчанию?
Поскольку, если я использую в папке команду do tnet new fun c или использую проект VS2019 AzureFunctions v3, для AzureFunctionsVersion устанавливается значение v3
После поиска в исходном коде AcureFunctionsCoreTools я нашел следующий код в методе DeployDotnetProject класса DotnetHelpers:
public async static Task DeployDotnetProject(string Name, bool force)
{
await TemplateOperation(async () =>
{
var connectionString = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
? $"--StorageConnectionStringValue \"{Constants.StorageEmulatorConnectionString}\""
: string.Empty;
var exe = new Executable("dotnet", $"new func --AzureFunctionsVersion v2 --name {Name} {connectionString} {(force ? "--force" : string.Empty)}");
var exitCode = await exe.RunAsync(o => { }, e => ColoredConsole.Error.WriteLine(ErrorColor(e)));
if (exitCode != 0)
{
throw new CliException("Error creating project template");
}
});
}
Нужен ли нам еще этот --AzureFunctionsVersion v2
аргумент?