mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-06 22:48:41 +00:00
Initial commit
This commit is contained in:
11
WoofWare.DotnetRuntime.App/Program.fs
Normal file
11
WoofWare.DotnetRuntime.App/Program.fs
Normal 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 ()
|
18
WoofWare.DotnetRuntime.App/WoofWare.DotnetRuntime.App.fsproj
Normal file
18
WoofWare.DotnetRuntime.App/WoofWare.DotnetRuntime.App.fsproj
Normal 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>
|
||||
|
||||
|
Reference in New Issue
Block a user