|
Last change
on this file since c0a75ab was 618be76, checked in by imbrsk <boris696boris@…>, 11 months ago |
|
Implement user management features with database integration
|
-
Property mode
set to
100644
|
|
File size:
708 bytes
|
| Line | |
|---|
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
|---|
| 2 |
|
|---|
| 3 | <PropertyGroup>
|
|---|
| 4 | <TargetFramework>net9.0</TargetFramework>
|
|---|
| 5 | <Nullable>enable</Nullable>
|
|---|
| 6 | <ImplicitUsings>enable</ImplicitUsings>
|
|---|
| 7 | <RootNamespace>iknow_api</RootNamespace>
|
|---|
| 8 | </PropertyGroup>
|
|---|
| 9 |
|
|---|
| 10 | <ItemGroup>
|
|---|
| 11 | <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.9" />
|
|---|
| 12 | <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.10">
|
|---|
| 13 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|---|
| 14 | <PrivateAssets>all</PrivateAssets>
|
|---|
| 15 | </PackageReference>
|
|---|
| 16 | <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|---|
| 17 | </ItemGroup>
|
|---|
| 18 |
|
|---|
| 19 | </Project>
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.