-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- PSFzf.dll is no longer missing ReverseLineReader - add back unit test to make sure type loads
- Loading branch information
1 parent
a15e55d
commit 0879d47
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
$ErrorActionPreference = "Stop" | ||
|
||
$env:DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
dotnet build --configuration Release --output . .\PSFzf-Binary\PSFzf-Binary.csproj | ||
dotnet build --configuration Release PSFzf.sln | ||
$dllPaths = Get-ChildItem PSFzf.dll -Recurse | ||
if ($null -eq $dllPaths) { | ||
throw 'Unable to find PSFzf.dll' | ||
} | ||
Copy-Item $dllPaths[0].FullName . -Force -Verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters