forked from dj-nitehawk/MiniDevTo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMiniDevTo.csproj
26 lines (22 loc) · 979 Bytes
/
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>CA2016;RCS1090;CS8618;IDE1006</NoWarn>
<UserSecretsId>e3f1b5f6-4d0f-436e-ac23-65ad51073ed4</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="3.4.0" />
<PackageReference Include="FastEndpoints.Security" Version="3.4.0" />
<PackageReference Include="FastEndpoints.Swagger" Version="3.4.0" />
<PackageReference Include="MongoDB.Entities" Version="20.26.1" />
<PackageReference Include="BCrypt.Net-Next" Version="4.0.2" />
</ItemGroup>
</Project>