insight/src/Agent/Insight.Agent/Insight.Agent.csproj

55 lines
1.9 KiB
XML
Raw Normal View History

2023-09-21 18:58:32 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>Insight.Agent</RootNamespace>
<Product>Insight</Product>
<AssemblyName>agent</AssemblyName>
2023-11-17 17:12:41 +01:00
<AssemblyVersion>2023.11.17.0</AssemblyVersion>
2023-09-21 18:58:32 +02:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.1" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="System.Management" Version="7.0.2" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="7.0.1" />
2023-11-17 17:12:41 +01:00
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.3.9" />
2023-09-21 22:10:55 +02:00
<PackageReference Include="Vaitr.Snmp" Version="2023.3.3" />
2023-09-21 18:58:32 +02:00
</ItemGroup>
<ItemGroup>
2023-09-21 22:10:55 +02:00
<ProjectReference Include="..\..\Core\Insight.Domain\Insight.Domain.csproj" />
2023-09-21 18:58:32 +02:00
</ItemGroup>
<ItemGroup>
<Reference Include="Interop.WUApiLib">
<HintPath>Assemblies\Interop.WUApiLib.dll</HintPath>
<Private>True</Private>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>