-
Notifications
You must be signed in to change notification settings - Fork 138
Closed
Labels
area-product-experienceImprovements in the end-user's product experienceImprovements in the end-user's product experience
Description
When running sdk commands (e.g. dotnet build/dotnet publish) on rhel released 2.1.300 sdk, it prints out a message:
You are working with a preview version of the .NET Core SDK. You
can define the SDK version via a global.json file in the current
project. More at https://go.microsoft.com/fwlink/?linkid=869452
This is due to:
./sdk/2.1.300/Microsoft.NETCoreSdk.BundledVersions.props: <_NETCoreSdkIsPreview>true</_NETCoreSdkIsPreview>
In our repos/cli.proj we have:
<EnvironmentVariables Include="DropSuffix=true" />and in src/cli/build/MSBuildExtensions.targets we have:
<_NETCoreSdkIsPreview Condition=" '$(DropSuffix)' != 'true' ">true</_NETCoreSdkIsPreview>So it's not clear for me where things go wrong.
Metadata
Metadata
Labels
area-product-experienceImprovements in the end-user's product experienceImprovements in the end-user's product experience