提交 600273b1 编写于 作者: T Tomáš Matoušek 提交者: GitHub

Merge pull request #14397 from tmat/IncludeVsdconfigFiles

Include .vsdconfig files in Roslyn CoreXT package
......@@ -782,9 +782,12 @@ Public Class BuildDevDivInsertionFiles
Dim relativeOutputFilePath = Path.Combine(GetExternalApiDirectory(), partFileName)
If processedFiles.Add(relativeOutputFilePath) Then
' paths are relative to input directory:
filesToInsert.Add(New NugetFileInfo(partFileName))
If processedFiles.Add(relativeOutputFilePath) Then
' In Razzle src\ArcProjects\debugger\ConcordSDK.targets references .vsdconfig files under LanguageServiceRegistration\ExpressionEvaluatorPackage
Dim target = If(Path.GetExtension(partFileName).Equals(".vsdconfig"), "LanguageServiceRegistration\ExpressionEvaluatorPackage", "")
filesToInsert.Add(New NugetFileInfo(partFileName, target))
AddXmlDocumentationFile(filesToInsert, partFileName)
End If
Next
......@@ -881,7 +884,7 @@ set DEVPATH=%RoslynToolsRoot%;%DEVPATH%"
Private Function IsLanguageServiceRegistrationFile(fileName As String) As Boolean
Select Case Path.GetExtension(fileName)
Case ".vsixmanifest", ".pkgdef", ".png", ".ico", ".vsdconfig"
Case ".vsixmanifest", ".pkgdef", ".png", ".ico"
Return True
Case Else
Return False
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册