mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
49 lines
2.6 KiB
XML
49 lines
2.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<RootNamespace>Remotely.ScreenCast.Win</RootNamespace>
|
|
<AssemblyName>Remotely_ScreenCast</AssemblyName>
|
|
<ApplicationIcon>favicon.ico</ApplicationIcon>
|
|
<Authors>Jared Goodwin</Authors>
|
|
<Company>Translucency Software</Company>
|
|
<Product>Remotely ScreenCast</Product>
|
|
<Description>Allows unattended remote control via the Remotely server.</Description>
|
|
<Copyright>Copyright © 2020 Translucency Software</Copyright>
|
|
<PackageProjectUrl>https://remotely.one</PackageProjectUrl>
|
|
<Platforms>AnyCPU;x86;x64</Platforms>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="favicon.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.MixedReality.WebRTC" Version="1.0.3" />
|
|
<PackageReference Include="NAudio" Version="1.10.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.1.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Protocols.MessagePack" Version="3.1.2" />
|
|
<PackageReference Include="SharpDX" Version="4.2.0" />
|
|
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
|
|
<PackageReference Include="SharpDX.DXGI" Version="4.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ScreenCast.Core\ScreenCast.Core.csproj" />
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
<Exec Command="if $(ConfigurationName) == Debug (
 if $(PlatformName) == Any CPU (
 md "$(SolutionDir)Agent\bin\Debug\netcoreapp3.1\ScreenCast\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\Debug\netcoreapp3.1\ScreenCast\" /y /e /i
 )
 if $(PlatformName) == x64 (
 md "$(SolutionDir)Agent\bin\x64\Debug\netcoreapp3.1\ScreenCast\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\x64\Debug\netcoreapp3.1\ScreenCast\" /y /e /i
 )
 if $(PlatformName) == x86 (
 md "$(SolutionDir)Agent\bin\x86\Debug\netcoreapp3.1\ScreenCast\"
 xcopy "$(TargetDir)*" "$(SolutionDir)Agent\bin\x86\Debug\netcoreapp3.1\ScreenCast\" /y /e /i
 )
)" />
|
|
</Target>
|
|
|
|
</Project>
|