Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $outputPath = $durableAppPath

$sharedDependenciesPath = "$outputPath/Dependencies/"

$netCoreTFM = 'net6.0'
$netCoreTFM = 'net8.0'
$publishPathSuffix = "bin/$Configuration/$netCoreTFM/publish"

#region BUILD ARTIFACTS ===========================================================================
Expand Down
4 changes: 2 additions & 2 deletions src/AzureFunctions.PowerShell.Durable.SDK.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
ModuleVersion = '1.1.0'
ModuleVersion = '2.0.0'

# Supported PSEditions
CompatiblePSEditions = @('Core')
Expand All @@ -21,7 +21,7 @@
Description = 'Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'

# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '7.2'
PowerShellVersion = '7.4'

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @() # TODO: use this for pretty-printing DF tasks
Expand Down
8 changes: 4 additions & 4 deletions src/DurableEngine/DurableEngine.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>DurableEngine</AssemblyName>
<LangVersion>Latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.DurableTask.Client" Version="1.10.0" />
<PackageReference Include="Microsoft.DurableTask.Worker" Version="1.10.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.DurableTask.Client" Version="1.11.0" />
<PackageReference Include="Microsoft.DurableTask.Worker" Version="1.11.0" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.10" PrivateAssets="all" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/DurableSDK/DurableSDK.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>AzureFunctions.PowerShell.Durable.SDK</AssemblyName>
<LangVersion>Latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\DurableEngine\DurableEngine.csproj" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.1" PrivateAssets="all" />
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.10" PrivateAssets="all" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Storage.Queues" Version="12.14.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Azure.Storage.Queues" Version="12.22.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion test/E2E/Start-E2ETest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function NewTaskHubName
}

$FUNC_RUNTIME_VERSION = '4'
$POWERSHELL_VERSION = '7.2'
$POWERSHELL_VERSION = '7.4'
$FUNC_CMDLET_NAME = "func"
$CORE_TOOLS_VERSION = '4.0.7317'

Expand Down
4 changes: 2 additions & 2 deletions test/E2E/durableApp/extensions.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<WarningsAsErrors></WarningsAsErrors>
<DefaultItemExcludes>**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.DurableTask" Version="3.1.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.1.1" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Storage" Version="5.3.4" />
<PackageReference Include="Microsoft.Azure.WebJobs.Script.ExtensionsMetadataGenerator" Version="4.0.1" />
</ItemGroup>
</Project>