|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <Import Project="..\Common.Net.proj" /> |
4 | | - |
5 | | - <PropertyGroup> |
6 | | - <!-- |
7 | | - We need to target multiple versions, because .NET Standard 2.0's Stream.Read doesn't |
8 | | - support Memory<T>, which is important for performance. |
9 | | - We target .NET Standard 2.0, because that offers maximum reach (and in particular, enables |
10 | | - .NET Framework projects to use this library). |
11 | | - We target .NET Standard 2.1 because that adds Memory<T> support to Stream.Read, meaning that |
12 | | - we will be able to get full performance on all .NET runtimes that support netstandard2.1 |
13 | | - --> |
14 | | - <TargetFramework></TargetFramework> |
15 | | - <TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks> |
16 | | - </PropertyGroup> |
17 | | - |
18 | | - <ItemGroup> |
19 | | - <PackageReference Include="System.IO.Pipelines" Version="4.7.5" /> |
20 | | - </ItemGroup> |
21 | | - |
22 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
23 | | - <PackageReference Include="System.Memory" Version="4.5.4" /> |
24 | | - </ItemGroup> |
25 | | - |
26 | | - <PropertyGroup> |
27 | | - <PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> |
28 | | - <PackageDescription>High performance, zero allocation AIS message decoder, which can process millions of AIVDM/AIVDO sentences per second on a single core. Sponsored by endjin.</PackageDescription> |
29 | | - <PackageTags>ais;aisvdm;aivdo;nmea;marine;gis;iot;aiforearth;endjin</PackageTags> |
30 | | - <PackageReleaseNotes></PackageReleaseNotes> |
31 | | - </PropertyGroup> |
32 | | - |
33 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <Import Project="..\Common.Net.proj" /> |
| 4 | + |
| 5 | + <PropertyGroup> |
| 6 | + <!-- |
| 7 | + We need to target multiple versions, because .NET Standard 2.0's Stream.Read doesn't |
| 8 | + support Memory<T>, which is important for performance. |
| 9 | + We target .NET Standard 2.0, because that offers maximum reach (and in particular, enables |
| 10 | + .NET Framework projects to use this library). |
| 11 | + We target .NET Standard 2.1 because that adds Memory<T> support to Stream.Read, meaning that |
| 12 | + we will be able to get full performance on all .NET runtimes that support netstandard2.1 |
| 13 | + --> |
| 14 | + <TargetFramework></TargetFramework> |
| 15 | + <TargetFrameworks>netstandard2.1;netstandard2.0</TargetFrameworks> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <ItemGroup> |
| 19 | + <PackageReference Include="System.IO.Pipelines" Version="4.7.5" /> |
| 20 | + </ItemGroup> |
| 21 | + |
| 22 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| 23 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" /> |
| 24 | + <PackageReference Include="System.Memory" Version="4.5.4" /> |
| 25 | + </ItemGroup> |
| 26 | + |
| 27 | + <PropertyGroup> |
| 28 | + <PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression> |
| 29 | + <PackageDescription>High performance, zero allocation AIS message decoder, which can process millions of AIVDM/AIVDO sentences per second on a single core. Sponsored by endjin.</PackageDescription> |
| 30 | + <PackageTags>ais;aisvdm;aivdo;nmea;marine;gis;iot;aiforearth;endjin</PackageTags> |
| 31 | + <PackageReleaseNotes></PackageReleaseNotes> |
| 32 | + </PropertyGroup> |
| 33 | + |
| 34 | +</Project> |
0 commit comments