mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
61 lines
2.3 KiB
XML
61 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ApplicationIcon>Assets\favicon.ico</ApplicationIcon>
|
|
<AssemblyName>Remotely_Desktop</AssemblyName>
|
|
<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>
|
|
<Nullable>enable</Nullable>
|
|
</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>
|
|
<ProjectReference Include="..\Desktop.Shared\Desktop.Shared.csproj" />
|
|
<ProjectReference Include="..\Desktop.UI\Desktop.UI.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|