mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
48 lines
2.3 KiB
XML
48 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<Copyright>Copyright © 2023 Immense Networks</Copyright>
|
|
<Description>Background service that maintains a connection to the Remotely server. The service is used for remote support and maintenance by this computer's administrators.</Description>
|
|
<Authors>Jared Goodwin</Authors>
|
|
<Product>Remotely Agent</Product>
|
|
<Company>Immense Networks</Company>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
<AssemblyName>Remotely_Agent</AssemblyName>
|
|
<RootNamespace>Remotely.Agent</RootNamespace>
|
|
<ApplicationIcon>Assets\favicon.ico</ApplicationIcon>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Assets\favicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting.WindowsServices" Version="8.0.7" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="8.0.7" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.EventLog" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="8.0.7" />
|
|
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.4.3" />
|
|
<PackageReference Include="Microsoft.WSMan.Management" Version="7.4.3" />
|
|
<PackageReference Include="Microsoft.WSMan.Runtime" Version="7.4.3" />
|
|
<PackageReference Include="System.Management.Automation" Version="7.4.3" />
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Desktop.Native\Desktop.Native.csproj" />
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|