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

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

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
}

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

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