Skip to content

Commit f88af26

Browse files
committed
change so that publish and build copy the new plugin assembly RemoteAppExecution.dll across
Signed-off-by: Neil South <[email protected]>
1 parent 2eacbce commit f88af26

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
@@ -84,16 +84,18 @@
8484
<Target Name="CopyPlugins" AfterTargets="Publish">
8585
<ItemGroup>
8686
<PluginDlls Include="$(PublishDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(PublishDir)Monai.Deploy.Storage.MinIO.dll;$(PublishDir)Minio.dll" />
87+
<IOPligins Include="$(SolutionDir)/Plug-ins/RemoteAppExecution/bin/Debug/net6.0/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
8788
</ItemGroup>
88-
<Copy SourceFiles="@(PluginDlls)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
89+
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
8990
<Message Text="Files copied successfully to $(PublishDir)\plug-ins\." Importance="high" />
9091
</Target>
9192

9293
<Target Name="CopyPluginsBuild" AfterTargets="Build">
9394
<ItemGroup>
9495
<PluginDlls Include="$(OutDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(OutDir)Monai.Deploy.Storage.MinIO.dll;$(OutDir)Minio.dll" />
96+
<IOPligins Include="$(SolutionDir)/Plug-ins/RemoteAppExecution/bin/Debug/net6.0/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
9597
</ItemGroup>
96-
<Copy SourceFiles="@(PluginDlls)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
98+
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
9799
<Message Text="Files copied successfully to $(OutDir)\plug-ins\." Importance="high" />
98100
</Target>
99101

0 commit comments

Comments
 (0)