-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
53 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,49 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.0;net45;netstandard2.1</TargetFrameworks> | ||
<AssemblyName>Salar.Bois.LZ4</AssemblyName> | ||
<RootNamespace>Salar.Bois.LZ4</RootNamespace> | ||
<Configurations>Debug;Release;Debug+AssemblyOut</Configurations> | ||
<Version>3.1.0.0</Version> | ||
<Authors>Salar Khalilzadeh</Authors> | ||
<Company>Salar Khalilzadeh</Company> | ||
<Product>Salar.Bois</Product> | ||
<Description>Salar's Serializer for Binary Object Indexed Serialization, LZ4 wrapper</Description> | ||
<Copyright>MPLv2 © Salar Khalilzadeh 2019</Copyright> | ||
<PackageProjectUrl>https://github.com/salarcode/Bois</PackageProjectUrl> | ||
<PackageLicenseUrl></PackageLicenseUrl> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Salar.Bois.snk</AssemblyOriginatorKeyFile> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageTags>Binary Serializer Serialization Serialize Compact BOIS JSON LZ4 Compressed</PackageTags> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.0|AnyCPU'"> | ||
<DocumentationFile>.\bin\Salar.Bois.LZ4.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'"> | ||
<DocumentationFile>.\bin\Salar.Bois.LZ4.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug+AssemblyOut|netcoreapp2.0|AnyCPU'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<Optimize>false</Optimize> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.0|AnyCPU'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="K4os.Compression.LZ4" Version="1.1.11" /> | ||
<PackageReference Include="Salar.Bois" Version="3.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\LICENSE.md"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp3.0;net45;net5.0;netstandard2.1</TargetFrameworks> | ||
<AssemblyName>Salar.Bois.LZ4</AssemblyName> | ||
<RootNamespace>Salar.Bois.LZ4</RootNamespace> | ||
<Configurations>Debug;Release;Debug+AssemblyOut</Configurations> | ||
<Version>3.2.0.0</Version> | ||
<Authors>Salar Khalilzadeh</Authors> | ||
<Company>Salar Khalilzadeh</Company> | ||
<Product>Salar.Bois</Product> | ||
<Description>Salar's Serializer for Binary Object Indexed Serialization, LZ4 wrapper</Description> | ||
<Copyright>MPLv2 © Salar Khalilzadeh 2019</Copyright> | ||
<PackageProjectUrl>https://github.com/salarcode/Bois</PackageProjectUrl> | ||
<PackageLicenseUrl></PackageLicenseUrl> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Salar.Bois.snk</AssemblyOriginatorKeyFile> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageTags>Binary Serializer Serialization Serialize Compact BOIS JSON LZ4 Compressed</PackageTags> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> | ||
<DocumentationFile>.\bin\Salar.Bois.LZ4.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug+AssemblyOut|netcoreapp2.0|AnyCPU'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<Optimize>false</Optimize> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.0|AnyCPU'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="K4os.Compression.LZ4" Version="1.2.15" /> | ||
<PackageReference Include="Salar.Bois" Version="3.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\LICENSE.md"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters