diff options
author | crupest <crupest@outlook.com> | 2022-12-03 19:17:50 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-03 19:20:04 +0800 |
commit | 5239049afe90d2ef926c1e1b917172b5f44b52fc (patch) | |
tree | ea212efd7a297b7ddc42fbabc9c830e839c16475 /BackEnd/Timeline.Tests/Helpers | |
parent | 27246baabce5a4c6e5145b16d0eac205e4f092df (diff) | |
download | timeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.tar.gz timeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.tar.bz2 timeline-5239049afe90d2ef926c1e1b917172b5f44b52fc.zip |
Fix upgrade dotnet to v7.
Diffstat (limited to 'BackEnd/Timeline.Tests/Helpers')
-rw-r--r-- | BackEnd/Timeline.Tests/Helpers/TestApplication.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline.Tests/Helpers/TestApplication.cs b/BackEnd/Timeline.Tests/Helpers/TestApplication.cs index 2c2856c1..617d2ec7 100644 --- a/BackEnd/Timeline.Tests/Helpers/TestApplication.cs +++ b/BackEnd/Timeline.Tests/Helpers/TestApplication.cs @@ -40,7 +40,7 @@ namespace Timeline.Tests.Helpers })
.ConfigureAppConfiguration((context, config) =>
{
- config.AddInMemoryCollection(new Dictionary<string, string>
+ config.AddInMemoryCollection(new Dictionary<string, string?>
{
[ApplicationConfiguration.FrontEndKey] = "Mock",
[ApplicationConfiguration.WorkDirectoryKey] = WorkDirectory
|