Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/nuget/xunit-2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marklechtermann committed Dec 12, 2023
2 parents 2dbf96a + 9d28203 commit 987b7de
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,23 @@
<_DsComArguments> $(_DsComArguments) $(_DsComAssemblyReferences)</_DsComArguments>
<_DsComArguments> $(_DsComArguments) $(_DsComTypeLibraryReferences)</_DsComArguments>
<_DsComArguments> $(_DsComArguments) $(_DsComTypeLibraryReferencePaths)</_DsComArguments>
<_DsComArguments> $(_DsComArguments) $(_DsComExportTypeLibraryAssemblyFile)</_DsComArguments>
<_DsComArguments> $(_DsComArguments) "$(_DsComExportTypeLibraryAssemblyFile)"</_DsComArguments>
<_DsComArguments> $(_DsComArguments) $(_DsComAliasNames)</_DsComArguments>
<_DsComArguments Condition="'$(DsComOverideLibraryName)' != ''"> $(_DsComArguments) --overridename "$(DsComOverideLibraryName)"</_DsComArguments>
<_DsComArguments> $(_DsComArguments) --out "$(_DsComExportTypeLibraryTargetFile)"</_DsComArguments>
<_DsComWorkingDir>$(OutDir)</_DsComWorkingDir>
<_DsComWorkingDir Condition="$(_DsComWorkingDir) == ''">$(OutputPath)</_DsComWorkingDir>
</PropertyGroup>

<Message Importance="High" Text="Calling dscom.exe to export type library" />
<Message Importance="Low" Text="Using arguments '$(_DsComArguments)' to call dscom" />

<Exec Command="$(_DsComToolsFileDir)dscom.exe $(_DsComArguments)"
<Exec Command='"$(_DsComToolsFileDir)dscom.exe" $(_DsComArguments)'
ConsoleToMsBuild="true"
StdErrEncoding="UTF-8"
StdOutEncoding="UTF-8"
IgnoreExitCode="false"
WorkingDirectory="$(OutputPath)" />
WorkingDirectory="$(_DsComWorkingDir)" />

<Warning Code="DSCOM001" Text="Could not find the type library at the following location: '$(_DsComExportTypeLibraryTargetFile)'" Condition="!Exists('$(_DsComExportTypeLibraryTargetFile)')" />
</Target>
Expand Down

0 comments on commit 987b7de

Please sign in to comment.