Skip to content
Open
Show file tree
Hide file tree
Changes from 5 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
11 changes: 11 additions & 0 deletions .autover/changes/8b04116b-c3f6-41c2-a66a-1c01859a0b0d.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

we don't need a change file for this change. We are not introducing a customer facing change.

"Projects": [
{
"Name": "AWS.Messaging",
"Type": "Patch",
"ChangelogMessages": [
"Switch solution to slnx format"
]
}
]
}
124 changes: 0 additions & 124 deletions AWS.Messaging.sln

This file was deleted.

25 changes: 25 additions & 0 deletions AWS.Messaging.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<Solution>
<Folder Name="/sampleapps/">
<Project Path="sampleapps/AppHost/AppHost.csproj" />
<Project Path="sampleapps/LambdaMessaging/LambdaMessaging.csproj" />
<Project Path="sampleapps/PollyIntegration/PollyIntegration.csproj" />
<Project Path="sampleapps/PublisherAPI/PublisherAPI.csproj" />
<Project Path="sampleapps/SubscriberService/SubscriberService.csproj" />
</Folder>
<Folder Name="/Solution Items/">
<File Path=".editorconfig" />
<File Path="README.md" />
</Folder>
<Folder Name="/src/">
<Project Path="src/AWS.Messaging.Lambda/AWS.Messaging.Lambda.csproj" />
<Project Path="src/AWS.Messaging.Telemetry.OpenTelemetry/AWS.Messaging.Telemetry.OpenTelemetry.csproj" />
<Project Path="src/AWS.Messaging/AWS.Messaging.csproj" />
</Folder>
<Folder Name="/test/">
<Project Path="test/AWS.Messaging.Benchmarks/AWS.Messaging.Benchmarks.csproj" />
<Project Path="test/AWS.Messaging.IntegrationTests/AWS.Messaging.IntegrationTests.csproj" />
<Project Path="test/AWS.Messaging.Tests.Common/AWS.Messaging.Tests.Common.csproj" />
<Project Path="test/AWS.Messaging.Tests.LambdaFunctions/AWS.Messaging.Tests.LambdaFunctions.csproj" />
<Project Path="test/AWS.Messaging.UnitTests/AWS.Messaging.UnitTests.csproj" />
</Folder>
</Solution>
8 changes: 4 additions & 4 deletions buildtools/ci.buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: 0.2
phases:
install:
runtime-versions:
dotnet: 8.x
dotnet: 10.x

build:
commands:
- dotnet build AWS.Messaging.sln -c Release
- dotnet test AWS.Messaging.sln -c Release --no-build --logger trx --results-directory ./testresults
- dotnet build AWS.Messaging.slnx -c Release
- dotnet test AWS.Messaging.slnx -c Release --no-build --logger trx --results-directory ./testresults
reports:
aws-dotnet-messaging-tests:
file-format: VisualStudioTrx
files:
- '**/*'
base-directory: './testresults'
base-directory: './testresults'
Loading