24 lines
695 B
XML
24 lines
695 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
|
|
<DebugType>none</DebugType>
|
||
|
|
<DebugSymbols>false</DebugSymbols>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="JWT" Version="7.3.1" />
|
||
|
|
<PackageReference Include="Senparc.Weixin.Open" Version="4.13.1" />
|
||
|
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\Nirvana.Data\Nirvana.Data.csproj" />
|
||
|
|
<ProjectReference Include="..\YBDevice.Entity\YBDevice.Entity.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|