Quasar/Client/Client.csproj

219 lines
12 KiB
XML
Raw Normal View History

2014-07-08 05:58:53 -07:00
<?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>Client</RootNamespace>
<AssemblyName>Client</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Core\Client.cs" />
<Compile Include="Core\Commands\CommandHandler.cs" />
<Compile Include="Core\Compression\LZ4\LZ4Compressor32.cs" />
<Compile Include="Core\Compression\LZ4\LZ4Decompressor32.cs" />
<Compile Include="Core\Compression\LZ4\LZ4Util.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\Packets\ClientPackets\Commands\DesktopResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\DirectoryResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\DownloadFileResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\DrivesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\GetProcessesResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\GetSystemInfoResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\MonitorsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\ShellCommandResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\UserStatus.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Action.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Delete.cs" />
2014-07-08 05:58:53 -07:00
<Compile Include="Core\Packets\ServerPackets\Commands\Desktop.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Directory.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\DownloadFile.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Drives.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\GetProcesses.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\GetSystemInfo.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\KillProcess.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Monitors.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Rename.cs" />
2014-07-08 05:58:53 -07:00
<Compile Include="Core\Packets\ServerPackets\Commands\ShellCommand.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\ShowMessageBox.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Update.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\VisitWebsite.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\MouseClick.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\StartProcess.cs" />
<Compile Include="Core\RemoteShell\Shell.cs" />
<Compile Include="Core\SystemCore.cs" />
<Compile Include="Core\Encryption\RC4.cs" />
<Compile Include="Core\Packets\ClientPackets\Commands\Status.cs" />
<Compile Include="Core\Packets\ClientPackets\Connection\Initialize.cs" />
<Compile Include="Core\Packets\ClientPackets\Connection\KeepAliveResponse.cs" />
<Compile Include="Core\Packets\IPacket.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Disconnect.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\DownloadAndExecute.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Uninstall.cs" />
<Compile Include="Core\Packets\ServerPackets\Connection\InitializeCommand.cs" />
<Compile Include="Core\Packets\ServerPackets\Connection\KeepAlive.cs" />
<Compile Include="Core\Packets\ServerPackets\Commands\Reconnect.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\Server.cs" />
<Compile Include="Core\Helper\Helper.cs" />
2014-07-20 14:35:22 -07:00
<Compile Include="Core\GeoIP.cs" />
2014-07-08 05:58:53 -07:00
<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>
<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>