Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AleRoe committed Nov 12, 2023
1 parent 7b377e5 commit a343d4f
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 56 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/ci.yml

This file was deleted.

28 changes: 18 additions & 10 deletions src/AleRoe.CecSharp.Tests/AleRoe.CecSharp.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;netstandard2.1</TargetFrameworks>
<TargetFramework>net7.0</TargetFramework>
<IsPackable>false</IsPackable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nunit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.9.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AleRoe.CecSharp\AleRoe.CecSharp.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AleRoe.CecSharp\AleRoe.CecSharp.csproj" />
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion src/AleRoe.CecSharp.Tests/CecMessageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ public void NotEqualsTest_WrongTypesAreNotEqual()
{
var message1 = CecMessage.None;
var message2 = Guid.NewGuid();
Assert.AreNotEqual(message1, message2);
Assert.IsFalse(message1.Equals(message2));
Assert.IsFalse(Equals(message1, message2));
}
Expand Down
4 changes: 2 additions & 2 deletions src/AleRoe.CecSharp.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29509.3
# Visual Studio Version 17
VisualStudioVersion = 17.7.34221.43
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AleRoe.CecSharp", "AleRoe.CecSharp\AleRoe.CecSharp.csproj", "{B693268F-1B09-4AA3-96E2-18A24ABB5F65}"
EndProject
Expand Down
6 changes: 3 additions & 3 deletions src/AleRoe.CecSharp/AleRoe.CecSharp.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0;netstandard2.1</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<TargetFramework>net7.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Alexander Röthinger</Authors>
<Copyright>Alexander Röthinger, 2021</Copyright>
<Description>A class library to faciliate HDMI-CEC communications.</Description>
Expand Down Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="morelinq" Version="3.3.2" />
<PackageReference Include="morelinq" Version="4.0.0" />
</ItemGroup>

</Project>
1 change: 1 addition & 0 deletions src/TestProject1/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
global using NUnit.Framework;
20 changes: 20 additions & 0 deletions src/TestProject1/TestProject1.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageReference Include="NUnit.Analyzers" Version="3.6.1" />
<PackageReference Include="coverlet.collector" Version="3.2.0" />
</ItemGroup>

</Project>
16 changes: 16 additions & 0 deletions src/TestProject1/UnitTest1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
namespace TestProject1
{
public class Tests
{
[SetUp]
public void Setup()
{
}

[Test]
public void Test1()
{
Assert.Pass();
}
}
}

0 comments on commit a343d4f

Please sign in to comment.