2025-08-24 12:08:35 -03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<RootNamespace>Workshop10_API</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-09-09 20:16:58 -03:00
|
|
|
<PackageReference Include="FluentValidation" Version="12.0.0" />
|
2025-08-24 12:08:35 -03:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.2" />
|
2025-09-09 20:16:58 -03:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.8" />
|
|
|
|
|
<PackageReference Include="SharpGrip.FluentValidation.AutoValidation.Mvc" Version="1.5.0" />
|
2025-08-25 00:06:43 -03:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.3" />
|
2025-08-24 12:08:35 -03:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-09-09 20:16:58 -03:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Controllers\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-08-24 12:08:35 -03:00
|
|
|
</Project>
|