-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supporting .NET8 updates #1
Conversation
Exception is batch because Swashbuckle does not support net8
Batch uses Swashbuckle net6 dlls
With special net6 install for batch project Signed-off-by: Phillip Ngan <[email protected]>
Signed-off-by: Paul Yuknewicz <[email protected]>
Signed-off-by: Paul Yuknewicz <[email protected]>
Signed-off-by: Paul Yuknewicz <[email protected]>
@@ -34,15 +34,15 @@ Run the `SmartDevice.Service`, which will start service itself and the Dapr side | |||
<!-- STEP | |||
name: Run actor service | |||
expected_stdout_lines: | |||
- "Request finished HTTP/1.1 GET http://127.0.0.1:5001/healthz - - - 200" | |||
- "Request finished HTTP/1.1 GET http://127.0.0.1:5001/healthz - 200" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the line of output from healthz that changed, causing our tests to fail. by changing the expected out we fix it back up again.
@@ -1,5 +1,5 @@ | |||
DAPR_CLI_VERSION: 1.12.0 | |||
DAPR_RUNTIME_VERSION: 1.13.0-rc.2 | |||
DAPR_RUNTIME_VERSION: 1.13.0-rc.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hopefully this avoids a merge conflict with release-1.13.
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed with .NET SDK maintainers in Dapr and they agree with this. Also tests pass.
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed with .NET SDK maintainers in Dapr and they agree with this. Also tests pass.
05fce33
to
78f35dc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Phillip Ngan <[email protected]>
Description
These complementary updates do the following:
dapr run
commands (no more path not found)Issue reference
#980
#987
Checklist
Please make sure you've completed the relevant tasks for this PR, out of the following list: