mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
89 lines
3.8 KiB
XML
89 lines
3.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AssemblyName>Remotely_Desktop</AssemblyName>
|
|
<RootNamespace>Remotely.Desktop.Win</RootNamespace>
|
|
<ApplicationIcon>Assets\favicon.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Description>Desktop client for allowing your IT admin to provide remote support.</Description>
|
|
<Copyright>Copyright © 2021 Translucency Software</Copyright>
|
|
<PackageId>Remotely Desktop</PackageId>
|
|
<Authors>Jared Goodwin</Authors>
|
|
<Company>Translucency Software</Company>
|
|
<Product>Remotely Desktop</Product>
|
|
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
<StartupObject>Remotely.Desktop.Win.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Assets\favicon.ico" />
|
|
<None Remove="Assets\Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.MixedReality.WebRTC" Version="2.0.2" />
|
|
<PackageReference Include="NAudio" Version="1.10.0" />
|
|
<PackageReference Include="SharpDX" Version="4.2.0" />
|
|
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
|
|
<PackageReference Include="SharpDX.DXGI" Version="4.2.0" />
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Desktop.Core\Desktop.Core.csproj" />
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Assets\favicon.ico" />
|
|
<EmbeddedResource Include="Assets\Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ApplicationDefinition Update="App.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</ApplicationDefinition>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="App.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
<DependentUpon>App.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Views\HostNamePrompt.xaml.cs">
|
|
<DependentUpon>HostNamePrompt.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Views\MainWindow.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Page Update="Views\HostNamePrompt.xaml">
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Update="Views\MainWindow.xaml">
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="if $(SolutionDir) == *Undefined* (
 exit 0
)
if $(ConfigurationName) == Debug (
 if $(PlatformName) == Any CPU (
 md "$(SolutionDir)Agent\bin\Debug\net5.0\Desktop\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\Debug\net5.0\Desktop\" /y /e /i
 )
 if $(PlatformName) == x64 (
 md "$(SolutionDir)Agent\bin\x64\Debug\net5.0\Desktop\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\x64\Debug\net5.0\Desktop\" /y /e /i
 )
 if $(PlatformName) == x86 (
 md "$(SolutionDir)Agent\bin\x86\Debug\net5.0\Desktop\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\x86\Debug\net5.0\Desktop\" /y /e /i
 )
)" />
|
|
</Target>
|
|
|
|
</Project> |