fly 2 years ago
parent
commit
8ea54a525a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Publish.ps1
  2. 1 1
      src/Publish.ps1

+ 1 - 1
Publish.ps1

@@ -18,7 +18,7 @@ Function BuildService($serviceName, $copyDll, $copyXml=0, $servicePath='', $copy
     }
     }
     if($copyXml -eq 1)
     if($copyXml -eq 1)
     {
     {
-        Copy-Item -recurse -Force $servicePath/bin/Debug/net6.0/publish/$serviceName.xml -Destination $copyDest/$serviceName.xml     
+        Copy-Item -recurse -Force $servicePath/bin/Debug/netstandard2.0/publish/$serviceName.xml -Destination $copyDest/$serviceName.xml     
     }
     }
 }
 }
 
 

+ 1 - 1
src/Publish.ps1

@@ -18,7 +18,7 @@ Function BuildService($serviceName, $copyDll, $copyXml=0, $servicePath='', $copy
     }
     }
     if($copyXml -eq 1)
     if($copyXml -eq 1)
     {
     {
-        Copy-Item -recurse -Force $servicePath/bin/Debug/net6.0/publish/$serviceName.xml -Destination $copyDest/$serviceName.xml     
+        Copy-Item -recurse -Force $servicePath/bin/Debug/netstandard2.0/publish/$serviceName.xml -Destination $copyDest/$serviceName.xml     
     }
     }
 }
 }