We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running the Azure DevOps pipeline, the build fails with the following error:
However, the code compiles and runs successfully in my local Visual Studio environment.
The pipeline should build successfully, just as it does locally.
The build agent in Azure DevOps fails with CS1061, indicating that State.Test is not found.
State.Test
Currently, I am using the following workaround:
await Mediatr.Send(new State.StaticClass.Action(object));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When running the Azure DevOps pipeline, the build fails with the following error:
However, the code compiles and runs successfully in my local Visual Studio environment.
Steps to Reproduce
Expected Behavior
The pipeline should build successfully, just as it does locally.
Actual Behavior
The build agent in Azure DevOps fails with CS1061, indicating that
State.Test
is not found.Workaround
Currently, I am using the following workaround:
The text was updated successfully, but these errors were encountered: