Skip to content

Commit

Permalink
added net6 folder to native libs copy target
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldsteinlechner committed Oct 6, 2022
1 parent 6e6e9c5 commit 48feffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Target.create "AddNativeResources" (fun _ ->

let binDirs =
(
dirs "bin" "(^netcoreapp.*$)|(^net4.*$)|(^net5.0$)|^Debug$|^Release$" SearchOption.AllDirectories
dirs "bin" "(^netcoreapp.*$)|(^net4.*$)|(^net5.0$)|(^net6.0$)|^Debug$|^Release$" SearchOption.AllDirectories
|> Array.toList
)

Expand Down Expand Up @@ -128,7 +128,7 @@ Target.create "AddNativeResources" (fun _ ->
()
)

let outDirs = [ @"bin\Debug\netcoreapp3.1"; @"bin\Release\netcoreapp3.1"; @"bin\Release\net5.0"; @"bin\Debug\net5.0"; ]
let outDirs = [ @"bin\Debug\net6.0"; @"bin\Release\net6.0"; @"bin\Release\net5.0"; @"bin\Debug\net5.0"; ]
let resources =
[
//"lib\Dependencies\PRo3D.Base\windows"; // currently handled by native dependency injection mechanism
Expand Down

0 comments on commit 48feffa

Please sign in to comment.