-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathWebApi.csproj
More file actions
36 lines (30 loc) · 1.51 KB
/
WebApi.csproj
File metadata and controls
36 lines (30 loc) · 1.51 KB
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-WebApi-45D99850-F294-4CA1-8E1B-72AFB991E4F2</UserSecretsId>
<CompileUsingReferenceAssemblies>false</CompileUsingReferenceAssemblies>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<NoWarn>NU5105;NU1507;CS1591;CS0618</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<NoWarn>NU5105;NU1507;CS1591;CS0618</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="[9.0,)"/>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.9"/>
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="[9.0,)"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[9.0,)"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="[9.0,)"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\BCrypt.Net.IdentityExtensions\BCrypt.Net.IdentityExtensions.csproj"/>
<ProjectReference Include="..\..\..\src\BCrypt.Net\BCrypt.Net.csproj"/>
</ItemGroup>
</Project>