-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathContacts.API.csproj
More file actions
25 lines (21 loc) · 1.19 KB
/
Contacts.API.csproj
File metadata and controls
25 lines (21 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.0-rc.1.25458.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.1" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.56.0" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.0.2" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="18.0.2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="18.0.2" />
<PackageReference Include="NuGet.Packaging" Version="6.12.5" />
<ProjectReference Include="..\Contacts.Application\Contacts.Application.csproj" />
<ProjectReference Include="..\Contacts.Infrastructure\Contacts.Infrastructure.csproj" />
</ItemGroup>
</Project>