Skip to content

Instantly share code, notes, and snippets.

@JeremyOttley
Created October 10, 2022 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeremyOttley/955d5e805d634fe13deb04204a89b00a to your computer and use it in GitHub Desktop.
Save JeremyOttley/955d5e805d634fe13deb04204a89b00a to your computer and use it in GitHub Desktop.
OSX F# single binary
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>true</PublishReadyToRun>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment