Skip to content

Commit

Permalink
Fix test build error when BuildAsStandalone is true (dotnet#93457)
Browse files Browse the repository at this point in the history
Build error of provider.ilproj test when BuildAsStandalone is true
`EXEC : error : No entry point declared for executable`

This is due to dotnet#92029
Restore OutputType to Library.
  • Loading branch information
clamp03 committed Oct 17, 2023
1 parent ccc475e commit b38e86d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tests/Regressions/coreclr/22021/provider.ilproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="provider.il" />
</ItemGroup>
Expand Down

0 comments on commit b38e86d

Please sign in to comment.