From 6729e0eac347e0f50fbbd33ae3b5ebc6675b0cdb Mon Sep 17 00:00:00 2001 From: Michiel Oda Date: Tue, 10 Dec 2024 15:16:07 +0100 Subject: [PATCH] Change to MSTest NuGet + update FluentAssertions (#49, #50, #51) --- .github/dependabot.yml | 5 +- Parsers.Automation/Parsers.Automation.csproj | 25 ++---- .../Parsers.AutomationTests.csproj | 10 +-- Parsers.Common/Parsers.Common.csproj | 89 +++++++++---------- .../Parsers.CommonTests.csproj | 10 +-- Parsers.Protocol/Parsers.Protocol.csproj | 71 +++++++-------- .../Parsers.ProtocolTests.csproj | 8 +- 7 files changed, 90 insertions(+), 128 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3c62187..a19c68a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,11 +8,8 @@ updates: - package-ecosystem: "nuget" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "weekly" + interval: "daily" groups: - mstest: - patterns: - - "MSTest.*" skyline-cicd: patterns: - "Skyline.DataMiner.CICD.*" diff --git a/Parsers.Automation/Parsers.Automation.csproj b/Parsers.Automation/Parsers.Automation.csproj index 886500f..f2c7e0f 100644 --- a/Parsers.Automation/Parsers.Automation.csproj +++ b/Parsers.Automation/Parsers.Automation.csproj @@ -1,6 +1,5 @@ - - + netstandard2.0 Skyline.DataMiner.CICD.Parsers.Automation Skyline.DataMiner.CICD.Parsers.Automation @@ -14,28 +13,18 @@ https://skyline.be/ Skyline;DataMiner;CICD Library providing methods to parse DataMiner AutomationScript XML files. - README.md - https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers - git + README.md + https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers + git - - True - \ - - - True - \ - - - True - \ - + + + - diff --git a/Parsers.AutomationTests/Parsers.AutomationTests.csproj b/Parsers.AutomationTests/Parsers.AutomationTests.csproj index 4073fd7..6c121ba 100644 --- a/Parsers.AutomationTests/Parsers.AutomationTests.csproj +++ b/Parsers.AutomationTests/Parsers.AutomationTests.csproj @@ -1,15 +1,13 @@ - net472;net6.0 - false + net48;net6.0;net8.0 + false - - - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Parsers.Common/Parsers.Common.csproj b/Parsers.Common/Parsers.Common.csproj index dc9001a..d7e6230 100644 --- a/Parsers.Common/Parsers.Common.csproj +++ b/Parsers.Common/Parsers.Common.csproj @@ -1,57 +1,48 @@  - - netstandard2.0 - Skyline.DataMiner.CICD.Parsers.Common - Skyline.DataMiner.CICD.Parsers.Common - True - True - SkylineCommunications - Skyline Communications - LICENSE.txt - True - icon.png - https://skyline.be/ - Skyline;DataMiner;CICD - Library providing Common methods to parse DataMiner XML files. - README.md - https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers - git - + + netstandard2.0 + Skyline.DataMiner.CICD.Parsers.Common + Skyline.DataMiner.CICD.Parsers.Common + True + True + SkylineCommunications + Skyline Communications + LICENSE.txt + True + icon.png + https://skyline.be/ + Skyline;DataMiner;CICD + Library providing Common methods to parse DataMiner XML files. + README.md + https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers + git + - - - True - \ - - - True - \ - - - True - \ - - + + + + + - - - - - - + + + + + + - - - Xml/**, XmlEdit/** - - + + + Xml/**, XmlEdit/** + + - - - - - - + + + + + + diff --git a/Parsers.CommonTests/Parsers.CommonTests.csproj b/Parsers.CommonTests/Parsers.CommonTests.csproj index d1c07b9..215d37a 100644 --- a/Parsers.CommonTests/Parsers.CommonTests.csproj +++ b/Parsers.CommonTests/Parsers.CommonTests.csproj @@ -1,7 +1,7 @@  - net472;net6.0 + net48;net6.0;net8.0 false @@ -16,11 +16,9 @@ - - - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Parsers.Protocol/Parsers.Protocol.csproj b/Parsers.Protocol/Parsers.Protocol.csproj index 8edd2ca..603839a 100644 --- a/Parsers.Protocol/Parsers.Protocol.csproj +++ b/Parsers.Protocol/Parsers.Protocol.csproj @@ -1,47 +1,38 @@  - - netstandard2.0 - Skyline.DataMiner.CICD.Parsers.Protocol - Skyline.DataMiner.CICD.Parsers.Protocol - True - True - SkylineCommunications - Skyline Communications - LICENSE.txt - True - icon.png - https://skyline.be/ - Skyline;DataMiner;CICD - Library providing methods to parse DataMiner Protocol XML files. - README.md - https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers - git - + + netstandard2.0 + Skyline.DataMiner.CICD.Parsers.Protocol + Skyline.DataMiner.CICD.Parsers.Protocol + True + True + SkylineCommunications + Skyline Communications + LICENSE.txt + True + icon.png + https://skyline.be/ + Skyline;DataMiner;CICD + Library providing methods to parse DataMiner Protocol XML files. + README.md + https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers + git + - - - True - \ - - - True - \ - - - True - \ - - + + + + + - - - + + + - - - Xml/** - - + + + Xml/** + + \ No newline at end of file diff --git a/Parsers.ProtocolTests/Parsers.ProtocolTests.csproj b/Parsers.ProtocolTests/Parsers.ProtocolTests.csproj index 3e48733..2068f1f 100644 --- a/Parsers.ProtocolTests/Parsers.ProtocolTests.csproj +++ b/Parsers.ProtocolTests/Parsers.ProtocolTests.csproj @@ -1,7 +1,7 @@ - net472;net6.0 + net48;net6.0;net8.0 disable disable @@ -9,9 +9,7 @@ - - - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -29,5 +27,5 @@ Always - +