Skip to content

Commit d619c62

Browse files
authored
Merge pull request #456 from Project-MONAI/nds-fix-IOPlugin-copy
Include Plug-ins in Build
2 parents 2eacbce + b069e17 commit d619c62

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.dockerignore

100644100755
+6-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,9 @@ bld/
7373
# files ending in .cache can be ignored
7474
*.[Cc]ache
7575
# but keep track of directories ending in .cache
76-
!*.[Cc]ache/
76+
!*.[Cc]ache/
77+
78+
docker-compose/
79+
doc
80+
guidlines
81+
tests

src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj

+6-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");
@@ -73,6 +73,7 @@
7373
<ProjectReference Include="..\Database\EntityFramework\Monai.Deploy.InformaticsGateway.Database.EntityFramework.csproj" />
7474
<ProjectReference Include="..\Database\Monai.Deploy.InformaticsGateway.Database.csproj" />
7575
<ProjectReference Include="..\DicomWebClient\Monai.Deploy.InformaticsGateway.DicomWeb.Client.csproj" />
76+
<ProjectReference Include="..\Plug-ins\RemoteAppExecution\Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.csproj" />
7677
</ItemGroup>
7778

7879
<ItemGroup>
@@ -84,16 +85,18 @@
8485
<Target Name="CopyPlugins" AfterTargets="Publish">
8586
<ItemGroup>
8687
<PluginDlls Include="$(PublishDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(PublishDir)Monai.Deploy.Storage.MinIO.dll;$(PublishDir)Minio.dll" />
88+
<IOPligins Include="$(PublishDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
8789
</ItemGroup>
88-
<Copy SourceFiles="@(PluginDlls)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
90+
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
8991
<Message Text="Files copied successfully to $(PublishDir)\plug-ins\." Importance="high" />
9092
</Target>
9193

9294
<Target Name="CopyPluginsBuild" AfterTargets="Build">
9395
<ItemGroup>
9496
<PluginDlls Include="$(OutDir)Monai.Deploy.Messaging.RabbitMQ.dll;$(OutDir)Monai.Deploy.Storage.MinIO.dll;$(OutDir)Minio.dll" />
97+
<IOPligins Include="$(OutDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
9598
</ItemGroup>
96-
<Copy SourceFiles="@(PluginDlls)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
99+
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
97100
<Message Text="Files copied successfully to $(OutDir)\plug-ins\." Importance="high" />
98101
</Target>
99102

0 commit comments

Comments
 (0)