mirror of
https://git.tonybark.com/tonytins/Longhorn.git
synced 2026-02-10 08:14:51 -05:00
- Added Forward compatibility with newer SDKs. - Added root items into solution.
18 lines
525 B
XML
18 lines
525 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="2dog" Version="0.1.10-pre"/>
|
|
</ItemGroup>
|
|
|
|
<!-- Godot project location -->
|
|
<PropertyGroup>
|
|
<GodotProjectDir>./project</GodotProjectDir>
|
|
</PropertyGroup>
|
|
</Project>
|