Skip to content

Commit 0022859

Browse files
authoredOct 26, 2023
Add trimming support for RuntimeSupport, SystemTextJson serializer and Lambda event packages (#1596)
Add trimming support for RuntimeSupport, SystemTextJson serializer and Lambda event packages when targeting .NET 8
1 parent 68396f5 commit 0022859

File tree

100 files changed

+553
-348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+553
-348
lines changed
 

‎.github/workflows/source-generator-ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
uses: actions/setup-dotnet@v1
2323
with:
2424
dotnet-version: 6.0.x
25+
- name: Setup .NET 8.0
26+
uses: actions/setup-dotnet@v1
27+
with:
28+
dotnet-version: 8.0.100-rc.2.23502.2
2529
- name: Configure AWS Credentials
2630
uses: aws-actions/configure-aws-credentials@v1
2731
with:
@@ -73,6 +77,10 @@ jobs:
7377
uses: actions/setup-dotnet@v1
7478
with:
7579
dotnet-version: 6.0.x
80+
- name: Setup .NET 8.0
81+
uses: actions/setup-dotnet@v1
82+
with:
83+
dotnet-version: 8.0.100-rc.2.23502.2
7684
- name: Restore dependencies
7785
run: dotnet restore Libraries/test/TestServerlessApp/TestServerlessApp.csproj
7886
- name: Build

‎Libraries/src/Amazon.Lambda.APIGatewayEvents/APIGatewayCustomAuthorizerPolicy.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ public class APIGatewayCustomAuthorizerPolicy
1010
/// <summary>
1111
/// Gets or sets the IAM API version.
1212
/// </summary>
13-
#if NETCOREAPP_3_1
13+
#if NETCOREAPP3_1_OR_GREATER
1414
[System.Text.Json.Serialization.JsonPropertyName("Version")]
1515
#endif
1616
public string Version { get; set; } = "2012-10-17";
1717

1818
/// <summary>
1919
/// Gets or sets a list of IAM policy statements to apply.
2020
/// </summary>
21-
#if NETCOREAPP_3_1
21+
#if NETCOREAPP3_1_OR_GREATER
2222
[System.Text.Json.Serialization.JsonPropertyName("Statement")]
2323
#endif
2424
public List<IAMPolicyStatement> Statement { get; set; } = new List<IAMPolicyStatement>();
@@ -31,23 +31,23 @@ public class IAMPolicyStatement
3131
/// <summary>
3232
/// Gets or sets the effect the statement has.
3333
/// </summary>
34-
#if NETCOREAPP_3_1
34+
#if NETCOREAPP3_1_OR_GREATER
3535
[System.Text.Json.Serialization.JsonPropertyName("Effect")]
3636
#endif
3737
public string Effect { get; set; } = "Allow";
3838

3939
/// <summary>
4040
/// Gets or sets the action/s the statement has.
4141
/// </summary>
42-
#if NETCOREAPP_3_1
42+
#if NETCOREAPP3_1_OR_GREATER
4343
[System.Text.Json.Serialization.JsonPropertyName("Action")]
4444
#endif
4545
public HashSet<string> Action { get; set; }
4646

4747
/// <summary>
4848
/// Gets or sets the resources the statement applies to.
4949
/// </summary>
50-
#if NETCOREAPP_3_1
50+
#if NETCOREAPP3_1_OR_GREATER
5151
[System.Text.Json.Serialization.JsonPropertyName("Resource")]
5252
#endif
5353
public HashSet<string> Resource { get; set; }

0 commit comments

Comments
 (0)
Please sign in to comment.