Skip to content

Commit

Permalink
Revert "chore: Add runtime identifier to use only native 32-bit libra…
Browse files Browse the repository at this point in the history
…ries (#198)"

This reverts commit f6889e7.
This commit is reverted because it causes an error when building the docker image:
error NETSDK1084: There is no application host available for the specified RuntimeIdentifier 'linux-x86'.
  • Loading branch information
MrDave1999 committed Oct 31, 2024
1 parent f6889e7 commit da4d1be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Host/CTF.Host.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RuntimeIdentifier Condition="$([MSBuild]::IsOSPlatform('Windows'))">win-x86</RuntimeIdentifier>
<RuntimeIdentifier Condition="$([MSBuild]::IsOSPlatform('Linux'))">linux-x86</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Persistence\Persistence.InMemory\Persistence.InMemory.csproj" />
Expand All @@ -21,4 +19,6 @@
<PackageReference Include="BCrypt.Net-Next" />
</ItemGroup>

<Import Project="CopySQLiteLibrary.targets" />

</Project>

0 comments on commit da4d1be

Please sign in to comment.