24 lines
937 B
XML
24 lines
937 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor" Version="2.3.0" />
|
|||
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.36" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.3" />
|
|||
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.3" />
|
|||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.Abstract.csproj" />
|
|||
|
|
<ProjectReference Include="..\Yavsc.Server\Yavsc.Server.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|