diff --git a/AaxDecrypter/AaxDecrypter.csproj b/AaxDecrypter/AaxDecrypter.csproj index 56cdefbf..3c0586b9 100644 --- a/AaxDecrypter/AaxDecrypter.csproj +++ b/AaxDecrypter/AaxDecrypter.csproj @@ -1,11 +1,12 @@  - net6.0 + net6.0-windows - + + diff --git a/AaxDecrypter/AaxcDownloadMultiConverter.cs b/AaxDecrypter/AaxcDownloadMultiConverter.cs index 79560158..badf2b0e 100644 --- a/AaxDecrypter/AaxcDownloadMultiConverter.cs +++ b/AaxDecrypter/AaxcDownloadMultiConverter.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO; using System.Linq; using AAXClean; +using AAXClean.Codecs; using Dinah.Core.StepRunner; using FileManager; @@ -117,7 +118,7 @@ That naming may not be desirable for everyone, but it's an easy change to instea AaxFile.ConvertToMultiMp3(splitChapters, newSplitCallback => { createOutputFileStream(++chapterCount, splitChapters, newSplitCallback); - newSplitCallback.LameConfig.ID3.Track = chapterCount.ToString(); + ((NAudio.Lame.LameConfig)newSplitCallback.UserState).ID3.Track = chapterCount.ToString(); }); } diff --git a/AaxDecrypter/AaxcDownloadSingleConverter.cs b/AaxDecrypter/AaxcDownloadSingleConverter.cs index d4d6b22a..b824fe90 100644 --- a/AaxDecrypter/AaxcDownloadSingleConverter.cs +++ b/AaxDecrypter/AaxcDownloadSingleConverter.cs @@ -1,6 +1,7 @@ using System; using System.IO; using AAXClean; +using AAXClean.Codecs; using Dinah.Core.StepRunner; using FileManager; diff --git a/AppScaffolding/AppScaffolding.csproj b/AppScaffolding/AppScaffolding.csproj index 5c1c14ab..12f2ed4d 100644 --- a/AppScaffolding/AppScaffolding.csproj +++ b/AppScaffolding/AppScaffolding.csproj @@ -2,8 +2,8 @@ - net6.0 - 6.7.8.1 + net6.0-windows + 6.7.8.5 diff --git a/ApplicationServices/ApplicationServices.csproj b/ApplicationServices/ApplicationServices.csproj index 9b9ce79e..2dab5237 100644 --- a/ApplicationServices/ApplicationServices.csproj +++ b/ApplicationServices/ApplicationServices.csproj @@ -1,7 +1,7 @@ - net6.0 + net6.0-windows diff --git a/AudibleUtilities/AudibleUtilities.csproj b/AudibleUtilities/AudibleUtilities.csproj index 9053dbab..cb36d510 100644 --- a/AudibleUtilities/AudibleUtilities.csproj +++ b/AudibleUtilities/AudibleUtilities.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/DataLayer/DataLayer.csproj b/DataLayer/DataLayer.csproj index fbec2a27..93e05cd2 100644 --- a/DataLayer/DataLayer.csproj +++ b/DataLayer/DataLayer.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/DtoImporterService/DtoImporterService.csproj b/DtoImporterService/DtoImporterService.csproj index bfa499c9..a9b17110 100644 --- a/DtoImporterService/DtoImporterService.csproj +++ b/DtoImporterService/DtoImporterService.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/FileLiberator/ConvertToMp3.cs b/FileLiberator/ConvertToMp3.cs index 106d4072..12b51745 100644 --- a/FileLiberator/ConvertToMp3.cs +++ b/FileLiberator/ConvertToMp3.cs @@ -2,6 +2,7 @@ using System.IO; using System.Threading.Tasks; using AAXClean; +using AAXClean.Codecs; using DataLayer; using Dinah.Core; using Dinah.Core.ErrorHandling; diff --git a/FileLiberator/FileLiberator.csproj b/FileLiberator/FileLiberator.csproj index 1687c788..3da05437 100644 --- a/FileLiberator/FileLiberator.csproj +++ b/FileLiberator/FileLiberator.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/LibationCli/LibationCli.csproj b/LibationCli/LibationCli.csproj index 5bc936a7..6b3a9bc9 100644 --- a/LibationCli/LibationCli.csproj +++ b/LibationCli/LibationCli.csproj @@ -3,7 +3,7 @@ Exe - net6.0 + net6.0-windows true true diff --git a/LibationFileManager/LibationFileManager.csproj b/LibationFileManager/LibationFileManager.csproj index 9849e96d..422f94a6 100644 --- a/LibationFileManager/LibationFileManager.csproj +++ b/LibationFileManager/LibationFileManager.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/LibationSearchEngine/LibationSearchEngine.csproj b/LibationSearchEngine/LibationSearchEngine.csproj index 0e03491d..9fc7e889 100644 --- a/LibationSearchEngine/LibationSearchEngine.csproj +++ b/LibationSearchEngine/LibationSearchEngine.csproj @@ -1,7 +1,7 @@  - net6.0 + net6.0-windows diff --git a/_Tests/AudibleUtilities.Tests/AudibleUtilities.Tests.csproj b/_Tests/AudibleUtilities.Tests/AudibleUtilities.Tests.csproj index d632cf44..7af125b7 100644 --- a/_Tests/AudibleUtilities.Tests/AudibleUtilities.Tests.csproj +++ b/_Tests/AudibleUtilities.Tests/AudibleUtilities.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net6.0-windows false diff --git a/_Tests/FileLiberator.Tests/FileLiberator.Tests.csproj b/_Tests/FileLiberator.Tests/FileLiberator.Tests.csproj index a166ec93..70c85bab 100644 --- a/_Tests/FileLiberator.Tests/FileLiberator.Tests.csproj +++ b/_Tests/FileLiberator.Tests/FileLiberator.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net6.0-windows false diff --git a/_Tests/LibationFileManager.Tests/LibationFileManager.Tests.csproj b/_Tests/LibationFileManager.Tests/LibationFileManager.Tests.csproj index 1b894399..eb8700c9 100644 --- a/_Tests/LibationFileManager.Tests/LibationFileManager.Tests.csproj +++ b/_Tests/LibationFileManager.Tests/LibationFileManager.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net6.0-windows false diff --git a/_Tests/LibationSearchEngine.Tests/LibationSearchEngine.Tests.csproj b/_Tests/LibationSearchEngine.Tests/LibationSearchEngine.Tests.csproj index 89273f5d..f6ca4b2c 100644 --- a/_Tests/LibationSearchEngine.Tests/LibationSearchEngine.Tests.csproj +++ b/_Tests/LibationSearchEngine.Tests/LibationSearchEngine.Tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net6.0-windows false