diff --git a/DrsPlugin/DrsPlugin.csproj b/DrsPlugin/DrsPlugin.csproj index 7330f62..c76870b 100644 --- a/DrsPlugin/DrsPlugin.csproj +++ b/DrsPlugin/DrsPlugin.csproj @@ -1,6 +1,6 @@  - net7.0 + net8.0 false embedded en-GB diff --git a/GoDartsPluginUI/GoDartsPluginUI.csproj b/GoDartsPluginUI/GoDartsPluginUI.csproj index 18c5d10..eb56d48 100644 --- a/GoDartsPluginUI/GoDartsPluginUI.csproj +++ b/GoDartsPluginUI/GoDartsPluginUI.csproj @@ -1,6 +1,6 @@  - net7.0-windows + net8.0-windows GoDartsPluginUI false true diff --git a/HIC.Demography/HIC.Demography.csproj b/HIC.Demography/HIC.Demography.csproj index 6b42ba5..3db7b67 100644 --- a/HIC.Demography/HIC.Demography.csproj +++ b/HIC.Demography/HIC.Demography.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable enable embedded diff --git a/HICPlugin/HICPlugin.csproj b/HICPlugin/HICPlugin.csproj index 3a3976c..99b2e89 100644 --- a/HICPlugin/HICPlugin.csproj +++ b/HICPlugin/HICPlugin.csproj @@ -1,6 +1,6 @@  - net7.0 + net8.0 HICPlugin HICPlugin Copyright © 2016 diff --git a/HICPluginInteractive/HICPluginInteractive.csproj b/HICPluginInteractive/HICPluginInteractive.csproj index 4d003c7..6a292ba 100644 --- a/HICPluginInteractive/HICPluginInteractive.csproj +++ b/HICPluginInteractive/HICPluginInteractive.csproj @@ -1,6 +1,6 @@  - net7.0-windows + net8.0-windows HICPluginInteractive HICPluginInteractive Copyright © 2018 diff --git a/HICPluginTests/HICPluginTests.csproj b/HICPluginTests/HICPluginTests.csproj index ce49553..c52b9ea 100644 --- a/HICPluginTests/HICPluginTests.csproj +++ b/HICPluginTests/HICPluginTests.csproj @@ -1,6 +1,6 @@ - net7.0-windows + net8.0-windows HICPluginTests HICPluginTests Copyright © 2016 diff --git a/HICPluginTests/PackageListIsCorrectTests.cs b/HICPluginTests/PackageListIsCorrectTests.cs index f8666cd..9738a57 100644 --- a/HICPluginTests/PackageListIsCorrectTests.cs +++ b/HICPluginTests/PackageListIsCorrectTests.cs @@ -93,7 +93,6 @@ private static IEnumerable GetCsprojFiles(DirectoryInfo root) { return root.EnumerateFiles("*.csproj", EnumerationOptions).Select(f => f.FullName).Where(f => !f.Contains("tests", StringComparison.InvariantCultureIgnoreCase)); } - /// /// Find the sole packages.md file wherever in the repo it lives. Error if multiple or none. /// @@ -101,7 +100,9 @@ private static IEnumerable GetCsprojFiles(DirectoryInfo root) /// private static string[] GetPackagesMarkdown(DirectoryInfo root) { - var path = root.EnumerateFiles("packages.md", EnumerationOptions).Select(f => f.FullName).ToArray(); + var path = root.EnumerateFiles("packages.md", EnumerationOptions).Select(f => f.FullName) + .Where(f => !f.Contains("RDMP\\Documentation\\CodeTutorials\\Packages.md", StringComparison.InvariantCultureIgnoreCase)) + .ToArray(); Assert.That(path.Length==0, Is.False); return path; } diff --git a/JiraPlugin/JiraPlugin.csproj b/JiraPlugin/JiraPlugin.csproj index ba3ec65..1e1211c 100644 --- a/JiraPlugin/JiraPlugin.csproj +++ b/JiraPlugin/JiraPlugin.csproj @@ -1,6 +1,6 @@  - net7.0 + net8.0 JIRATicketing Hewlett-Packard Company JIRATicketing diff --git a/Packages.md b/Packages.md index b8443ab..0864391 100644 --- a/Packages.md +++ b/Packages.md @@ -11,4 +11,4 @@ | --------------------------------- | ------------------------------------------------------- | ------------------------------------------------------------------------- | --------------------------------------------- | -------------------------- | | RestSharp | [GitHub](https://github.com/restsharp/RestSharp) | [Apache 2.0](https://github.com/restsharp/RestSharp/blob/dev/LICENSE.txt) | REST API wrapper | | | System.ServiceModel.Http | [GitHub](https://github.com/dotnet/corefx) | [MIT](https://opensource.org/licenses/MIT) | Enables interaction with Web APIs (SciStore) | | -| [NLog](https://nlog-project.org/) | [GitHub](https://github.com/NLog/NLog) | [BSD 3-Clause](https://github.com/NLog/NLog/blob/dev/LICENSE.txt) | Flexible user configurable logging | | +| Microsoft.XmlSerializer.Generator | [Microsoft](https://learn.microsoft.com/en-us/dotnet/core/additional-tools/xml-serializer-generator) | [MIT](https://opensource.org/licenses/MIT) | XML handling improvements | diff --git a/Plugin/main/main.csproj b/Plugin/main/main.csproj index 335445a..c94bcf0 100644 --- a/Plugin/main/main.csproj +++ b/Plugin/main/main.csproj @@ -1,6 +1,6 @@  - net7.0 + net8.0 Rdmp.Hic.Plugin Rdmp.Hic.Plugin Copyright © 2019 diff --git a/Plugin/windows/windows.csproj b/Plugin/windows/windows.csproj index 4a23c69..c760a11 100644 --- a/Plugin/windows/windows.csproj +++ b/Plugin/windows/windows.csproj @@ -1,7 +1,7 @@  {07F9F874-1306-4FE6-A03F-A483592BBC7F} - net7.0-windows + net8.0-windows Rdmp.Hic.Plugin Rdmp.Hic.Plugin Copyright © 2019 diff --git a/RDMP b/RDMP index ef2eddb..55fa1df 160000 --- a/RDMP +++ b/RDMP @@ -1 +1 @@ -Subproject commit ef2eddbe04cf3cb52915ac8d8b556f3a497dfd84 +Subproject commit 55fa1df55760b615f99aec2cd30cdcd7f4890916 diff --git a/SCIStorePlugin/SCIStorePlugin.csproj b/SCIStorePlugin/SCIStorePlugin.csproj index 5abaa6e..616dfa4 100644 --- a/SCIStorePlugin/SCIStorePlugin.csproj +++ b/SCIStorePlugin/SCIStorePlugin.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 ..\ SCIStore