InkForge/InkForge.Api/InkForge.Api.csproj

24 lines
899 B
XML
Raw Normal View History

2024-02-02 18:46:24 +01:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<RootNamespace>InkForge.Api</RootNamespace>
</PropertyGroup>
<ItemGroup>
2024-02-02 19:38:13 +01:00
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
2024-02-07 22:16:59 +01:00
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" />
2024-02-02 19:38:13 +01:00
<PackageReference Include="Swashbuckle.AspNetCore" />
2024-02-07 22:16:59 +01:00
<PackageReference Include="System.IO.Hashing" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\InkForge.Api.Data\InkForge.Api.Data.csproj" />
<ProjectReference Include="..\migrations\InkForge.Api.Sqlite\InkForge.Api.Sqlite.csproj" />
<ProjectReference Include="..\shared\InkForge.Data\InkForge.Data.csproj" />
2024-02-02 18:46:24 +01:00
</ItemGroup>
2024-02-02 19:38:13 +01:00
</Project>