Files
FCP-Mod-Updater/FCPModUpdater.csproj
T

25 lines
853 B
XML
Raw Permalink Normal View History

2026-02-04 08:58:36 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
2026-02-04 15:48:36 +08:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2026-02-04 08:58:36 +08:00
</PropertyGroup>
<ItemGroup>
2026-02-04 09:30:38 +08:00
<PackageReference Include="CliWrap" Version="3.10.0" />
2026-02-04 08:58:36 +08:00
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Spectre.Console" Version="0.54.0" />
<PackageReference Include="Spectre.Console.Cli" Version="0.53.1" />
</ItemGroup>
2026-02-04 12:46:58 +08:00
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
2026-02-04 08:58:36 +08:00
</Project>