Skip to content

Commit

Permalink
update tooling and auxiliary packages to latest greatest (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mpdreamz authored Jan 23, 2023
1 parent ddccd8e commit a9634e5
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 44 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PropertyGroup Condition="">
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.2" PrivateAssets="all"/>
<PackageReference Include="MinVer" Version="4.2.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.3" PrivateAssets="all"/>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="4.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="ConfigureAwaitChecker.Analyzer" Version="5.0.0.1" PrivateAssets="All" />
</ItemGroup>
</Project>
5 changes: 2 additions & 3 deletions src/Elastic.Channels/Elastic.Channels.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Title>A buffer-backed channel for indexing documents into Elasticsearch</Title>
<Description>Provides components to build a buffer-backed channel for indexing documents into Elasticsearch</Description>
<PackageTags>elastic, elasticsearch, ingest, search</PackageTags>
<Description>Provides components to build a buffer-backed channel that flushes batches of data in a controlled (Max N || Max Duration) manner.</Description>
<PackageTags>elastic, channels, buffer</PackageTags>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>True</IsPackable>
Expand Down
5 changes: 2 additions & 3 deletions src/Elastic.Ingest.Apm/Elastic.Ingest.Apm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Description>TODO</Description>
<PackageTags>TODO</PackageTags>
<Description>Offers an easy to use ChannelWriter implementation to push data concurrently to APM using Elastic.Transport</Description>
<PackageTags>elastic, channels, apm, ingest</PackageTags>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand All @@ -13,5 +13,4 @@
<ProjectReference Include="..\Elastic.Ingest.Transport\Elastic.Ingest.Transport.csproj" />
</ItemGroup>


</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Title>Elasticsearch Buffer backed data shipper</Title>
<Description>TODO</Description>
<PackageTags>TODO</PackageTags>
<Description>Offers an easy to use ChannelWriter implementation to push data concurrently to Elasticsearch using Elastic.Transport</Description>
<PackageTags>elastic, channels, elasticsearch, ingest</PackageTags>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>True</IsPackable>
Expand Down
3 changes: 1 addition & 2 deletions src/Elastic.Ingest.Transport/Elastic.Ingest.Transport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Title>A buffer-backed channel for indexing documents into Elasticsearch</Title>
<Description>Provides components to build a buffer-backed channel for publishing events to distributed systems over HTTP through Elastic.Transport</Description>
<PackageTags>elastic, elasticsearch, ingest, search</PackageTags>
<PackageTags>elastic, transport, ingest, search</PackageTags>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>True</IsPackable>
Expand Down
9 changes: 9 additions & 0 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"/>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

<PackageReference Include="JunitXml.TestLogger" Version="3.0.114" PrivateAssets="All" />
<PackageReference Include="XunitContext" Version="3.2.5" />
</ItemGroup>
</Project>
10 changes: 0 additions & 10 deletions tests/Elastic.Channels.Tests/Elastic.Channels.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>


<PackageReference Include="XunitContext" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,6 @@
<ItemGroup>
<PackageReference Include="Elastic.Clients.Elasticsearch" Version="8.0.4" />
<PackageReference Include="Elastic.Elasticsearch.Xunit" Version="0.3.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="System.Text.Json" Version="6.0.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>


<PackageReference Include="Elastic.Transport.VirtualizedCluster" Version="0.4.5" />
<PackageReference Include="XunitContext" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit a9634e5

Please sign in to comment.