@@ -225,7 +225,7 @@ let ``Build MKL Windows`` isIncremental isSign _ =
225225 Directory.create mklSolution.OutputZipDir
226226 zip mklWinZipPackage header mklSolution.OutputZipDir " out/MKL/Windows" ( fun f -> f.Contains( " MathNet.Numerics.Providers.MKL." ) || f.Contains( " libMathNetNumerics" ) || f.Contains( " libiomp5md.dll" ))
227227 Directory.create mklSolution.OutputNuGetDir
228- nugetPackManually mklSolution [ mklWinPack; mklWin32Pack; mklWin64Pack ] header
228+ nugetPackManually mklSolution [ mklWinPack; mklWin32Pack; mklWin64Pack ] " LICENSE-MKL.md " header
229229
230230 // NuGet Sign (all or nothing)
231231 if isSign then signNuGet fingerprint timeserver [ mklSolution]
@@ -237,7 +237,7 @@ let ``Build CUDA Windows`` isIncremental isSign _ =
237237 Directory.create cudaSolution.OutputZipDir
238238 zip cudaWinZipPackage header cudaSolution.OutputZipDir " out/CUDA/Windows" ( fun f -> f.Contains( " MathNet.Numerics.Providers.CUDA." ) || f.Contains( " libMathNetNumerics" ) || f.Contains( " cublas" ) || f.Contains( " cudart" ) || f.Contains( " cusolver" ))
239239 Directory.create cudaSolution.OutputNuGetDir
240- nugetPackManually cudaSolution [ cudaWinPack ] header
240+ nugetPackManually cudaSolution [ cudaWinPack ] " LICENSE.md " header
241241
242242 // NuGet Sign (all or nothing)
243243 if isSign then signNuGet fingerprint timeserver [ cudaSolution]
@@ -250,7 +250,7 @@ let ``Build OpenBLAS Windows`` isIncremental isSign _ =
250250 Directory.create openBlasSolution.OutputZipDir
251251 zip openBlasWinZipPackage header openBlasSolution.OutputZipDir " out/OpenBLAS/Windows" ( fun f -> f.Contains( " MathNet.Numerics.Providers.OpenBLAS." ) || f.Contains( " libMathNetNumerics" ) || f.Contains( " libgcc" ) || f.Contains( " libgfortran" ) || f.Contains( " libopenblas" ) || f.Contains( " libquadmath" ))
252252 Directory.create openBlasSolution.OutputNuGetDir
253- nugetPackManually openBlasSolution [ openBlasWinPack ] header
253+ nugetPackManually openBlasSolution [ openBlasWinPack ] " LICENSE.md " header
254254
255255 // NuGet Sign (all or nothing)
256256 if isSign then signNuGet fingerprint timeserver [ openBlasSolution]
@@ -268,19 +268,19 @@ let ``Pack MKL Linux Zip`` _ =
268268
269269let ``Pack MKL Linux NuGet`` _ =
270270 Directory.create mklSolution.OutputNuGetDir
271- nugetPackManually mklSolution [ mklLinuxPack; mklLinux32Pack; mklLinux64Pack ] header
271+ nugetPackManually mklSolution [ mklLinuxPack; mklLinux32Pack; mklLinux64Pack ] " LICENSE-MKL.md " header
272272
273273let ``Pack MKL Windows`` _ =
274274 Directory.create mklSolution.OutputZipDir
275275 zip mklWinZipPackage header mklSolution.OutputZipDir " out/MKL/Windows" ( fun f -> f.Contains( " MathNet.Numerics.Providers.MKL." ) || f.Contains( " libMathNetNumerics" ) || f.Contains( " libiomp5md.dll" ))
276276 Directory.create mklSolution.OutputNuGetDir
277- nugetPackManually mklSolution [ mklWinPack; mklWin32Pack; mklWin64Pack ] header
277+ nugetPackManually mklSolution [ mklWinPack; mklWin32Pack; mklWin64Pack ] " LICENSE-MKL.md " header
278278
279279let ``Pack OpenBLAS Windows`` _ =
280280 Directory.create openBlasSolution.OutputZipDir
281281 zip openBlasWinZipPackage header openBlasSolution.OutputZipDir " out/OpenBLAS/Windows" ( fun f -> f.Contains( " MathNet.Numerics.Providers.OpenBLAS." ) || f.Contains( " libMathNetNumerics" ) || f.Contains( " libgcc" ) || f.Contains( " libgfortran" ) || f.Contains( " libopenblas" ) || f.Contains( " libquadmath" ))
282282 Directory.create openBlasSolution.OutputNuGetDir
283- nugetPackManually openBlasSolution [ openBlasWinPack ] header
283+ nugetPackManually openBlasSolution [ openBlasWinPack ] " LICENSE.md " header
284284
285285let extraDocs =
286286 [ " LICENSE.md" , " License.md"
0 commit comments