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
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ on:
permissions: write-all
jobs:
build:
uses: LayeredCraft/devops-templates/.github/workflows/package-build.yaml@v5.0
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
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pr-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ on:
permissions: write-all
jobs:
build:
uses: LayeredCraft/devops-templates/.github/workflows/pr-build.yaml@v5.0
uses: LayeredCraft/devops-templates/.github/workflows/pr-build.yaml@v6.2
with:
solution: LayeredCraft.Cdk.Constructs.sln
solution: LayeredCraft.Cdk.Constructs.slnx
hasTests: true
useMtpRunner: true
testDirectory: "test"
dotnetVersion: |
8.0.x
9.0.x
10.0.x
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>2.1.1</VersionPrefix>
<VersionPrefix>2.1.2</VersionPrefix>
<!-- SPDX license identifier for MIT -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>

Expand Down
92 changes: 0 additions & 92 deletions LayeredCraft.Cdk.Constructs.sln

This file was deleted.

43 changes: 43 additions & 0 deletions LayeredCraft.Cdk.Constructs.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<Solution>
<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/constructs/">
<File Path="docs/constructs/dynamodb-table.md" />
<File Path="docs/constructs/lambda-function.md" />
<File Path="docs/constructs/static-site.md" />
</Folder>
<Folder Name="/docs/examples/">
<File Path="docs/examples/index.md" />
</Folder>
<Folder Name="/docs/testing/">
<File Path="docs/testing/index.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="CLAUDE.md" />
<File Path="Directory.Build.props" />
<File Path="LICENSE" />
<File Path="README.md" />
</Folder>
<Folder Name="/src/">
<Project Path="src/LayeredCraft.Cdk.Constructs/LayeredCraft.Cdk.Constructs.csproj" />
</Folder>
<Folder Name="/test/">
<Project Path="test/LayeredCraft.Cdk.Constructs.Tests/LayeredCraft.Cdk.Constructs.Tests.csproj" />
</Folder>
</Solution>
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public class MyStack : Stack
```csharp
var website = new StaticSiteConstruct(this, "Website", new StaticSiteConstructProps
{
SiteBucketName = "my-website-bucket",
DomainName = "example.com",
SiteSubDomain = "www",
AssetPath = "./website-build"
Expand Down Expand Up @@ -171,4 +170,4 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d

<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
Loading