generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Be able to specify dotnet version #439
Comments
Exactly. I will try. |
@morgan-cromell - name: Setup .NET
id: setup-dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x' # [3.1.x, 5.0.x, 6.0.x, 7.0.x, 8.0.x]
- name: Restore
run: dotnet restore
- name: Inspect code
uses: muno92/resharper_inspectcode@v1
with:
solutionPath: ./YourSolution.sln
dotnetVersion: ${{ steps.setup-dotnet.outputs.dotnet-version }}
Is this OK? |
Ah great! Thank you ❤️ |
You're welcome! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have found no way to specify what dotnet version to use. Even if I run the
setup-dotnet
action using 7.0.x it will run the inspect code with dotnet 8 which fails for us.The text was updated successfully, but these errors were encountered: