Skip to content

Commit

Permalink
added some more details on packaging and new dlls
Browse files Browse the repository at this point in the history
  • Loading branch information
wireless90 committed Jan 8, 2024
1 parent 213b2da commit e9dd742
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion IotaSDK.NET/IotaSDK.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,23 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>IotaSDK</PackageId>
<Title>IOTA SDK</Title>
<Authors>Razali, $(AssemblyName)</Authors>
<Company>$(AssemblyName)</Company>
<Product>IOTA SDK</Product>
<Description>Iota or Shimmer Wallet Library for .NET</Description>
<PackageProjectUrl>https://github.com/IOTA-NET/IotaSDK.NET</PackageProjectUrl>
<PackageIcon>main iota.jpg</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/IOTA-NET/IotaSDK.NET</RepositoryUrl>
<PackageTags>c#; csharp; iota; stardust; sdk;</PackageTags>
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
<ItemGroup>
<PackageReference Include="JsonSubTypes" Version="2.0.1" />
<PackageReference Include="MediatR" Version="12.2.0" />
<PackageReference Include="MimeMapping" Version="2.0.0" />
Expand All @@ -26,4 +40,24 @@
<Folder Include="Domain\StorageDeposit\" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\..\..\Desktop\main iota.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>

<None Include="runtimes\win-x64\native\iota_sdk.dll">
<Pack>True</Pack>
<PackagePath>runtimes\win-x64\native\</PackagePath>
</None>
<None Include="runtimes\linux-x64\native\libiota_sdk.so">
<Pack>True</Pack>
<PackagePath>runtimes\linux-x64\native\</PackagePath>
</None>
</ItemGroup>

</Project>
Binary file not shown.
File renamed without changes.

0 comments on commit e9dd742

Please sign in to comment.