feat: Add csharp support to repo_map (#1073)

This commit is contained in:
Kostiantyn Sharovarskyi
2025-01-14 14:12:10 +02:00
committed by GitHub
parent 2d5306b55c
commit 143519abae
6 changed files with 190 additions and 0 deletions

View File

@@ -20,8 +20,10 @@ function Build-FromSource($feature) {
$SCRIPT_DIR = $PSScriptRoot
$targetTokenizerFile = "avante_tokenizers.dll"
$targetTemplatesFile = "avante_templates.dll"
$targetRepoMapFile = "avante_repo_map.dll"
Copy-Item (Join-Path $SCRIPT_DIR "target\release\avante_tokenizers.dll") (Join-Path $BuildDir $targetTokenizerFile)
Copy-Item (Join-Path $SCRIPT_DIR "target\release\avante_templates.dll") (Join-Path $BuildDir $targetTemplatesFile)
Copy-Item (Join-Path $SCRIPT_DIR "target\release\avante_repo_map.dll") (Join-Path $BuildDir $targetRepoMapFile)
Remove-Item -Recurse -Force "target"
}