-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathTodo.Api.csproj
28 lines (23 loc) · 1003 Bytes
/
Todo.Api.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
28
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>e616b306-8ad0-4843-a0e0-79b3b5655c22</UserSecretsId>
<ContainerImageName>todo-api</ContainerImageName>
<ContainerImageTag>latest</ContainerImageTag>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" PrivateAssets="all" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Microsoft.OpenApi" />
<PackageReference Include="MiniValidation" />
<PackageReference Include="Scalar.AspNetCore" />
</ItemGroup>
<ItemGroup>
<Using Include="TodoApi" />
<InternalsVisibleTo Include="Todo.Api.Tests" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TodoApp.ServiceDefaults\TodoApp.ServiceDefaults.csproj" />
</ItemGroup>
</Project>