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:
Leila Lali
2017-09-01 12:21:30 -07:00
committed by GitHub
parent 44d3e4b17e
commit 22ccac98ae
5 changed files with 55 additions and 12 deletions

View File

@@ -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);
}
}
}