mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
29 lines
722 B
XML
29 lines
722 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Controllers" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="backends.yaml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MongoDB.Driver" Version="2.11.3" />
|
|
<PackageReference Include="MongoDB.Driver.GridFS" Version="2.11.3" />
|
|
<PackageReference Include="YamlDotNet" Version="8.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<_ContentIncludedByDefault Remove="Properties\launchSettings.json" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|