Skip to content

Commit

Permalink
issue #3617 (#3618)
Browse files Browse the repository at this point in the history
Fixes #3617

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
  • Loading branch information
freddydk and freddydk committed Aug 21, 2024
1 parent 749e430 commit e60f951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CompilerFolderHandling/New-BcCompilerFolder.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ try {
$testAssembliesFolder = Join-Path $platformArtifactPath "Test Assemblies" -Resolve
$testAssembliesDestination = Join-Path $dllsPath "Test Assemblies"
New-Item -Path $testAssembliesDestination -ItemType Directory | Out-Null
Copy-Item -Path (Join-Path $testAssembliesFolder 'Newtonsoft.Json.dll') -Destination $testAssembliesDestination -Force
Copy-Item -Path (Join-Path $testAssembliesFolder 'Newtonsoft.Json.dll') -Destination $testAssembliesDestination -Force -ErrorAction SilentlyContinue
Copy-Item -Path (Join-Path $testAssembliesFolder 'Microsoft.Dynamics.Framework.UI.Client.dll') -Destination $testAssembliesDestination -Force
$mockAssembliesFolder = Join-Path $testAssembliesFolder "Mock Assemblies" -Resolve
Copy-Item -Path $mockAssembliesFolder -Filter '*.dll' -Destination $dllsPath -Recurse
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
6.0.21
Issue #3617 Regression File Newtonsoft.Json.dll not found when copying item for New-BcCompilerFolder

6.0.20
Add trustServerCertificate is the parameter exists in various functions that might be running on the host
Expand Down

0 comments on commit e60f951

Please sign in to comment.