8 lines
181 B
PowerShell
8 lines
181 B
PowerShell
param($installPath, $toolsPath, $package, $project)
|
|
|
|
$ref = $project.Object.References.Item("WordApi")
|
|
if ($ref -and $ref.EmbedInteropTypes)
|
|
{
|
|
$ref.EmbedInteropTypes = $false
|
|
}
|