提交 e54f2985 编写于 作者: A Andy Gocke 提交者: GitHub

Missed adding the facades in a few places (#13549)

上级 ea8e30d6
......@@ -49,8 +49,10 @@
<SystemRuntimeLoaderVersion>4.0.0</SystemRuntimeLoaderVersion>
<SystemRuntimeNumericsVersion>4.0.1</SystemRuntimeNumericsVersion>
<SystemSecurityAccessControlVersion>4.0.0</SystemSecurityAccessControlVersion>
<SystemSecurityClaimsVersion>4.0.1</SystemSecurityClaimsVersion>
<SystemSecurityCryptographyAlgorithmsVersion>4.2.0</SystemSecurityCryptographyAlgorithmsVersion>
<SystemSecurityCryptographyEncodingVersion>4.0.0</SystemSecurityCryptographyEncodingVersion>
<SystemSecurityCryptographyPrimitivesVersion>4.0.0</SystemSecurityCryptographyPrimitivesVersion>
<SystemSecurityCryptographyX509CertificatesVersion>4.1.0</SystemSecurityCryptographyX509CertificatesVersion>
<SystemSecurityPrincipalWindowsVersion>4.0.0</SystemSecurityPrincipalWindowsVersion>
<SystemTextEncodingVersion>4.0.11</SystemTextEncodingVersion>
......
......@@ -37,7 +37,7 @@ Public Class BuildDevDivInsertionFiles
Public Shared Function Main(args As String()) As Integer
If args.Length <> 5 Then
Console.WriteLine("Expected arguments: <bin dir> <setup dir> <nuget root dir> <assembly version>")
Console.WriteLine("Expected arguments: <bin dir> <setup dir> <nuget root dir> <assembly version> <interactive window version>")
Return 1
End If
......@@ -101,9 +101,19 @@ Public Class BuildDevDivInsertionFiles
"Microsoft.DiaSymReader.Native.x86.dll",
"System.AppContext.dll",
"System.Console.dll",
"System.Diagnostics.Process.dll",
"System.Diagnostics.StackTrace.dll",
"System.IO.Pipes.dll",
"System.IO.FileSystem.dll",
"System.IO.FileSystem.DriveInfo.dll",
"System.IO.FileSystem.Primitives.dll",
"System.Runtime.InteropServices.RuntimeInformation.dll",
"System.Security.AccessControl.dll",
"System.Security.Claims.dll",
"System.Security.Cryptography.Algorithms.dll",
"System.Security.Cryptography.Primitives.dll",
"System.Security.Principal.Windows.dll",
"System.Threading.Thread.dll",
"csc.exe",
"csc.exe.config",
"csc.rsp",
......@@ -388,7 +398,7 @@ Public Class BuildDevDivInsertionFiles
Next
' Add just the compiler files to a separate compiler nuspec
GenerateRoslynCompilerNuSpec(filesToInsert)
GenerateRoslynCompilerNuSpec(CompilerFiles)
' Copy over the files in the NetFX20 subdirectory (identical, except for references and Authenticode signing).
' These are for msvsmon, whose setup authoring is done by the debugger.
......@@ -832,7 +842,7 @@ Public Class BuildDevDivInsertionFiles
Return fileName.StartsWith("Microsoft.VisualStudio.LanguageServices.")
End Function
Private Sub GenerateRoslynCompilerNuSpec(filesToInsert As List(Of NugetFileInfo))
Private Sub GenerateRoslynCompilerNuSpec(filesToInsert As String())
Const PackageName As String = "VS.Tools.Roslyn"
Dim xml = <?xml version="1.0" encoding="utf-8"?>
......@@ -846,9 +856,9 @@ Public Class BuildDevDivInsertionFiles
</metadata>
<files>
<%= filesToInsert.
OrderBy(Function(f) f.Path).
OrderBy(Function(f) f).
Distinct().
Select(Function(f) <file src=<%= f.Path %> target=<%= f.Target %> xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"/>) %>
Select(Function(f) <file src=<%= f %> xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"/>) %>
</files>
</package>
......
......@@ -8,9 +8,19 @@
"ManagedEsent": "1.9.4",
"System.AppContext": "4.1.0",
"System.Console": "4.0.0",
"System.Diagnostics.Process": "4.1.0",
"System.Diagnostics.StackTrace": "4.0.1",
"System.IO.Pipes": "4.0.0",
"System.IO.FileSystem": "4.0.1",
"System.IO.FileSystem.Primitives": "4.0.1"
"System.IO.FileSystem.DriveInfo": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.1",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Security.AccessControl": "4.0.0",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Principal.Windows": "4.0.0",
"System.Threading.Thread": "4.0.0"
},
"frameworks": {
"net46": {}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册