mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
* UI responsive table fix * Background scanning for backends * Callback URL parameter to notify on scan results
22 lines
811 B
XML
22 lines
811 B
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<Company>Volodymyr Smirnov</Company>
|
|
<Product>MalwareMultiScan Scanner</Product>
|
|
<AssemblyVersion>1.0.1</AssemblyVersion>
|
|
<FileVersion>1.0.1</FileVersion>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.17" />
|
|
<PackageReference Include="Hangfire.MemoryStorage" Version="1.7.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.9" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MalwareMultiScan.Backends\MalwareMultiScan.Backends.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|