1- <Project Sdk =" Microsoft.NET.Sdk" >
2-
3- <PropertyGroup >
4- <Description >LightningDB</Description >
5- <VersionPrefix >0.10.0</VersionPrefix >
6- <Authors >Ilya Lukyanov;Corey Kaylor</Authors >
7- <TargetFrameworks >net45;netstandard1.3</TargetFrameworks >
8- <AssemblyName >LightningDB</AssemblyName >
9- <PackageId >LightningDB</PackageId >
10- <PackageTags >lmdb;lightning;storage;persistance;key-value;nosql</PackageTags >
11- <PackageProjectUrl >https://github.com/CoreyKaylor/Lightning.NET</PackageProjectUrl >
12- </PropertyGroup >
13-
14- <ItemGroup >
15- <None Include =" runtimes\win-x64\native\lmdb.dll" Pack =" true" PackagePath =" runtimes/win-x64/native/lmdb.dll" />
16- <None Include =" runtimes\win-x86\native\lmdb.dll" Pack =" true" PackagePath =" runtimes/win-x86/native/lmdb.dll" />
17- <None Include =" runtimes\osx\native\lmdb.dylib" Pack =" true" PackagePath =" runtimes/osx/native/lmdb.dylib" />
18- <None Include =" runtimes\linux-arm\native\liblmdb.so" Pack =" true" PackagePath =" runtimes/linux-arm/native/liblmdb.so" />
19- <None Include =" LightningDB.targets" Pack =" true" PackagePath =" build" />
20- </ItemGroup >
21-
22- <ItemGroup Condition =" '$(TargetFramework)' == 'net45' " >
23- <Reference Include =" System" />
24- <Reference Include =" Microsoft.CSharp" />
25- </ItemGroup >
26-
27- <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1.3' " >
28- <PackageReference Include =" System.Net.Primitives" Version =" 4.3.0" />
29- <PackageReference Include =" System.Runtime" Version =" 4.3.0" />
30- <PackageReference Include =" System.Linq" Version =" 4.3.0" />
31- <PackageReference Include =" System.Collections.Concurrent" Version =" 4.3.0" />
32- <PackageReference Include =" System.Runtime.InteropServices" Version =" 4.3.0" />
33- <PackageReference Include =" System.IO.FileSystem" Version =" 4.3.0" />
34- <PackageReference Include =" System.Threading" Version =" 4.3.0" />
35- </ItemGroup >
36-
37- <ItemGroup >
38- <Folder Include =" runtimes\linux-arm\native\" />
39- <Folder Include =" runtimes\linux-arm\" />
40- </ItemGroup >
41-
42- </Project >
1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+
3+ <PropertyGroup >
4+ <Description >LightningDB</Description >
5+ <VersionPrefix >0.10.0</VersionPrefix >
6+ <Authors >Ilya Lukyanov;Corey Kaylor</Authors >
7+ <TargetFrameworks >net45;netstandard1.3</TargetFrameworks >
8+ <AssemblyName >LightningDB</AssemblyName >
9+ <PackageId >LightningDB</PackageId >
10+ <PackageTags >lmdb;lightning;storage;persistance;key-value;nosql</PackageTags >
11+ <PackageProjectUrl >https://github.com/CoreyKaylor/Lightning.NET</PackageProjectUrl >
12+ <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
13+ </PropertyGroup >
14+
15+ <ItemGroup >
16+ <None Include =" runtimes\win-x64\native\lmdb.dll" Pack =" true" PackagePath =" runtimes/win-x64/native/lmdb.dll" />
17+ <None Include =" runtimes\win-x86\native\lmdb.dll" Pack =" true" PackagePath =" runtimes/win-x86/native/lmdb.dll" />
18+ <None Include =" runtimes\osx\native\lmdb.dylib" Pack =" true" PackagePath =" runtimes/osx/native/lmdb.dylib" />
19+ <None Include =" runtimes\linux-arm\native\liblmdb.so" Pack =" true" PackagePath =" runtimes/linux-arm/native/liblmdb.so" />
20+ <None Include =" LightningDB.targets" Pack =" true" PackagePath =" build" />
21+ </ItemGroup >
22+
23+ <ItemGroup Condition =" '$(TargetFramework)' == 'net45' " >
24+ <Reference Include =" System" />
25+ <Reference Include =" Microsoft.CSharp" />
26+ </ItemGroup >
27+
28+ <ItemGroup Condition =" '$(TargetFramework)' == 'netstandard1.3' " >
29+ <PackageReference Include =" System.Net.Primitives" Version =" 4.3.0" />
30+ <PackageReference Include =" System.Runtime" Version =" 4.3.0" />
31+ <PackageReference Include =" System.Linq" Version =" 4.3.0" />
32+ <PackageReference Include =" System.Collections.Concurrent" Version =" 4.3.0" />
33+ <PackageReference Include =" System.Runtime.InteropServices" Version =" 4.3.0" />
34+ <PackageReference Include =" System.IO.FileSystem" Version =" 4.3.0" />
35+ <PackageReference Include =" System.Threading" Version =" 4.3.0" />
36+ </ItemGroup >
37+
38+ <ItemGroup >
39+ <Folder Include =" runtimes\linux-arm\native\" />
40+ <Folder Include =" runtimes\linux-arm\" />
41+ </ItemGroup >
42+
43+ <ItemGroup >
44+ <PackageReference Include =" System.Memory" Version =" 4.5.1" />
45+ </ItemGroup >
46+ </Project >
0 commit comments