|
2 | 2 | # On Windows paths is separated by semicolon |
3 | 3 | $script:TestModulePathSeparator = [System.IO.Path]::PathSeparator |
4 | 4 |
|
5 | | -$dotnetCLIChannel = "preview" |
6 | | -$dotnetCLIRequiredVersion = "2.0.0-preview2-006502" |
| 5 | +$dotnetCLIChannel = "release" |
| 6 | +$dotnetCLIRequiredVersion = "2.0.0" |
7 | 7 |
|
8 | 8 | # Track if tags have been sync'ed |
9 | 9 | $tagsUpToDate = $false |
@@ -490,12 +490,6 @@ Fix steps: |
490 | 490 | Pop-Location |
491 | 491 | } |
492 | 492 |
|
493 | | - # add 'x' permission when building the standalone application |
494 | | - # this is temporary workaround to a bug in dotnet.exe, tracking by dotnet/cli issue #6286 |
495 | | - if ($Options.Configuration -eq "Linux") { |
496 | | - chmod u+x $Options.Output |
497 | | - } |
498 | | - |
499 | 493 | # publish netcoreapp2.0 reference assemblies |
500 | 494 | try { |
501 | 495 | Push-Location "$PSScriptRoot/src/TypeCatalogGen" |
@@ -798,12 +792,6 @@ function Publish-PSTestTools { |
798 | 792 | dotnet publish --output bin --configuration $Options.Configuration --framework $Options.Framework --runtime $Options.Runtime |
799 | 793 | $toolPath = Join-Path -Path $tool.Path -ChildPath "bin" |
800 | 794 |
|
801 | | - # add 'x' permission when building the standalone application |
802 | | - # this is temporary workaround to a bug in dotnet.exe, tracking by dotnet/cli issue #6286 |
803 | | - if ($Options.Configuration -eq "Linux") { |
804 | | - $executable = Join-Path -Path $toolPath -ChildPath "$($tool.Output)" |
805 | | - chmod u+x $executable |
806 | | - } |
807 | 795 | if ( $env:PATH -notcontains $toolPath ) { |
808 | 796 | $env:PATH = $toolPath+$TestModulePathSeparator+$($env:PATH) |
809 | 797 | } |
@@ -1844,12 +1832,6 @@ function Start-CrossGen { |
1844 | 1832 | } |
1845 | 1833 | Write-Verbose "Matched CrossGen.exe: $crossGenPath" -Verbose |
1846 | 1834 |
|
1847 | | - # 'x' permission is not set for packages restored on Linux/OSX. |
1848 | | - # this is temporary workaround to a bug in dotnet.exe, tracking by dotnet/cli issue #6286 |
1849 | | - if ($Environment.IsLinux -or $Environment.IsOSX) { |
1850 | | - chmod u+x $crossGenPath |
1851 | | - } |
1852 | | - |
1853 | 1835 | # Crossgen.exe requires the following assemblies: |
1854 | 1836 | # mscorlib.dll |
1855 | 1837 | # System.Private.CoreLib.dll |
|
0 commit comments