Skip to content

Commit ba0f204

Browse files
committed
fix test
1 parent d315c93 commit ba0f204

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

test/FluentCommand.Entities/FluentCommand.Entities.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<LangVersion>latest</LangVersion>
77
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>

test/FluentCommand.Generators.Tests/FluentCommand.Generators.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<IsPackable>false</IsPackable>

test/FluentCommand.Performance/FluentCommand.Performance.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
66
<IsTestProject>false</IsTestProject>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>

test/FluentCommand.PostgreSQL.Tests/FluentCommand.PostgreSQL.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

test/FluentCommand.SQLite.Tests/FluentCommand.SQLite.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

test/FluentCommand.SqlServer.Tests/CsvTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ public void QueryCsvSteamAzurite()
5858

5959
string sql = "select TOP 1000 * from [User]";
6060

61-
session.Sql(sql)
62-
.QueryCsv(exportStream);
61+
session.Sql(sql).QueryCsv(exportStream);
6362

6463
exportStream.Flush();
6564
}

test/FluentCommand.SqlServer.Tests/DatabaseFixture.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
using XUnit.Hosting;
1414

15+
using static Azure.Storage.Blobs.BlobClientOptions;
16+
1517
namespace FluentCommand.SqlServer.Tests;
1618

1719
public class DatabaseFixture : TestApplicationFixture, IAsyncLifetime
@@ -72,7 +74,7 @@ protected override void ConfigureApplication(HostApplicationBuilder builder)
7274
);
7375

7476
// azurite tesing
75-
services.AddSingleton(sp => new BlobContainerClient(azuriteConnection, "fluent-command-testing"));
77+
services.AddSingleton(sp => new BlobContainerClient(azuriteConnection, "fluent-command-testing", new BlobClientOptions(ServiceVersion.V2023_11_03)));
7678

7779
// readonly intent connection
7880
connectionBuilder.ApplicationIntent = ApplicationIntent.ReadOnly;

test/FluentCommand.SqlServer.Tests/FluentCommand.SqlServer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

test/FluentCommand.Tests/FluentCommand.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
77
</PropertyGroup>

0 commit comments

Comments
 (0)