File tree Expand file tree Collapse file tree 7 files changed +20
-20
lines changed
AzureFunctions.PowerShell.Durable.SDK.E2E Expand file tree Collapse file tree 7 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ $outputPath = $durableAppPath
22
22
23
23
$sharedDependenciesPath = " $outputPath /Dependencies/"
24
24
25
- $netCoreTFM = ' net6 .0'
25
+ $netCoreTFM = ' net8 .0'
26
26
$publishPathSuffix = " bin/$Configuration /$netCoreTFM /publish"
27
27
28
28
# region BUILD ARTIFACTS ===========================================================================
Original file line number Diff line number Diff line change 1
1
@ {
2
2
# Version number of this module.
3
- ModuleVersion = ' 1.1 .0'
3
+ ModuleVersion = ' 2.0 .0'
4
4
5
5
# Supported PSEditions
6
6
CompatiblePSEditions = @ (' Core' )
18
18
Copyright = ' (c) Microsoft Corporation. All rights reserved.'
19
19
20
20
# Description of the functionality provided by this module
21
- Description = ' Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'
21
+ Description = ' Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'
22
22
23
23
# Minimum version of the PowerShell engine required by this module
24
- PowerShellVersion = ' 7.2 '
24
+ PowerShellVersion = ' 7.4 '
25
25
26
26
# Type files (.ps1xml) to be loaded when importing this module
27
27
# TypesToProcess = @() # TODO: use this for pretty-printing DF tasks
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<AssemblyName >DurableEngine</AssemblyName >
6
6
<LangVersion >Latest</LangVersion >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" Microsoft.DurableTask.Client" Version =" 1.10 .0" />
11
- <PackageReference Include =" Microsoft.DurableTask.Worker" Version =" 1.10 .0" />
12
- <PackageReference Include =" Microsoft.PowerShell.SDK" Version =" 7.2.1 " PrivateAssets =" all" />
10
+ <PackageReference Include =" Microsoft.DurableTask.Client" Version =" 1.11 .0" />
11
+ <PackageReference Include =" Microsoft.DurableTask.Worker" Version =" 1.11 .0" />
12
+ <PackageReference Include =" Microsoft.PowerShell.SDK" Version =" 7.4.10 " PrivateAssets =" all" />
13
13
</ItemGroup >
14
14
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<AssemblyName >AzureFunctions.PowerShell.Durable.SDK</AssemblyName >
6
6
<LangVersion >Latest</LangVersion >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
10
<ProjectReference Include =" ..\DurableEngine\DurableEngine.csproj" />
11
- <PackageReference Include =" Microsoft.PowerShell.SDK" Version =" 7.2.1 " PrivateAssets =" all" />
11
+ <PackageReference Include =" Microsoft.PowerShell.SDK" Version =" 7.4.10 " PrivateAssets =" all" />
12
12
</ItemGroup >
13
13
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
7
8
8
<IsPackable >false</IsPackable >
9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" Azure.Storage.Queues" Version =" 12.14 .0" />
13
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.1.0 " />
14
- <PackageReference Include =" Newtonsoft.Json" Version =" 11 .0.2 " />
15
- <PackageReference Include =" xunit" Version =" 2.4.2 " />
16
- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3 " >
12
+ <PackageReference Include =" Azure.Storage.Queues" Version =" 12.22 .0" />
13
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.14.1 " />
14
+ <PackageReference Include =" Newtonsoft.Json" Version =" 13 .0.3 " />
15
+ <PackageReference Include =" xunit" Version =" 2.9.3 " />
16
+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.1.0 " >
17
17
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
18
18
<PrivateAssets >all</PrivateAssets >
19
19
</PackageReference >
20
- <PackageReference Include =" coverlet.collector" Version =" 3.1.2 " >
20
+ <PackageReference Include =" coverlet.collector" Version =" 6.0.4 " >
21
21
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
22
22
<PrivateAssets >all</PrivateAssets >
23
23
</PackageReference >
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ function NewTaskHubName
59
59
}
60
60
61
61
$FUNC_RUNTIME_VERSION = ' 4'
62
- $POWERSHELL_VERSION = ' 7.2 '
62
+ $POWERSHELL_VERSION = ' 7.4 '
63
63
$FUNC_CMDLET_NAME = " func"
64
64
$CORE_TOOLS_VERSION = ' 4.0.7317'
65
65
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net6 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
4
4
<WarningsAsErrors ></WarningsAsErrors >
5
5
<DefaultItemExcludes >**</DefaultItemExcludes >
6
6
</PropertyGroup >
7
7
<ItemGroup >
8
8
<PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.DurableTask" Version =" 3.1.0" />
9
- <PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.Storage" Version =" 5.1.1 " />
9
+ <PackageReference Include =" Microsoft.Azure.WebJobs.Extensions.Storage" Version =" 5.3.4 " />
10
10
<PackageReference Include =" Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version =" 4.0.1" />
11
11
</ItemGroup >
12
12
</Project >
You can’t perform that action at this time.
0 commit comments