MTWorkHR.API.csproj 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <InvariantGlobalization>false</InvariantGlobalization>
  7. <UserSecretsId>2b1d369c-a1e3-48bb-a35f-1b43b4e6c067</UserSecretsId>
  8. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Azure.Storage.Blobs" Version="12.20.0" />
  12. <PackageReference Include="DevExpress.AspNetCore.Reporting" Version="24.1.6" />
  13. <PackageReference Include="dotenv.net" Version="3.2.0" />
  14. <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.8" />
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.1">
  16. <PrivateAssets>all</PrivateAssets>
  17. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  18. </PackageReference>
  19. <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
  20. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
  21. <PackageReference Include="Moq" Version="4.20.72" />
  22. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\MTWorkHR.Application\MTWorkHR.Application.csproj" />
  26. <ProjectReference Include="..\MTWorkHR.Infrastructure\MTWorkHR.Infrastructure.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Update="Reports\ContractReport.cs">
  30. <SubType>XtraReport</SubType>
  31. </Compile>
  32. <Compile Update="Reports\EmployeeContract.cs">
  33. <SubType>XtraReport</SubType>
  34. </Compile>
  35. </ItemGroup>
  36. </Project>