forked from dj-nitehawk/MiniDevTo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMiniDevTo.csproj
27 lines (23 loc) · 1.03 KB
/
MiniDevTo.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>CA2016;RCS1090;CS8618;IDE1006</NoWarn>
<UserSecretsId>a2d96a9b-0155-49af-a39c-ed31945635cc</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Article Src\**" />
<Content Remove="Article Src\**" />
<EmbeddedResource Remove="Article Src\**" />
<None Remove="Article Src\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FastEndpoints" Version="4.2.0" />
<PackageReference Include="FastEndpoints.Security" Version="4.2.0" />
<PackageReference Include="FastEndpoints.Swagger" Version="4.2.0" />
<PackageReference Include="FluentValidation" Version="11.0.1" />
<PackageReference Include="MongoDB.Entities" Version="20.26.3" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
</ItemGroup>
</Project>