Files
criminalmindsapi/server/server.csproj
T

23 lines
796 B
XML
Raw Normal View History

2022-06-19 16:42:02 -05:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2022-06-18 17:39:22 -05:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2022-06-18 17:39:22 -05:00
</PropertyGroup>
2022-06-19 23:07:59 -05:00
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
2022-06-18 17:39:22 -05:00
<ItemGroup>
<PackageReference Include="AspNetCoreRateLimit" Version="4.0.2" />
2022-06-20 23:09:47 -05:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.0.0" />
2022-06-19 16:42:02 -05:00
<PackageReference Include="MongoDB.Driver" Version="2.16.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
2022-06-18 17:39:22 -05:00
</ItemGroup>
</Project>