Revert "Revert "[release/6.0.1xx] Switch to stable RTM branding"" (#12471)
* Revert "Revert "[release/6.0.1xx] Switch to stable RTM branding" (#12470)"
This reverts commit 2bca7f450a
.
* Workaround F# failures in tests
* No need for feed
This commit is contained in:
parent
228b577bf4
commit
2736213c68
3 changed files with 8 additions and 7 deletions
|
@ -14,7 +14,7 @@
|
||||||
<MajorMinorVersion>$(VersionMajor).$(VersionMinor)</MajorMinorVersion>
|
<MajorMinorVersion>$(VersionMajor).$(VersionMinor)</MajorMinorVersion>
|
||||||
<CliProductBandVersion>$(MajorMinorVersion).$(VersionSDKMinor)</CliProductBandVersion>
|
<CliProductBandVersion>$(MajorMinorVersion).$(VersionSDKMinor)</CliProductBandVersion>
|
||||||
<!-- Enable to remove prerelease label. -->
|
<!-- Enable to remove prerelease label. -->
|
||||||
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
|
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion>
|
||||||
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
|
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
@ -412,6 +412,13 @@ namespace EndToEnd.Tests
|
||||||
{
|
{
|
||||||
buildArgs += $" --framework {framework}";
|
buildArgs += $" --framework {framework}";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove this (or formalize it) after https://github.com/dotnet/installer/issues/12479 is resolved.
|
||||||
|
if (language == "F#")
|
||||||
|
{
|
||||||
|
buildArgs += $" /p:_NETCoreSdkIsPreview=true";
|
||||||
|
}
|
||||||
|
|
||||||
string dotnetRoot = Path.GetDirectoryName(RepoDirectoriesProvider.DotnetUnderTest);
|
string dotnetRoot = Path.GetDirectoryName(RepoDirectoriesProvider.DotnetUnderTest);
|
||||||
new BuildCommand()
|
new BuildCommand()
|
||||||
.WithEnvironmentVariable("PATH", dotnetRoot) // override PATH since razor rely on PATH to find dotnet
|
.WithEnvironmentVariable("PATH", dotnetRoot) // override PATH since razor rely on PATH to find dotnet
|
||||||
|
|
|
@ -162,12 +162,6 @@
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<configuration>
|
<configuration>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
|
|
||||||
<add key="dotnet-windowsdesktop" value="https://dotnetfeed.blob.core.windows.net/dotnet-windowsdesktop/index.json" />
|
|
||||||
<add key="aspnet-aspnetcore" value="https://dotnetfeed.blob.core.windows.net/aspnet-aspnetcore/index.json" />
|
|
||||||
<add key="aspnet-aspnetcore-tooling" value="https://dotnetfeed.blob.core.windows.net/aspnet-aspnetcore-tooling/index.json" />
|
|
||||||
<add key="aspnet-entityframeworkcore" value="https://dotnetfeed.blob.core.windows.net/aspnet-entityframeworkcore/index.json" />
|
|
||||||
<add key="aspnet-extensions" value="https://dotnetfeed.blob.core.windows.net/aspnet-extensions/index.json" />
|
|
||||||
</packageSources>
|
</packageSources>
|
||||||
</configuration>
|
</configuration>
|
||||||
]]>
|
]]>
|
||||||
|
|
Loading…
Reference in a new issue