mirror of
https://github.com/FalloutCollaborationProject/FCP-Mod-Updater.git
synced 2026-07-27 17:04:05 -07:00
18 lines
569 B
XML
18 lines
569 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>net10.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<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>
|
||
|
|
|
||
|
|
</Project>
|