Azure Function v2 .NET框架?

时间:2018-04-30 13:15:43

标签: azure azure-functions

我们目前已经部署了一个V1 Azure功能,并希望将其升级到V2 [预览]。但是我现在看不到任何以.NET Framework 4.6.1为目标的方法,只能在创建v2函数时使用.NET Core。

是否可以在Azure Function v2中使用.NET Framework?

2 个答案:

答案 0 :(得分:5)

v2中的Function Runtime仅在.NET Core 2.0上运行,因此无法定位.NET Framework 4.6.1。

答案 1 :(得分:0)

使用Visual Studio 2017 Preview 2,我能够创建一个4.61 Azure函数库。

<PropertyGroup>
    <TargetFramework>net461</TargetFramework>
  </PropertyGroup>

我的完整csproj

请注意(未来读者)随着时间的推移,这可能会发生变化,“预览”会集成到“真正的”VS2017中。

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup Label="Globals">
    <SccProjectName>SAK</SccProjectName>
    <SccProvider>SAK</SccProvider>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
  </PropertyGroup>
  <PropertyGroup>
    <TargetFramework>net461</TargetFramework>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.Azure.WebJobs" Version="2.1.0-beta1" />
    <PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="2.1.0-beta1" />
    <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="1.0.0-beta1" />
    <PackageReference Include="Microsoft.Azure.WebJobs.ServiceBus" Version="2.1.0-beta1" />
    <PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
    <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.0-alpha3" />
    <PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.2" />
    <PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
    <PackageReference Include="Unity" Version="4.0.1" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Configuration" />
    <Reference Include="System.Web" />
  </ItemGroup>
  <ItemGroup>
    <None Update="host.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Update="local.settings.json">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
</Project>