Files
WatchIt/WatchIt.WebAPI/WatchIt.WebAPI.Validators/WatchIt.WebAPI.Validators.csproj

20 lines
673 B
XML
Raw Normal View History

2024-03-28 19:17:46 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2024-04-27 22:36:16 +02:00
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-03-28 19:17:46 +01:00
2024-04-27 22:36:16 +02:00
<ItemGroup>
<ProjectReference Include="..\..\WatchIt.Common\WatchIt.Common.Model\WatchIt.Common.Model.csproj" />
<ProjectReference Include="..\..\WatchIt.Database\WatchIt.Database\WatchIt.Database.csproj" />
</ItemGroup>
2024-03-28 19:17:46 +01:00
2024-04-27 22:36:16 +02:00
<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.9.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.9.0" />
</ItemGroup>
2024-03-28 19:17:46 +01:00
</Project>