Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pipelines/templates/build-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ steps:
command: custom
custom: format
projects: '$(solution)'
arguments: '--verify-no-changes'
arguments: '--verify-no-changes -v d'

# Use dotnet pack command to build the project because we want to generate build output
# in the correct location that pack command will be using. This build output location
Expand Down
4 changes: 3 additions & 1 deletion src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
<PackageVersion Include="MSTest.TestFramework" Version="3.3.1" />
<PackageVersion Include="MySqlConnector" Version="2.1.5" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.2" />
<PackageVersion Include="Npgsql" Version="7.0.1" />
<PackageVersion Include="Polly" Version="7.2.3" />
<PackageVersion Include="NJsonSchema" Version="10.9.0" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.1.118" />
Expand All @@ -56,6 +55,7 @@
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.4" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
<PackageVersion Include="Npgsql" Version="8.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageVersion Include="Microsoft.AspNetCore.Authorization" Version="6.0.29" />
Expand All @@ -64,5 +64,7 @@
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="6.0.29" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="6.0.0" />
<!--Once dotnet restore properly resolves that 'Npgsql' 7.0.7 is not vulnerable, set this ref to 7.0.7.-->
<PackageVersion Include="Npgsql" Version="8.0.3" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,12 @@ public void TestColumnDefinitionNegativeCases()
/// <summary>
/// Validates serialization and deserilization of Dictionary containing DatabaseTable
/// this is how we serialize and deserialize metadataprovider.EntityToDatabaseObject dict.
/// Temporarily ignore test for .net6 due to npgsql issue.
/// </summary>
[TestMethod]
#if NET6_0
[Ignore]
#endif
public void TestDictionaryDatabaseObjectSerializationDeserialization()
{
InitializeObjects();
Expand Down