yavsc/src/cli/cli.csproj

22 lines
983 B
XML
Raw Normal View History

2025-07-16 00:47:50 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2025-06-08 14:41:50 +01:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2026-04-19 17:23:18 +01:00
<TargetFramework>net10.0</TargetFramework>
2025-06-08 14:41:50 +01:00
<ImplicitUsings>enable</ImplicitUsings>
2026-02-22 23:39:56 +00:00
<RootNamespace>Yavsc.cli</RootNamespace>
2026-05-28 22:18:26 +01:00
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
2025-06-08 14:41:50 +01:00
</PropertyGroup>
<ItemGroup>
2025-07-16 00:47:50 +01:00
<PackageReference Include="Microsoft.AspNetCore.Razor" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" />
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
2026-02-14 17:52:01 +00:00
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.Logging" />
2025-07-16 00:47:50 +01:00
<PackageReference Include="Newtonsoft.Json" />
2025-06-08 14:41:50 +01:00
</ItemGroup>
<ItemGroup>
2026-02-28 21:17:54 +00:00
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.Abstract.csproj" />
<ProjectReference Include="..\Yavsc.Server\Yavsc.Server.csproj" />
2025-06-08 14:41:50 +01:00
</ItemGroup>
2026-05-28 22:18:26 +01:00
</Project>