Upsdate 20240729

This commit is contained in:
Stefan Hutter
2024-07-29 15:00:22 +02:00
parent c3cacbec3c
commit dc2918e024
121 changed files with 329689 additions and 53 deletions

View File

@@ -0,0 +1,19 @@
param($installPath, $toolsPath, $package, $project)
$ref = $project.Object.References.Item("NetOffice")
if ($ref -and $ref.EmbedInteropTypes)
{
$ref.EmbedInteropTypes = $false
}
$ref = $project.Object.References.Item("OfficeApi")
if ($ref -and $ref.EmbedInteropTypes)
{
$ref.EmbedInteropTypes = $false
}
$ref = $project.Object.References.Item("VBIDEApi")
if ($ref -and $ref.EmbedInteropTypes)
{
$ref.EmbedInteropTypes = $false
}