mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-28 17:24:27 -05:00
creating one package which includes sqltoolsservice and credential service (#444)
* creating one package which includes sqltoolsservice and credential service * adding logDir arg to credentials program
This commit is contained in:
@@ -102,12 +102,13 @@ void CopyEulas(string runtime, string framework, string contentFolder, string pa
|
||||
"*.RTF",
|
||||
SearchOption.AllDirectories).ToList();
|
||||
|
||||
foreach (var file in files) {
|
||||
System.IO.File.Copy(
|
||||
file,
|
||||
System.IO.Path.Combine(
|
||||
contentFolder,
|
||||
System.IO.Path.GetFileName(file)));
|
||||
foreach (var file in files)
|
||||
{
|
||||
var dest = System.IO.Path.Combine(contentFolder, System.IO.Path.GetFileName(file));
|
||||
if (!System.IO.File.Exists(dest))
|
||||
{
|
||||
System.IO.File.Copy(file, dest);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user