mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
* Add Azure Pipelines yml. * Remove Server Installer. * Update Release Build.yml for Azure Pipelines * Update Release Build.yml * Update Release Build.yml for Azure Pipelines * Update Release Build.yml for Azure Pipelines * Update Release Build.yml for Azure Pipelines * Update Release Build.yml for Azure Pipelines * Update signtool.exe * Update Release Build.yml * Update Publish.ps1 * Update pipeline and Dockerfile. * Move docker files. * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Move files. * Update Dockerfile * Update Dockerfile * Create RewritableStream. * Finish implementation of rewritable stream and embedded data searcher. * Remove RelayCode. * Get branding from default org if orgId is missing. * Update README.md * Remove AppConstants.ServerUrl. Fix main module file path. * Update submodule. * Extract embedded data in Program.cs. * Add logging. Update submodule. * Remove size block. BinaryWriter prefixes size. * Remove unused async * Update Immense.RemoteControl * Update Release Build.yml for Azure Pipelines * Update Release Build.yml for Azure Pipelines * Use UpgradeService for determining out of date clients.
69 lines
2.8 KiB
XML
69 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ApplicationIcon>Assets\favicon.ico</ApplicationIcon>
|
|
<AssemblyName>Remotely_Desktop</AssemblyName>
|
|
<RootNamespace>Remotely.Desktop.XPlat</RootNamespace>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PackageId>Remotely Desktop</PackageId>
|
|
<Authors>Jared Goodwin</Authors>
|
|
<Company>Immense Networks</Company>
|
|
<Product>Remotely Desktop</Product>
|
|
<Description>Desktop client for allowing your IT admin to provide remote support.</Description>
|
|
<Copyright>Copyright © 2023 Immense Networks</Copyright>
|
|
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Update="**\*.xaml.cs">
|
|
<DependentUpon>%(Filename)</DependentUpon>
|
|
</Compile>
|
|
<AvaloniaResource Include="**\*.xaml">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\*" />
|
|
<AvaloniaResource Remove="Models\**" />
|
|
<Compile Remove="Models\**" />
|
|
<EmbeddedResource Remove="Models\**" />
|
|
<None Remove="Models\**" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AvaloniaResource Remove="Assets\Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="Assets\Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Assets\Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
|
|
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.18" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Desktop.Shared\Desktop.Shared.csproj" />
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
<ProjectReference Include="..\submodules\Immense.RemoteControl\Desktop.Linux\Desktop.Linux.csproj" />
|
|
<ProjectReference Include="..\submodules\Immense.RemoteControl\Desktop.Shared\Desktop.Shared.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|