This repository has been archived by the owner on Feb 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
hyperdesktop2.csproj
107 lines (107 loc) · 4.05 KB
/
hyperdesktop2.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{9D4497D5-BAA4-4065-A168-18E913675F2D}</ProjectGuid>
<ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<RootNamespace>hyperdesktop2</RootNamespace>
<AssemblyName>hyperdesktop2</AssemblyName>
<TargetFrameworkVersion>v3.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<ApplicationIcon>icon.ico</ApplicationIcon>
<NoWin32Manifest>False</NoWin32Manifest>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="cls_Global_Func.cs" />
<Compile Include="cls_Hotkeys.cs" />
<Compile Include="cls_Imgur.cs" />
<Compile Include="cls_Screen_Bounds.cs" />
<Compile Include="cls_Screen_Capture.cs" />
<Compile Include="cls_Settings.cs" />
<Compile Include="cls_Upload.cs" />
<Compile Include="frm_About.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frm_About.Designer.cs">
<DependentUpon>frm_About.cs</DependentUpon>
</Compile>
<Compile Include="frm_Edit.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frm_Edit.Designer.cs">
<DependentUpon>frm_Edit.cs</DependentUpon>
</Compile>
<Compile Include="frm_Main.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frm_Main.Designer.cs">
<DependentUpon>frm_Main.cs</DependentUpon>
</Compile>
<Compile Include="frm_Preferences.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frm_Preferences.Designer.cs">
<DependentUpon>frm_Preferences.cs</DependentUpon>
</Compile>
<Compile Include="frm_Snipper.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frm_Snipper.Designer.cs">
<DependentUpon>frm_Snipper.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="icon-16.ico" />
<None Include="app.config" />
<None Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="frm_About.resx">
<DependentUpon>frm_About.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frm_Edit.resx">
<DependentUpon>frm_Edit.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frm_Main.resx">
<DependentUpon>frm_Main.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frm_Preferences.resx">
<DependentUpon>frm_Preferences.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frm_Snipper.resx">
<DependentUpon>frm_Snipper.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>