19 lines
532 B
XML
19 lines
532 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>NetmonitorServer</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Windows.Compatibility" Version="6.0.0" />
|
|
<PackageReference Include="TopShelf.ServiceInstaller" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Utils\Utils\Utils\Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|