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>
|
2025-07-16 00:47:50 +01:00
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
2025-06-08 14:41:50 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</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" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
2025-06-08 14:41:50 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.Abstract.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Yavsc.Server\Yavsc.Server.csproj" />
|
|
|
|
|
</ItemGroup>
|
2026-02-02 00:39:06 +00:00
|
|
|
</Project>
|