40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.29.1" />
|
|
<PackageReference Include="Grpc.Core" Version="2.46.6" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.68.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Lagrange.Core" Version="0.3.1" />
|
|
<PackageReference Include="Mono.Cecil" Version="0.11.6" />
|
|
<PackageReference Include="SSH.NET" Version="2024.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Service\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="API/service.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="Service\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Service\**" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|