Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ on:
permissions: write-all
jobs:
build:
uses: LayeredCraft/devops-templates/.github/workflows/package-build.yaml@v6.1
uses: LayeredCraft/devops-templates/.github/workflows/package-build.yaml@v6.2
with:
hasTests: true
useMtpRunner: true
testDirectory: "test"
dotnet-version: |
8.0.x
9.0.x
10.0.x
secrets: inherit
5 changes: 3 additions & 2 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
permissions: write-all
jobs:
build:
uses: LayeredCraft/devops-templates/.github/workflows/pr-build.yaml@v6.1
uses: LayeredCraft/devops-templates/.github/workflows/pr-build.yaml@v6.2
with:
solution: LayeredCraft.Lambda.AspNetCore.HostingExtensions.sln
solution: LayeredCraft.Lambda.AspNetCore.HostingExtensions.slnx
hasTests: true
useMtpRunner: true
testDirectory: "test"
Expand All @@ -18,5 +18,6 @@ jobs:
dotnetVersion: |
8.0.x
9.0.x
10.0.x
Comment thread
ncipollina marked this conversation as resolved.
runCdk: false
secrets: inherit
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>
<!-- SPDX license identifier for MIT -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>

Expand Down
103 changes: 0 additions & 103 deletions LayeredCraft.Lambda.AspNetCore.HostingExtensions.sln

This file was deleted.

42 changes: 42 additions & 0 deletions LayeredCraft.Lambda.AspNetCore.HostingExtensions.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<Solution>
<Configurations>
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/docs/">
<File Path="docs/index.md" />
<File Path="mkdocs.yml" />
<File Path="requirements.txt" />
</Folder>
<Folder Name="/docs/assets/">
<File Path="docs/assets/icon.png" />
</Folder>
<Folder Name="/docs/assets/css/">
<File Path="docs/assets/css/style.scss" />
</Folder>
<Folder Name="/docs/examples/">
<File Path="docs/examples/index.md" />
</Folder>
<Folder Name="/docs/middleware/">
<File Path="docs/middleware/lambda-timeout-middleware.md" />
</Folder>
<Folder Name="/git/">
<File Path=".github/dependabot.yml" />
<File Path=".github/workflows/build.yaml" />
<File Path=".github/workflows/docs.yml" />
<File Path=".github/workflows/pr-build.yaml" />
<File Path=".gitignore" />
</Folder>
<Folder Name="/Solution Items/">
<File Path="Directory.Build.props" />
<File Path="LICENSE" />
<File Path="README.md" />
</Folder>
<Folder Name="/src/">
<Project Path="src/LayeredCraft.Lambda.AspNetCore.HostingExtensions/LayeredCraft.Lambda.AspNetCore.HostingExtensions.csproj" />
</Folder>
<Folder Name="/test/">
<Project Path="test/LayeredCraft.Lambda.AspNetCore.HostingExtensions.Tests/LayeredCraft.Lambda.AspNetCore.HostingExtensions.Tests.csproj" />
</Folder>
</Solution>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>LayeredCraft.Lambda.AspNetCore.Hosting</RootNamespace>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>default</LangVersion>
<PackageId>LayeredCraft.Lambda.AspNetCore.HostingExtensions</PackageId>
<Title>LayeredCraft.Lambda.AspNetCore.HostingExtensions</Title>
Expand All @@ -17,7 +17,7 @@

<ItemGroup>
<PackageReference Include="Amazon.Lambda.AspNetCoreServer" Version="9.2.0" />
<PackageReference Include="LayeredCraft.StructuredLogging" Version="1.1.1.8" />
<PackageReference Include="LayeredCraft.StructuredLogging" Version="1.1.3.11" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\docs\assets\icon.png" Pack="true" PackagePath="" Visible="False" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RootNamespace>LayeredCraft.Lambda.AspNetCore.HostingExtensions.Tests</RootNamespace>
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>default</LangVersion>
<IsPackable>false</IsPackable>

Expand All @@ -26,12 +26,15 @@
<ItemGroup>
<PackageReference Include="AutoFixture.AutoNSubstitute" Version="4.18.1" />
<PackageReference Include="AutoFixture.Xunit3" Version="4.19.0" />
<PackageReference Include="AwesomeAssertions" Version="9.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.14.2" />
<PackageReference Include="AwesomeAssertions" Version="9.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="18.0.6" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit.v3" Version="3.0.1"/>
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4"/>
<PackageReference Include="xunit.v3" Version="3.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down