aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-02 23:30:34 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-02 23:30:34 +0200
commit0dcd742a3c35527386a93e1b1ef761c2aeff8308 (patch)
treed5adb3fee35e73af95fa5d68b5316d25522471de /Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj
parent1a7fb274158f8a0e279aef26206a65fefac8c4c3 (diff)
downloadTango-0dcd742a3c35527386a93e1b1ef761c2aeff8308.tar.gz
Tango-0dcd742a3c35527386a93e1b1ef761c2aeff8308.zip
Implemented Tango.RemoteDesktop.
Implemented png 8 bit quantization. Implemented RasterFrame bounds clipping. Refactored VectorFrame to use indexed colors.
Diffstat (limited to 'Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj')
-rw-r--r--Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj106
1 files changed, 106 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj b/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj
new file mode 100644
index 000000000..f760b43dc
--- /dev/null
+++ b/Software/Visual_Studio/Tango.RemoteDesktop/Tango.RemoteDesktop.csproj
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{A78068D4-2061-4376-8EDE-583D8D880DEC}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Tango.RemoteDesktop</RootNamespace>
+ <AssemblyName>Tango.RemoteDesktop</AssemblyName>
+ <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <Deterministic>true</Deterministic>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="PresentationCore" />
+ <Reference Include="PresentationFramework" />
+ <Reference Include="SharpDX">
+ <HintPath>..\..\..\..\..\..\DATA\Development\WpfVideoTools\WpfVideoTools\Resources\Referenced Assemblies\SharpDX.dll</HintPath>
+ </Reference>
+ <Reference Include="SharpDX.Direct3D11">
+ <HintPath>..\..\..\..\..\..\DATA\Development\WpfVideoTools\WpfVideoTools\Resources\Referenced Assemblies\SharpDX.Direct3D11.dll</HintPath>
+ </Reference>
+ <Reference Include="SharpDX.DXGI">
+ <HintPath>..\..\..\..\..\..\DATA\Development\WpfVideoTools\WpfVideoTools\Resources\Referenced Assemblies\SharpDX.DXGI.dll</HintPath>
+ </Reference>
+ <Reference Include="SharpDX.Mathematics">
+ <HintPath>..\..\..\..\..\..\DATA\Development\WpfVideoTools\WpfVideoTools\Resources\Referenced Assemblies\SharpDX.Mathematics.dll</HintPath>
+ </Reference>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Drawing" />
+ <Reference Include="System.Windows" />
+ <Reference Include="System.Windows.Forms" />
+ <Reference Include="System.Xaml" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="Microsoft.CSharp" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Net.Http" />
+ <Reference Include="System.Xml" />
+ <Reference Include="WindowsBase" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="BitmapComparerResult.cs" />
+ <Compile Include="CaptureRegion.cs" />
+ <Compile Include="CaptureMethods\BitBltScreenCapture.cs" />
+ <Compile Include="CaptureMethods\DirectXScreenCapture.cs" />
+ <Compile Include="CaptureMethods\GdiScreenCapture.cs" />
+ <Compile Include="Clipping\ClipResult.cs" />
+ <Compile Include="Clipping\BitmapCliper.cs" />
+ <Compile Include="Comparers\VectorBitmapComparer.cs" />
+ <Compile Include="Encoders\GifEncoder.cs" />
+ <Compile Include="Encoders\Png8BitEncoder.cs" />
+ <Compile Include="Engines\RasterScreenCaptureEngine.cs" />
+ <Compile Include="Engines\VectorScreenCaptureEngine.cs" />
+ <Compile Include="Frames\VectorFrameColor.cs" />
+ <Compile Include="IScreenCaptureEngine.cs" />
+ <Compile Include="Quantization\ColorBgra.cs" />
+ <Compile Include="Quantization\OctreeQuantizer.cs" />
+ <Compile Include="Quantization\PaletteTable.cs" />
+ <Compile Include="Quantization\Quantizer.cs" />
+ <Compile Include="Quantization\Scanline.cs" />
+ <Compile Include="Quantization\Utility.cs" />
+ <Compile Include="ScreenCaptureEngine.cs" />
+ <Compile Include="ScreenCaptureFrameReceivedEventArgs.cs" />
+ <Compile Include="Utils\CursorUtils.cs" />
+ <Compile Include="Utils\DirectBitmap.cs" />
+ <Compile Include="Utils\FastBitmap.cs" />
+ <Compile Include="ICaptureMethod.cs" />
+ <Compile Include="Frames\RasterFrame.cs" />
+ <Compile Include="Comparers\RasterBitmapComparer.cs" />
+ <Compile Include="IBitmapComparer.cs" />
+ <Compile Include="Encoders\BitmapEncoder.cs" />
+ <Compile Include="Encoders\JpegEncoder.cs" />
+ <Compile Include="Encoders\PngEncoder.cs" />
+ <Compile Include="Frame.cs" />
+ <Compile Include="FrameEncoder.cs" />
+ <Compile Include="IFrameEncoder.cs" />
+ <Compile Include="ScreenCaptureFrame.cs" />
+ <Compile Include="IFrame.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Frames\VectorFrame.cs" />
+ <Compile Include="Frames\VectorFramePixel.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project> \ No newline at end of file