Skip to content

Commit fdbd39f

Browse files
authored
fix: Add package metadata and include assets for LayeredCraft.Lambda.AspNetCore.HostingExtensions (#3)
1 parent 0bde9d8 commit fdbd39f

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

LayeredCraft.Lambda.AspNetCore.HostingExtensions.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{93154236-6
3333
EndProjectSection
3434
EndProject
3535
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "assets", "assets", "{064CF7F9-2FC5-45EF-9718-346EC81E819A}"
36+
ProjectSection(SolutionItems) = preProject
37+
docs\assets\icon.png = docs\assets\icon.png
38+
EndProjectSection
3639
EndProject
3740
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "css", "css", "{72A05CD4-4462-4402-A972-49C30910EC82}"
3841
ProjectSection(SolutionItems) = preProject

docs/assets/icon.png

83.2 KB
Loading

src/LayeredCraft.Lambda.AspNetCore.HostingExtensions/LayeredCraft.Lambda.AspNetCore.HostingExtensions.csproj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,22 @@
66
<RootNamespace>LayeredCraft.Lambda.AspNetCore.Hosting</RootNamespace>
77
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
88
<LangVersion>default</LangVersion>
9+
<PackageId>LayeredCraft.Lambda.AspNetCore.HostingExtensions</PackageId>
10+
<Title>LayeredCraft.Lambda.AspNetCore.HostingExtensions</Title>
11+
<Description>Provides reusable AWS CDK constructs for serverless .NET applications, including Lambda functions with OpenTelemetry, IAM roles, and environment configuration. Built for LayeredCraft projects using AWS CDK in C#.</Description>
12+
<PackageTags>aws;cdk;lambda;constructs;dotnet;opentelemetry;infrastructure;cloudformation;layeredcraft</PackageTags>
13+
<PackageIcon>icon.png</PackageIcon>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
916
</PropertyGroup>
1017

1118
<ItemGroup>
1219
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.2.0" />
1320
<PackageReference Include="LayeredCraft.StructuredLogging" Version="1.1.1.8" />
1421
</ItemGroup>
22+
<ItemGroup>
23+
<None Include="..\..\docs\assets\icon.png" Pack="true" PackagePath="" Visible="False" />
24+
<None Include="..\..\README.md" Pack="true" PackagePath="" Visible="False" />
25+
</ItemGroup>
1526

1627
</Project>

0 commit comments

Comments
 (0)