Skip to content

Commit

Permalink
Fix microbuild for VBCSCompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
khyperia committed Dec 7, 2017
1 parent b5c8c9a commit 71a7653
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions build/config/SignToolData.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"Dlls\\XamlVisualStudio\\*\\Microsoft.VisualStudio.LanguageServices.Xaml.resources.dll",
"Exes\\InteractiveHost\\InteractiveHost.exe",
"Exes\\VBCSCompiler\\net46\\VBCSCompiler.exe",
"Exes\\VBCSCompiler\\netcoreapp2.0\\VBCSCompiler.dll",
"Exes\\csc\\net46\\csc.exe",
"Exes\\csc\\netcoreapp2.0\\csc.dll",
"Exes\\csi\\net46\\csi.exe",
Expand Down
4 changes: 3 additions & 1 deletion build/scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,10 @@ function Build-ExtraSignArtifacts() {
# Publish the CoreClr projects (CscCore and VbcCore) and dependencies for later NuGet packaging.
Write-Host "Publishing csc"
Run-MSBuild "..\Compilers\CSharp\csc\csc.csproj" "/p:TargetFramework=netcoreapp2.0 /t:PublishWithoutBuilding"
Write-Host "Publishing csc"
Write-Host "Publishing vbc"
Run-MSBuild "..\Compilers\VisualBasic\vbc\vbc.csproj" "/p:TargetFramework=netcoreapp2.0 /t:PublishWithoutBuilding"
Write-Host "Publishing VBCSCompiler"
Run-MSBuild "..\Compilers\Server\VBCSCompiler\VBCSCompiler.csproj" "/p:TargetFramework=netcoreapp2.0 /t:PublishWithoutBuilding"

$dest = @(
$configDir,
Expand Down

0 comments on commit 71a7653

Please sign in to comment.