We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b9c1e4 commit 36b9ecfCopy full SHA for 36b9ecf
.github/workflows/deploy-docs.yml
@@ -36,18 +36,6 @@ jobs:
36
- uses: actions/setup-dotnet@v1
37
with:
38
dotnet-version: '5.0.100-rc.1.20452.10'
39
- - name: DOTNET HACK
40
- shell: pwsh
41
- run: |
42
- $version = Split-Path (Split-Path $ENV:DOTNET_ROOT -Parent) -Leaf;
43
- $root = Split-Path (Split-Path $ENV:DOTNET_ROOT -Parent) -Parent;
44
- $directories = Get-ChildItem $root | Where-Object { $_.Name -ne $version };
45
- foreach ($dir in $directories) {
46
- $from = $dir.FullName;
47
- $to = "$root/$version";
48
- Write-Host Copying from $from to $to;
49
- Copy-Item "$from\*" $to -Recurse -Force;
50
- }
51
52
- name: Building library
53
run: dotnet build /p:PublicRelease=true
0 commit comments