-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWechat.csproj
More file actions
27 lines (24 loc) · 920 Bytes
/
Copy pathWechat.csproj
File metadata and controls
27 lines (24 loc) · 920 Bytes
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>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Hangfire" Version="1.6.21" />
<PackageReference Include="HangFire.Redis.StackExchange" Version="1.8.0" />
<PackageReference Include="Hangfire.Console" Version="1.4.2" />
<PackageReference Include="Grpc" Version="1.16.0" />
<PackageReference Include="Google.Protobuf" Version="3.6.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Api\" />
<Folder Include="Web\" />
<Folder Include="Background\" />
<Folder Include="Grpcs\" />
<Folder Include="Helpers\" />
</ItemGroup>
<ItemGroup>
<None Include="Wechat.csproj" />
</ItemGroup>
</Project>