Files
Poseidon/Build.fsproj
Moritz Jörg f8ab41bbda fix: Remove implicit FSharp.Core, Lib and Nuget for better CPM compat
With this commit all fsproj's dependent on the FSharp.Core
version defined in Directory.Packages.props. Can be
overwritten if needed with `VersionOverride=9.0.202`.
2025-11-11 17:02:07 +01:00

17 lines
550 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include=".build/Helpers.fs" />
<Compile Include=".build/Build.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fake.Core.Target" />
<PackageReference Include="Fake.DotNet.Cli" />
<PackageReference Include="Fake.IO.FileSystem" />
<PackageReference Include="Farmer" />
<PackageReference Include="FSharp.Core" />
</ItemGroup>
</Project>