Skip to content

Add Amazon.Lambda.DurableExecution project scaffolding#2359

Open
GarrettBeatty wants to merge 1 commit into
feature/durablefunctionfrom
GarrettBeatty/stack/1
Open

Add Amazon.Lambda.DurableExecution project scaffolding#2359
GarrettBeatty wants to merge 1 commit into
feature/durablefunctionfrom
GarrettBeatty/stack/1

Conversation

@GarrettBeatty
Copy link
Copy Markdown
Collaborator

@GarrettBeatty GarrettBeatty commented May 12, 2026

Stacked PRs:


Add Amazon.Lambda.DurableExecution project scaffolding

Establishes the package metadata for the durable execution SDK:
src project (net8.0, trimmable, signed) and the matching test project
with InternalsVisibleTo wired up. No public API is added yet — a
single sanity test verifies the assembly loads.

Subsequent PRs will add the actual SDK contents on top of this scaffolding.

build

PR comments

PR comments

@GarrettBeatty GarrettBeatty requested review from a team as code owners May 12, 2026 02:36
@GarrettBeatty GarrettBeatty requested review from normj and philasmar and removed request for a team May 12, 2026 02:36
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from 9d78744 to 075b5e6 Compare May 12, 2026 02:36
@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 02:37
@GarrettBeatty GarrettBeatty removed request for a team, normj and philasmar May 12, 2026 02:37
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch 2 times, most recently from 994f721 to 040265a Compare May 12, 2026 03:03
@GarrettBeatty GarrettBeatty mentioned this pull request May 12, 2026
@GarrettBeatty GarrettBeatty changed the base branch from feature/durablefunction to GarrettBeatty/stack/3 May 12, 2026 03:03
Base automatically changed from GarrettBeatty/stack/3 to feature/durablefunction May 12, 2026 03:04
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from 040265a to fa704e7 Compare May 12, 2026 03:05
@GarrettBeatty GarrettBeatty added the Release Not Needed Add this label if a PR does not need to be released. label May 12, 2026
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from fa704e7 to a90329b Compare May 12, 2026 15:12
Comment thread buildtools/build.proj
<Exec Command="dotnet test -c $(Configuration)" WorkingDirectory="..\Libraries\test\SnapshotRestore.Registry.Tests"/>
<Exec Command="dotnet test -c $(Configuration)" WorkingDirectory="..\Libraries\test\Amazon.Lambda.RuntimeSupport.Tests\Amazon.Lambda.RuntimeSupport.UnitTests"/>
<Exec Command="dotnet test -c $(Configuration)" WorkingDirectory="..\Libraries\test\Amazon.Lambda.Annotations.SourceGenerators.Tests"/>
<Exec Command="dotnet test -c $(Configuration)" WorkingDirectory="..\Libraries\test\Amazon.Lambda.DurableExecution.Tests"/>
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure if this is needed here or what this target is actually for and why it doesnt include other unit test projects? there is already a run-tests which runs everything

Comment thread .autover/autover.json
"Path": "Libraries/src/Amazon.Lambda.Core/Amazon.Lambda.Core.csproj"
},
{
"Name": "Amazon.Lambda.DurableExecution",
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ill create an actual change file at the very end once we are ready to release

@@ -0,0 +1,5 @@
namespace Amazon.Lambda.DurableExecution;

internal static class AssemblyMarker
Copy link
Copy Markdown
Collaborator Author

@GarrettBeatty GarrettBeatty May 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file is placeholder for scaffolding. will be removed in next pr


public class AssemblyLoadTests
{
[Fact]
Copy link
Copy Markdown
Collaborator Author

@GarrettBeatty GarrettBeatty May 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

file is placeholder for scaffolding. will be removed in next pr

@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 16:03
@GarrettBeatty GarrettBeatty requested review from normj and philasmar May 12, 2026 16:07
@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 16:19
@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 16:20
@GarrettBeatty GarrettBeatty mentioned this pull request May 12, 2026
@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 16:30
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from a90329b to bc12581 Compare May 12, 2026 16:31
@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 16:31
@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 18:16
@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 18:16
<Import Project="..\..\..\buildtools\common.props" />

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use the $(DefaultPackageTargets) msbuild property I added in my previous PR?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use the $(DefaultPackageTargets) msbuild property I added in my previous PR?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 21:30
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from bc12581 to 9eff24c Compare May 12, 2026 21:30
@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 21:30
@GarrettBeatty GarrettBeatty requested a review from normj May 12, 2026 21:30
<Import Project="..\..\..\buildtools\common.props" />

<PropertyGroup>
<TargetFramework>$(DefaultPackageTargets)</TargetFramework>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since $(DefaultPackageTargets) has multiple targets, .NET 8 and 10. You need to change TargetFramework to TargetFrameworks.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>$(DefaultPackageTargets)</TargetFramework>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since $(DefaultPackageTargets) has multiple targets, .NET 8 and 10. You need to change TargetFramework to TargetFrameworks.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

Establishes the package metadata for the durable execution SDK:
src project (net8.0, trimmable, signed) and the matching test project
with InternalsVisibleTo wired up. No public API is added yet — a
single sanity test verifies the assembly loads.

Subsequent PRs will add the actual SDK contents on top of this scaffolding.

stack-info: PR: #2359, branch: GarrettBeatty/stack/1

build

PR comments

PR comments
@GarrettBeatty GarrettBeatty marked this pull request as draft May 12, 2026 21:33
@GarrettBeatty GarrettBeatty force-pushed the GarrettBeatty/stack/1 branch from 9eff24c to b590506 Compare May 12, 2026 21:34
@GarrettBeatty GarrettBeatty marked this pull request as ready for review May 12, 2026 21:34
@GarrettBeatty GarrettBeatty requested a review from normj May 12, 2026 21:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Release Not Needed Add this label if a PR does not need to be released.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants