|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="MSBuild.Sdk.Extras"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard1.6;netstandard2.0</TargetFrameworks> |
5 | | - <Description>libsodium for .net core</Description> |
6 | | - <Copyright>Copyright © tabrath 2017</Copyright> |
7 | | - <AssemblyTitle>Sodium.Core</AssemblyTitle> |
8 | | - <VersionPrefix>1.2.0</VersionPrefix> |
9 | | - <Authors>tabrath</Authors> |
| 4 | + <TargetFrameworks>MonoAndroid90;Xamarin.iOS10;netstandard1.6;netstandard2.0</TargetFrameworks> |
| 5 | + <Description>libsodium for Xamarin</Description> |
| 6 | + <Copyright>Copyright © Liip 2019</Copyright> |
| 7 | + <AssemblyTitle>Sodium.Xamarin</AssemblyTitle> |
| 8 | + <VersionPrefix>0.0.2</VersionPrefix> |
| 9 | + <Authors>jschmid</Authors> |
10 | 10 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
11 | | - <AssemblyName>Sodium.Core</AssemblyName> |
12 | | - <PackageId>Sodium.Core</PackageId> |
13 | | - <PackageTags>libsodium</PackageTags> |
14 | | - <PackageLicenseUrl>https://github.com/tabrath/libsodium-core/blob/master/LICENSE</PackageLicenseUrl> |
| 11 | + <AssemblyName>Sodium.Xamarin</AssemblyName> |
| 12 | + <PackageId>Sodium.Xamarin</PackageId> |
| 13 | + <PackageTags>libsodium;xamarin;xamarin.ios;xamarin.android</PackageTags> |
| 14 | + <PackageLicenseUrl>https://github.com/liip/Sodium.Xamarin/blob/master/LICENSE</PackageLicenseUrl> |
15 | 15 | <RepositoryType>git</RepositoryType> |
16 | | - <RepositoryUrl>https://github.com/tabrath/libsodium-core/</RepositoryUrl> |
| 16 | + <RepositoryUrl>https://github.com/liip/Sodium.Xamarin/</RepositoryUrl> |
17 | 17 | <PlatformTarget>AnyCPU</PlatformTarget> |
18 | 18 | <OutputType>Library</OutputType> |
19 | | - <PackageProjectUrl>https://github.com/tabrath/libsodium-core/</PackageProjectUrl> |
| 19 | + <PackageProjectUrl>https://github.com/liip/Sodium.Xamarin/</PackageProjectUrl> |
20 | 20 | <RootNamespace>Sodium</RootNamespace> |
21 | 21 | <PackageIconUrl>http://upload.wikimedia.org/wikipedia/commons/thumb/7/78/Salt_shaker_on_white_background.jpg/220px-Salt_shaker_on_white_background.jpg</PackageIconUrl> |
22 | 22 | <PreserveCompilationContext>true</PreserveCompilationContext> |
|
36 | 36 | <DefineConstants>$(DefineConstants)</DefineConstants> |
37 | 37 | </PropertyGroup> |
38 | 38 |
|
| 39 | + <PropertyGroup Condition="$(TargetFramework.StartsWith('Xamarin.iOS'))"> |
| 40 | + <DefineConstants>$(DefineConstants);IOS</DefineConstants> |
| 41 | + </PropertyGroup> |
| 42 | + <PropertyGroup Condition="$(TargetFramework.StartsWith('MonoAndroid'))"> |
| 43 | + <DefineConstants>$(DefineConstants);ANDROID</DefineConstants> |
| 44 | + </PropertyGroup> |
| 45 | + |
39 | 46 | <ItemGroup> |
40 | 47 | <PackageReference Include="libsodium" Version="1.0.17" /> |
41 | 48 | </ItemGroup> |
|
0 commit comments