6 lines
284 B
PowerShell
6 lines
284 B
PowerShell
# Build Windows DLL
|
|
dotnet publish -f net8.0 -c Release -r win-x64 -p:PublishAot=true -p:NativeLib=Shared -p:SelfContained=true
|
|
|
|
# Build Linux SO using WSL
|
|
wsl -e bash -ic "dotnet publish -f net8.0 -c Release -r linux-x64 -p:PublishAot=true -p:NativeLib=Shared -p:SelfContained=true"
|