Skip to content

Commit

Permalink
Add net48 test setting
Browse files Browse the repository at this point in the history
  • Loading branch information
NATSUME Hiroaki committed Feb 19, 2024
1 parent bdead2a commit 100efb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OptunaTests/OptunaTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFrameworks>net48; net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion OptunaTests/Storage/RDB/StorageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SqliteStorageTests : IClassFixture<CreateStorage>, IDisposable
{
private readonly string _createFilePath = @"TestFile/created.db";
private readonly string _existFilePath = @"TestFile/sqlite.db";
private readonly List<string> _tempDBPaths = new();
private readonly List<string> _tempDBPaths = new List<string>();

[Fact()]
public void NoFileTest()
Expand Down
2 changes: 1 addition & 1 deletion Tunny.CoreTests/Tunny.CoreTests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFrameworks>net48; net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
Expand Down

0 comments on commit 100efb0

Please sign in to comment.