summaryrefslogtreecommitdiff
path: root/Djup/src/Djup.fsproj
diff options
context:
space:
mode:
Diffstat (limited to 'Djup/src/Djup.fsproj')
-rw-r--r--Djup/src/Djup.fsproj32
1 files changed, 32 insertions, 0 deletions
diff --git a/Djup/src/Djup.fsproj b/Djup/src/Djup.fsproj
new file mode 100644
index 0000000..dad45e9
--- /dev/null
+++ b/Djup/src/Djup.fsproj
@@ -0,0 +1,32 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>WinExe</OutputType>
+ <TargetFramework>net10.0</TargetFramework>
+ <RollForward>Major</RollForward>
+ <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
+ <PublishReadyToRun>false</PublishReadyToRun>
+ <TieredCompilation>false</TieredCompilation>
+ <ApplicationManifest>app.manifest</ApplicationManifest>
+ <ApplicationIcon>Icon.ico</ApplicationIcon>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Compile Include="Program.fs" />
+ <EmbeddedResource Include="Icon.ico" />
+ <EmbeddedResource Include="Icon.bmp" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Mibo" Version="1.*" />
+ <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
+ <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <MonoGameContentReference Include="Content/Content.mgcb" />
+ </ItemGroup>
+
+ <Import Project="../../Djup.Native/scripts/AddRuntimeTargetsToDepsJson.targets" />
+
+</Project>