21 lines
910 B
XML
21 lines
910 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Yavsc.cli</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" />
|
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Yavsc.Abstract\Yavsc.Abstract.csproj" />
|
|
<ProjectReference Include="..\Yavsc.Server\Yavsc.Server.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|