-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTenantAPI.csproj
52 lines (52 loc) · 1.96 KB
/
TenantAPI.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Services\Filters\**" />
<Compile Remove="Services\Handlers\**" />
<Content Remove="Services\Filters\**" />
<Content Remove="Services\Handlers\**" />
<EmbeddedResource Remove="Services\Filters\**" />
<EmbeddedResource Remove="Services\Handlers\**" />
<None Remove="Services\Filters\**" />
<None Remove="Services\Handlers\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Core" Version="1.6.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.20" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.17" />
<PackageReference Include="NWebsec.AspNetCore.Middleware" Version="3.0.0" />
<PackageReference Include="SendGrid" Version="9.25.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Dlls\" />
<Folder Include="Images\" />
</ItemGroup>
<ItemGroup>
<Reference Include="Pagination">
<HintPath>Dlls\InstantHelper.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="Dlls\InstantHelper.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>