You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-01 16:38:31 +00:00
Update Godot.SourceGenerators packages
Fix issues Update System.Security.Cryptography.Pkcs again Downgrade Microsoft.CodeAnalysis.CSharp.Workspaces
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System.Threading.Tasks;
|
||||
using Xunit;
|
||||
|
||||
namespace Godot.SourceGenerators.Tests;
|
||||
@@ -5,7 +6,7 @@ namespace Godot.SourceGenerators.Tests;
|
||||
public class ExportDiagnosticsTests
|
||||
{
|
||||
[Fact]
|
||||
public async void StaticMembers()
|
||||
public async Task StaticMembers()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
"ExportDiagnostics_GD0101.cs",
|
||||
@@ -14,7 +15,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void TypeIsNotSupported()
|
||||
public async Task TypeIsNotSupported()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
"ExportDiagnostics_GD0102.cs",
|
||||
@@ -23,7 +24,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ReadOnly()
|
||||
public async Task ReadOnly()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
"ExportDiagnostics_GD0103.cs",
|
||||
@@ -32,7 +33,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void WriteOnly()
|
||||
public async Task WriteOnly()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
"ExportDiagnostics_GD0104.cs",
|
||||
@@ -41,7 +42,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void Indexer()
|
||||
public async Task Indexer()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
"ExportDiagnostics_GD0105.cs",
|
||||
@@ -50,7 +51,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ExplicitInterfaceImplementation()
|
||||
public async Task ExplicitInterfaceImplementation()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0106.cs" },
|
||||
@@ -63,7 +64,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void NodeExports()
|
||||
public async Task NodeExports()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertyDefValGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0107.cs" },
|
||||
@@ -76,7 +77,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ExportToolButtonInNonToolClass()
|
||||
public async Task ExportToolButtonInNonToolClass()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0108.cs" },
|
||||
@@ -85,7 +86,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ExportAndExportToolButtonOnSameMember()
|
||||
public async Task ExportAndExportToolButtonOnSameMember()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0109.cs" },
|
||||
@@ -94,7 +95,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ExportToolButtonOnNonCallable()
|
||||
public async Task ExportToolButtonOnNonCallable()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0110.cs" },
|
||||
@@ -103,7 +104,7 @@ public class ExportDiagnosticsTests
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async void ExportToolButtonStoringCallable()
|
||||
public async Task ExportToolButtonStoringCallable()
|
||||
{
|
||||
await CSharpSourceGeneratorVerifier<ScriptPropertiesGenerator>.Verify(
|
||||
new string[] { "ExportDiagnostics_GD0111.cs" },
|
||||
|
||||
Reference in New Issue
Block a user