23 lines
662 B
XML
23 lines
662 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="../etc/ReFuel.StbImage.Common.props"/>
|
|
|
|
<PropertyGroup>
|
|
<!-- Nuget Properties. -->
|
|
<PackageId>ReFuel.StbImage.redis.osx.x64</PackageId>
|
|
<Version>1.0.0-rc.1</Version>
|
|
<Description>
|
|
StbImage distribution for OSX x64.
|
|
</Description>
|
|
<PackageReleaseNotes>* Initial release.</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="runtimes/osx-x64/native/*.dylib">
|
|
<PackagePath>runtimes/osx-x64/native/</PackagePath>
|
|
<Pack>true</Pack>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|