File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
19
19
<!-- Download and include the native libraries into the nuget package-->
20
20
<Target Name =" DownloadNativeLibs" BeforeTargets =" GenerateAdditionalSources" Condition =" '$(BuildType)' == 'Full' " >
21
- <MSBuild Projects =" DownloadNativeLibs.targets" Properties =" Rid=win-x64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-windows-amd64.zip" />
22
- <MSBuild Projects =" DownloadNativeLibs.targets" Properties =" Rid=linux-x64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-linux-amd64.zip" />
23
- <MSBuild Condition =" '$(SkipLinuxArm)' == '' " Projects =" DownloadNativeLibs.targets" Properties =" Rid=linux-arm64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-linux-aarch64.zip" />
24
- <MSBuild Projects =" DownloadNativeLibs.targets" Properties =" Rid=osx;LibUrl=$(DuckDbArtifactRoot)/libduckdb-osx-universal.zip" />
21
+ <MSBuild Condition = " $([MSBuild]::IsOSPlatform('Windows')) " Projects =" DownloadNativeLibs.targets" Properties =" Rid=win-x64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-windows-amd64.zip" />
22
+ <MSBuild Condition = " $([MSBuild]::IsOSPlatform('Linux')) " Projects =" DownloadNativeLibs.targets" Properties =" Rid=linux-x64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-linux-amd64.zip" />
23
+ <MSBuild Condition =" '$(SkipLinuxArm)' == '' And $([MSBuild]::IsOSPlatform('Linux')) " Projects =" DownloadNativeLibs.targets" Properties =" Rid=linux-arm64;LibUrl=$(DuckDbArtifactRoot)/libduckdb-linux-aarch64.zip" />
24
+ <MSBuild Condition = " $([MSBuild]::IsOSPlatform('OSX')) " Projects =" DownloadNativeLibs.targets" Properties =" Rid=osx;LibUrl=$(DuckDbArtifactRoot)/libduckdb-osx-universal.zip" />
25
25
</Target >
26
26
<Target Name =" CleanNativeLibs" BeforeTargets =" Clean" Condition =" '$(BuildType)' == 'Full' " >
27
27
<RemoveDir Directories =" obj\runtimes" />
You can’t perform that action at this time.
0 commit comments