16 lines
431 B
XML
16 lines
431 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.64.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Protobuf Include="..\..\Common\Protos\aia.proto" OutputDir="%(RelativePath)models/" />
|
|
</ItemGroup>
|
|
</Project>
|