From e1a64eaef5bcdce06db3194ec35abb50b1ae6586 Mon Sep 17 00:00:00 2001 From: Andrii Kurdiumov Date: Thu, 21 Nov 2024 14:17:52 +0500 Subject: [PATCH 1/2] Remove .h files from compilation process There no need to have .h files as part of compilation,since only .c files produce something of value. .h included using preprocesor if needed. --- Cesium.Sdk/Sdk/Sdk.props | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Cesium.Sdk/Sdk/Sdk.props b/Cesium.Sdk/Sdk/Sdk.props index 9c1afd11..660be578 100644 --- a/Cesium.Sdk/Sdk/Sdk.props +++ b/Cesium.Sdk/Sdk/Sdk.props @@ -21,11 +21,6 @@ false - - - - - Date: Thu, 21 Nov 2024 15:23:18 +0600 Subject: [PATCH 2/2] Remove expectation of .h files --- Cesium.Sdk.Tests/EvaluationTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cesium.Sdk.Tests/EvaluationTests.cs b/Cesium.Sdk.Tests/EvaluationTests.cs index 39ef319b..6a204842 100644 --- a/Cesium.Sdk.Tests/EvaluationTests.cs +++ b/Cesium.Sdk.Tests/EvaluationTests.cs @@ -12,7 +12,7 @@ public class EvaluationTests(ITestOutputHelper testOutputHelper) : SdkTestBase(t [InlineData("SimpleCoreLibraryWithHeader")] public async Task Evaluation_EnableDefaultCompileItems(string projectName) { - HashSet expectedCompileItems = ["library.c", "library.h"]; + HashSet expectedCompileItems = ["library.c"]; var items = await ListItems(projectName, "Compile");