This is an automated email from the ASF dual-hosted git repository. blankensteiner pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git
The following commit(s) were added to refs/heads/master by this push: new 1ac896a Move global usings inside csproj new f78359e Merge branch 'master' of https://github.com/apache/pulsar-dotpulsar 1ac896a is described below commit 1ac896a038d8f2acf6343f26173797184d0b9fc0 Author: Daniel Blankensteiner <d...@vmail.dk> AuthorDate: Thu Dec 14 11:13:20 2023 +0100 Move global usings inside csproj --- tests/DotPulsar.Tests/DotPulsar.Tests.csproj | 6 ++++++ tests/DotPulsar.Tests/GlobalUsings.cs | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj index 6e7e17c..450dc44 100644 --- a/tests/DotPulsar.Tests/DotPulsar.Tests.csproj +++ b/tests/DotPulsar.Tests/DotPulsar.Tests.csproj @@ -9,6 +9,12 @@ <NoWarn>CA2012</NoWarn> </PropertyGroup> + <ItemGroup> + <Using Include="FluentAssertions" /> + <Using Include="NSubstitute;" /> + <Using Include="Xunit;" /> + </ItemGroup> + <ItemGroup> <PackageReference Include="AutoFixture.AutoNSubstitute" Version="4.18.1" /> <PackageReference Include="AutoFixture.Xunit2" Version="4.18.1" /> diff --git a/tests/DotPulsar.Tests/GlobalUsings.cs b/tests/DotPulsar.Tests/GlobalUsings.cs deleted file mode 100644 index d805733..0000000 --- a/tests/DotPulsar.Tests/GlobalUsings.cs +++ /dev/null @@ -1,5 +0,0 @@ -global using FluentAssertions; -global using NSubstitute; -global using System.Threading; -global using System.Threading.Tasks; -global using Xunit;