Skip to content

Commit b069e17

Browse files
committed
fixup for docker build
Signed-off-by: Neil South <[email protected]>
1 parent f88af26 commit b069e17

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
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

+3-2
Original file line numberDiff line numberDiff line change
@@ -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,7 +85,7 @@
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" />
87-
<IOPligins Include="$(SolutionDir)/Plug-ins/RemoteAppExecution/bin/Debug/net6.0/Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
88+
<IOPligins Include="$(PublishDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
8889
</ItemGroup>
8990
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(PublishDir)\plug-ins\" SkipUnchangedFiles="true" />
9091
<Message Text="Files copied successfully to $(PublishDir)\plug-ins\." Importance="high" />
@@ -93,7 +94,7 @@
9394
<Target Name="CopyPluginsBuild" AfterTargets="Build">
9495
<ItemGroup>
9596
<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" />
97+
<IOPligins Include="$(OutDir)Monai.Deploy.InformaticsGateway.PlugIns.RemoteAppExecution.dll" />
9798
</ItemGroup>
9899
<Copy SourceFiles="@(PluginDlls);@(IOPligins)" DestinationFolder="$(OutDir)\plug-ins\" SkipUnchangedFiles="true" />
99100
<Message Text="Files copied successfully to $(OutDir)\plug-ins\." Importance="high" />

0 commit comments

Comments
 (0)