mirror of
https://github.com/Smaug123/WoofWare.Whippet
synced 2025-10-06 08:18:39 +00:00
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="RuntimeConfig.fs" />
|
|
<Compile Include="RuntimeConfigGen.fs" />
|
|
<Compile Include="AppContext.fs" />
|
|
<Compile Include="RuntimeLocator.fs" />
|
|
<Compile Include="Context.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="WoofWare.DotnetRuntimeLocator" Version="0.1.9" />
|
|
<PackageReference Include="Ionide.ProjInfo" Version="0.67.0" PrivateAssets="compile" />
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="17.2.0" ExcludeAssets="runtime" PrivateAssets="all" />
|
|
<PackageReference Include="NuGet.Frameworks" Version="6.11.1" ExcludeAssets="runtime" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WoofWare.Whippet.Core\WoofWare.Whippet.Core.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|