-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess.csproj
More file actions
25 lines (21 loc) · 829 Bytes
/
Copy pathprocess.csproj
File metadata and controls
25 lines (21 loc) · 829 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="temp\**\*.cs" />
<Compile Remove="Test\**\*.cs" />
<Content Remove="Test\**\*" />
<None Remove="Test\bin\**\*" />
<None Remove="Test\obj\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DM.DmProvider" Version="8.3.1.47463" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.36" />
<PackageReference Include="NEST" Version="7.17.5" />
<PackageReference Include="StackExchange.Redis" Version="2.12.14" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
</Project>