Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 1 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFrameworks>netstandard2.1;netstandard2.0;net46</TargetFrameworks> |
| 5 | <Description>A cross-platform memory efficient serialization library</Description> |
James Kuszmaul | 3b15b0c | 2022-11-08 14:03:16 -0800 | [diff] [blame^] | 6 | <PackageVersion>22.10.26</PackageVersion> |
Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 7 | <Authors>Google LLC</Authors> |
| 8 | <PackageProjectUrl>https://github.com/google/flatbuffers</PackageProjectUrl> |
| 9 | <RepositoryUrl>https://github.com/google/flatbuffers</RepositoryUrl> |
| 10 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 11 | <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 12 | <PackageIcon>flatbuffers.png</PackageIcon> |
| 13 | <PackageTags>Google;FlatBuffers;Serialization;Buffer;Binary;zero copy</PackageTags> |
| 14 | <Copyright>Copyright 2022 Google LLC</Copyright> |
| 15 | <IncludeSymbols>true</IncludeSymbols> |
| 16 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 17 | <SignAssembly>true</SignAssembly> |
| 18 | <AssemblyOriginatorKeyFile>flatbuffers.snk</AssemblyOriginatorKeyFile> |
| 19 | <DelaySign>false</DelaySign> |
| 20 | </PropertyGroup> |
| 21 | |
| 22 | <PropertyGroup Condition="'$(UNSAFE_BYTEBUFFER)' == 'true'"> |
| 23 | <DefineConstants>$(DefineConstants);UNSAFE_BYTEBUFFER</DefineConstants> |
| 24 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 25 | </PropertyGroup> |
| 26 | <PropertyGroup Condition="'$(BYTEBUFFER_NO_BOUNDS_CHECK)' == 'true'"> |
| 27 | <DefineConstants>$(DefineConstants);BYTEBUFFER_NO_BOUNDS_CHECK</DefineConstants> |
| 28 | </PropertyGroup> |
| 29 | <PropertyGroup Condition="'$(ENABLE_SPAN_T)' == 'true'"> |
| 30 | <DefineConstants>$(DefineConstants);ENABLE_SPAN_T</DefineConstants> |
| 31 | </PropertyGroup> |
| 32 | |
| 33 | <ItemGroup Condition="('$(ENABLE_SPAN_T)' == 'true') And (('$(TargetFramework)' == 'netstandard2.0') Or ('$(TargetFramework)' == 'net46'))"> |
| 34 | <PackageReference Include="System.Memory" Version="4.5.4" /> |
| 35 | </ItemGroup> |
| 36 | |
| 37 | <ItemGroup> |
| 38 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
| 39 | </ItemGroup> |
| 40 | |
| 41 | <ItemGroup> |
| 42 | <None Include="..\..\LICENSE.txt" Pack="true" PackagePath="" /> |
| 43 | <None Include="flatbuffers.png" Pack="true" PackagePath="" /> |
| 44 | </ItemGroup> |
| 45 | |
| 46 | </Project> |