mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
71 lines
2.2 KiB
XML
71 lines
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<AssemblyName>Remotely_Desktop</AssemblyName>
|
|
<RootNamespace>Remotely.Desktop.Win</RootNamespace>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Description>Desktop client for allowing remote control via the Remotely server.</Description>
|
|
<Copyright>Copyright © 2020 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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="favicon.ico" />
|
|
<None Remove="Remotely_Icon.png" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.MixedReality.WebRTC" Version="1.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ScreenCast.Win\ScreenCast.Win.csproj" />
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="favicon.ico" />
|
|
<Resource Include="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="Controls\HostNamePrompt.xaml.cs">
|
|
<DependentUpon>HostNamePrompt.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="MainWindow.xaml.cs">
|
|
<SubType>Code</SubType>
|
|
<DependentUpon>MainWindow.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Page Update="Controls\HostNamePrompt.xaml">
|
|
<SubType>Designer</SubType>
|
|
</Page>
|
|
<Page Update="MainWindow.xaml">
|
|
<SubType>Designer</SubType>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Page>
|
|
</ItemGroup>
|
|
|
|
</Project> |