|
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <OutputType>Library</OutputType> |
5 | | - <TargetFrameworks>net6.0;net8.0;net9.0;netstandard2.0</TargetFrameworks> |
| 5 | + <TargetFrameworks>net6.0;net8.0;net9.0;net10.0;netstandard2.0</TargetFrameworks> |
6 | 6 | <PackageId>Microsoft.Azure.Functions.Worker.Core</PackageId> |
7 | 7 | <Description>This library provides the core functionality to build an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model.</Description> |
8 | 8 | <AssemblyName>Microsoft.Azure.Functions.Worker.Core</AssemblyName> |
9 | 9 | <RootNamespace>Microsoft.Azure.Functions.Worker.Core</RootNamespace> |
10 | 10 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
11 | 11 | <MajorProductVersion>2</MajorProductVersion> |
12 | | - <MinorProductVersion>2</MinorProductVersion> |
13 | | - <PatchProductVersion>0</PatchProductVersion> |
| 12 | + <MinorProductVersion>50</MinorProductVersion> |
| 13 | + <PatchProductVersion>0</PatchProductVersion> |
14 | 14 | </PropertyGroup> |
15 | 15 |
|
16 | 16 | <Import Project="..\..\build\Common.props" /> |
|
22 | 22 |
|
23 | 23 | <ItemGroup> |
24 | 24 | <PackageReference Include="Azure.Core" Version="1.44.1" /> |
| 25 | + <PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" /> |
25 | 26 | </ItemGroup> |
26 | 27 |
|
27 | 28 | <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
28 | | - <PackageReference Include="System.Collections.Immutable" Version="8.0.0" /> |
29 | | - <PackageReference Include="Microsoft.Bcl.Memory" Version="9.0.0" /> |
30 | | - </ItemGroup> |
31 | | - |
32 | | - <ItemGroup Condition="'$(TargetFramework)' != 'net9.0'"> |
33 | | - <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" /> |
34 | | - </ItemGroup> |
35 | | - |
36 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net9.0'"> |
37 | | - <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" /> |
| 29 | + <PackageReference Include="System.Collections.Immutable" Version="10.0.0" /> |
| 30 | + <PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.0" /> |
38 | 31 | </ItemGroup> |
39 | 32 |
|
40 | 33 | </Project> |
0 commit comments