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>
|
2026-08-18 17:20:59 +01:00
|
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.1.0.0</FileVersion>
|
2026-08-18 19:18:36 +01:00
|
|
|
<InformationalVersion>1.1.0-beta.1+1.Branch.release-1.0.8-rc1.Sha.1167169aa89e1bf25290e9a152d27b357a500ab3</InformationalVersion>
|
2026-08-18 17:20:59 +01:00
|
|
|
<Version>1.1.0-beta.1</Version>
|
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-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-06-28 14:11:26 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="GitVersion.MsBuild" />
|
|
|
|
|
</ItemGroup>
|
2026-06-15 02:55:22 +01:00
|
|
|
</Project>
|