This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAlexBot.csproj
75 lines (75 loc) · 3.42 KB
/
AlexBot.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{9811BD80-824E-4AB9-8A09-3A69CF32FF9F}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>WinExe</OutputType>
<LangVersion>8.0</LangVersion>
<AssemblyName>AlexBot</AssemblyName>
<TargetFrameworkIdentifier>.NETFramework</TargetFrameworkIdentifier>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms">
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</HintPath>
</Reference>
<Reference Include="System.Drawing">
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</HintPath>
</Reference>
<Reference Include="NAudio">
<HintPath>C:\Users\GN\Desktop\NAudio.dll</HintPath>
</Reference>
<Reference Include="System.Speech">
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Speech\v4.0_4.0.0.0__31bf3856ad364e35\System.Speech.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AlexBot\BuildStub.cs" />
<Compile Include="AlexBot\CreateProcess.cs" />
<Compile Include="AlexBot\FullInfo.cs" />
<Compile Include="AlexBot\Main.cs" />
<Compile Include="AlexBot\MainForm.cs" />
<Compile Include="AlexBot\MessageDialog.cs" />
<Compile Include="AlexBot\MessageView.cs" />
<Compile Include="AlexBot\OpenLink.cs" />
<Compile Include="AlexBot\OpenPortDialog.cs" />
<Compile Include="AlexBot\ProccessList.cs" />
<Compile Include="AlexBot\Program.cs" />
<Compile Include="AlexBot\RemoteDesktop.cs" />
<Compile Include="AlexBot\Speaker.cs" />
<Compile Include="AlexBot\ToolSocket.cs" />
<Compile Include="AlexBot\UserControlReg.cs" />
<Compile Include="AlexBot\VoiceManager.cs" />
<Compile Include="AlexBot\WebCamViewer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AlexBot\Main.resx" />
<EmbeddedResource Include="AlexBot\MainForm.resx" />
<EmbeddedResource Include="AlexBot\OpenPortDialog.resx" />
<EmbeddedResource Include="AlexBot\RemoteDesktop.resx" />
<EmbeddedResource Include="AlexBot\UserControlReg.resx" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>