-
Notifications
You must be signed in to change notification settings - Fork 25
/
HelloRin.csproj
27 lines (21 loc) · 1.01 KB
/
HelloRin.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="log4net" Version="2.0.8" />
<PackageReference Include="MessagePack" Version="2.2.60" />
<PackageReference Include="Grpc.AspNetCore" Version="2.27.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Rin.Extensions.EntityFrameworkCore\Rin.Extensions.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\src\Rin.Extensions.Log4NetAppender\Rin.Extensions.Log4NetAppender.csproj" />
<ProjectReference Include="..\..\src\Rin.Mvc\Rin.Mvc.csproj" />
<ProjectReference Include="..\..\src\Rin.Storage.Redis\Rin.Storage.Redis.csproj" />
<ProjectReference Include="..\..\src\Rin\Rin.csproj" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos\greet.proto" GrpcServices="Both" />
</ItemGroup>
</Project>