upgrade from dotnet 7 to dotnet 8 (#1529)

* upgrade sdk

* fix warnings in ersatztv.ffmpeg

* fix warnings in ersatztv.core

* fix warnings in ersatztv.infrastructure

* fix warnings in ersatztv.application

* disable analysis for migrations projects

* fix warnings in ersatztv.scanner

* fix warnings in ersatztv

* upgrade project framework

* update github actions and dockerfiles
This commit is contained in:
Jason Dove
2023-12-30 13:29:57 -06:00
committed by GitHub
parent 3a84af1626
commit 9471cb55dd
158 changed files with 429 additions and 435 deletions
@@ -813,13 +813,9 @@ public class ElasticSearchIndex : ISearchIndex
if (split.Length == 2 && !string.IsNullOrWhiteSpace(split[1]))
{
string key = split[0];
string value = split[1].ToLowerInvariant();
if (!result.ContainsKey(key))
{
result.Add(key, new List<string>());
}
result[key].Add(value);
string v2 = split[1].ToLowerInvariant();
result.TryAdd(key, new List<string>());
result[key].Add(v2);
}
}