-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSolcLib.Native.nuspec
21 lines (21 loc) · 1.15 KB
/
SolcLib.Native.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>SolcLib.Native</id>
<version>0</version>
<authors>Hosho</authors>
<owners>Hosho</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/ethereum/solidity/blob/develop/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/hosho/solc-build/</projectUrl>
<description>This package contains platform-specific native code builds of libsolc. Included: osx-x64/libsolc.dylib, linux-x64/libsolc.so, win-x64/solc.dll, win-x86/solc.dll</description>
<tags>solc solclib libsolc solidity compiler sol ethereum</tags>
</metadata>
<files>
<file src="lib/linux-x64/libsolc.so" target="runtimes/linux-x64/native/libsolc.so" />
<file src="lib/osx-x64/libsolc.dylib" target="runtimes/osx-x64/native/libsolc.dylib" />
<file src="lib/win-x64/solc.dll" target="runtimes/win-x64/native/solc.dll" />
<file src="lib/win-x86/solc.dll" target="runtimes/win-x86/native/solc.dll" />
<file src="SolcLib.Native.targets" target="build/netstandard1.0"/>
</files>
</package>