C#: Add integration test for DB creation using .NET 10 RC 2.

This commit is contained in:
Michael Nebel
2025-10-22 12:59:40 +02:00
parent d5ff9bf5d0
commit e14879ba33
4 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1 @@
Console.WriteLine($"<arguments>{string.Join(",", args)}</arguments>");

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,5 @@
{
"sdk": {
"version": "10.0.100-rc.2.25502.107"
}
}

View File

@@ -0,0 +1,4 @@
import os
def test(codeql, csharp):
codeql.database.create(command="dotnet build")