I am going through The BIML Book. I'm in chapter 3, page 90 (based on my PDF, purchase from APress).
I'm using SSDT/Visual Studio 2013 (Target SSIS Version: 2014) BIML Express 2018
I've got 3 BIML files that I've manually troubleshot:
1-2-CreateEnvironment.biml
1-2-CreateBimlTableObject.biml
x-2-CreateLoadPackage.biml
I've already done build 1, to generate (and subsequently executed) the DeployTable.dtsx file.
I'm trying to get all of the staging load packages described at the bottom of page 90, and in figure 3-34.
The issue is that the packages never get generated. They never show up in my solution.
The BIML Compiler output window shows:
Expanding Biml
Biml expansion completed.
There are no errors in VS. I've tried running VS as admin (thought maybe it possibly a permissions issue to write to disk) I've added an additional BIML file for logging the BIML Compiler details to a file.
That BIML is as follows:
<#@ template tier="1" #>
<#@ import namespace="Varigence.Utility.Logging" #>
<#
var loggingManager = new LoggingManager(Logging.LoggingMode.File) {
IsEnabled = true, LogFilePath = @"C:\temp\log.txt" };
LoggingManager.RegisterDefaultLoggingManager(loggingManager);
#>
Just wondering what I'm doing wrong, if anything. Do I need to use VS 2017?
multi-select the files in Solution Explorer, right-click, and click Generate SSIS Packages
– billinkc