Skip to content
Open
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 Cesium.Sdk.Tests/EvaluationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class EvaluationTests(ITestOutputHelper testOutputHelper) : SdkTestBase(t
[InlineData("SimpleCoreLibraryWithHeader")]
public async Task Evaluation_EnableDefaultCompileItems(string projectName)
{
HashSet<string> expectedCompileItems = ["library.c", "library.h"];
HashSet<string> expectedCompileItems = ["library.c"];

var items = await ListItems(projectName, "Compile");

Expand Down
5 changes: 0 additions & 5 deletions Cesium.Sdk/Sdk/Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,6 @@
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
</PropertyGroup>

<ItemGroup Label="DefaultItems">
<!-- .c files are included by the Microsoft.NET.Sdk using DefaultLanguageSourceExtension, but .h ones are not -->
<Compile Include="**/*.h" Exclude="$(DefaultItemExcludes);$(DefaultExcludesInProjectFolder)" Condition="$(EnableDefaultCompileItems) == 'true'" />
</ItemGroup>

<ItemGroup Condition=" $(SkipCesiumCompilerInstallation) != 'true' ">
<PackageReference Include="$(CesiumCompilerPackageName)"
Version="$(CesiumCompilerPackageVersion)"
Expand Down
Loading