Skip to content

Commit a4d3dc2

Browse files
Bump Microsoft.SourceLink.GitHub from 1.1.1 to 10.0.103
--- updated-dependencies: - dependency-name: Microsoft.SourceLink.GitHub dependency-version: 10.0.103 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent aa8f219 commit a4d3dc2

2 files changed

Lines changed: 73 additions & 72 deletions

File tree

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
5-
</PropertyGroup>
6-
7-
<Import Project="..\Common.Net.proj" />
8-
9-
<PropertyGroup>
10-
<OutputType>Exe</OutputType>
11-
<IsPackable>false</IsPackable>
12-
</PropertyGroup>
13-
14-
<ItemGroup>
15-
<Content Include="..\..\ExampleData\ais.kystverket.no\Ais1000Lines.nm4" Link="TestData\Ais1000Lines.nm4">
16-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
17-
</Content>
18-
</ItemGroup>
19-
20-
<ItemGroup>
21-
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
22-
</ItemGroup>
23-
24-
<ItemGroup>
25-
<ProjectReference Include="..\Ais.Net\Ais.Net.csproj" />
26-
</ItemGroup>
27-
28-
<ItemGroup>
29-
<Folder Include="TestData\" />
30-
</ItemGroup>
31-
32-
<ItemGroup>
33-
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1">
34-
<PrivateAssets>all</PrivateAssets>
35-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
36-
</PackageReference>
37-
</ItemGroup>
38-
39-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
5+
</PropertyGroup>
6+
7+
<Import Project="..\Common.Net.proj" />
8+
9+
<PropertyGroup>
10+
<OutputType>Exe</OutputType>
11+
<IsPackable>false</IsPackable>
12+
</PropertyGroup>
13+
14+
<ItemGroup>
15+
<Content Include="..\..\ExampleData\ais.kystverket.no\Ais1000Lines.nm4" Link="TestData\Ais1000Lines.nm4">
16+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
17+
</Content>
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<ProjectReference Include="..\Ais.Net\Ais.Net.csproj" />
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<Folder Include="TestData\" />
30+
</ItemGroup>
31+
32+
<ItemGroup>
33+
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.103">
34+
<PrivateAssets>all</PrivateAssets>
35+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
36+
</PackageReference>
37+
</ItemGroup>
38+
39+
</Project>

Solutions/Ais.Net/Ais.Net.csproj

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,34 @@
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

Comments
 (0)