-
Notifications
You must be signed in to change notification settings - Fork 387
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
disable .NET interactive first run experience #929
Conversation
azure-pipelines.yml
Outdated
@@ -84,8 +84,8 @@ stages: | |||
inputs: | |||
versionSpec: $(NodeJSVersion) | |||
|
|||
- task: UseDotNet@2 | |||
displayName: Add dotnet 3.0 | |||
- task: UseDotNet@5 |
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.
Why not call this something like AddDotNetSDK
so the naming is more durable?
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.
sounds ok
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.
The task UseDotNet@2
should stay the same. UseDotNet
is the name of an Azure DevOps thing that we don't control and @2
is their plugin/action version that we also don't control. The only thing you can and should change is the displayName
field.
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.
done
df67c20
to
355629b
Compare
@@ -196,7 +196,7 @@ stages: | |||
versionSpec: $(NodeJSVersion) | |||
|
|||
- task: UseDotNet@2 | |||
displayName: Add dotnet | |||
displayName: Use .NET SDK |
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.
Some say Use .NET SDK
and others Use .NET SDK 5.0
. I'd prefer simply Use .NET SDK
since the version will eventually change again, but ultimately I don't care too much.
a080fa1
to
60ce77e
Compare
No description provided.