Initial commit

This commit is contained in:
Smaug123
2025-02-13 23:30:15 +00:00
commit a5a3d87ba9
15 changed files with 505 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace WoofWare.DotnetRuntime
module Program =
let reallyMain (argv : string[]) : int = 0
[<EntryPoint>]
let main argv =
try
reallyMain argv
with _ ->
reraise ()

View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../WoofWare.DotnetRuntime/WoofWare.DotnetRuntime.fsproj"/>
</ItemGroup>
</Project>