forked from redis-developer/hitc-dotnet-redisearch-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNRedi2Read.csproj
30 lines (26 loc) · 1.33 KB
/
NRedi2Read.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
28
29
30
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<UserSecretsId>98e80674-1adc-4b07-a069-4c55bda3275e</UserSecretsId>
<RootNamespace>NRedi2Read</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile></DocumentationFile>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspNetCore.HealthChecks.Redis" Version="5.0.2" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.2" />
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="5.0.7" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NReJSON" Version="3.2.0" />
<PackageReference Include="StackExchange.Redis.Extensions.Newtonsoft" Version="6.4.5" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
<PackageReference Include="NRediSearch" Version="2.2.62" />
</ItemGroup>
<!-- uncomment below to build the client app -->
<!--<Target Name="BuildClientApp" AfterTargets="Build">
<Exec WorkingDirectory="./clientapp" command="yarn build" />
</Target>-->
</Project>