ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/deps/WeifenLuo.WinFormsUI.Docking/DockSample/DockSample.csproj
Revision: 172
Committed: Mon May 28 09:15:17 2012 UTC (10 years, 9 months ago) by william
File size: 16380 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 141 <?xml version="1.0" encoding="utf-8"?>
2     <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3 william 140 <PropertyGroup>
4     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6     <ProductVersion>8.0.50727</ProductVersion>
7     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>{40793A27-478B-4357-B4C3-FC8943131F3D}</ProjectGuid>
9     <OutputType>WinExe</OutputType>
10     <AppDesignerFolder>Properties</AppDesignerFolder>
11     <RootNamespace>DockSample</RootNamespace>
12     <AssemblyName>DockSample</AssemblyName>
13 william 141 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
14     <FileUpgradeFlags>
15     </FileUpgradeFlags>
16     <OldToolsVersion>3.5</OldToolsVersion>
17     <UpgradeBackupLocation />
18     <PublishUrl>publish\</PublishUrl>
19     <Install>true</Install>
20     <InstallFrom>Disk</InstallFrom>
21     <UpdateEnabled>false</UpdateEnabled>
22     <UpdateMode>Foreground</UpdateMode>
23     <UpdateInterval>7</UpdateInterval>
24     <UpdateIntervalUnits>Days</UpdateIntervalUnits>
25     <UpdatePeriodically>false</UpdatePeriodically>
26     <UpdateRequired>false</UpdateRequired>
27     <MapFileExtensions>true</MapFileExtensions>
28     <ApplicationRevision>0</ApplicationRevision>
29     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
30     <IsWebBootstrapper>false</IsWebBootstrapper>
31     <UseApplicationTrust>false</UseApplicationTrust>
32     <BootstrapperEnabled>true</BootstrapperEnabled>
33 william 140 </PropertyGroup>
34     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
35     <DebugSymbols>true</DebugSymbols>
36     <DebugType>full</DebugType>
37     <Optimize>false</Optimize>
38     <OutputPath>bin\Debug\</OutputPath>
39     <DefineConstants>DEBUG;TRACE</DefineConstants>
40     <ErrorReport>prompt</ErrorReport>
41     <WarningLevel>4</WarningLevel>
42     </PropertyGroup>
43     <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
44     <DebugType>pdbonly</DebugType>
45     <Optimize>true</Optimize>
46     <OutputPath>bin\Release\</OutputPath>
47     <DefineConstants>TRACE</DefineConstants>
48     <ErrorReport>prompt</ErrorReport>
49     <WarningLevel>4</WarningLevel>
50     </PropertyGroup>
51 william 143 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
52     <DebugSymbols>true</DebugSymbols>
53 william 171 <OutputPath>bin\Debug\x86\</OutputPath>
54 william 143 <DefineConstants>DEBUG;TRACE</DefineConstants>
55     <DebugType>full</DebugType>
56     <PlatformTarget>x86</PlatformTarget>
57     <ErrorReport>prompt</ErrorReport>
58     <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
59     <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
60     </PropertyGroup>
61     <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
62     <OutputPath>bin\x86\Release\</OutputPath>
63     <DefineConstants>TRACE</DefineConstants>
64     <Optimize>true</Optimize>
65     <DebugType>pdbonly</DebugType>
66     <PlatformTarget>x86</PlatformTarget>
67     <ErrorReport>prompt</ErrorReport>
68     <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
69     <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
70     </PropertyGroup>
71 william 170 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
72     <DebugSymbols>true</DebugSymbols>
73 william 171 <OutputPath>bin\Debug\x64\</OutputPath>
74 william 170 <DefineConstants>DEBUG;TRACE</DefineConstants>
75     <DebugType>full</DebugType>
76     <PlatformTarget>x64</PlatformTarget>
77     <ErrorReport>prompt</ErrorReport>
78     <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
79     <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
80 william 172 <NoWarn>1607</NoWarn>
81 william 170 </PropertyGroup>
82     <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
83     <OutputPath>bin\x64\Release\</OutputPath>
84     <DefineConstants>TRACE</DefineConstants>
85     <Optimize>true</Optimize>
86     <DebugType>pdbonly</DebugType>
87     <PlatformTarget>x64</PlatformTarget>
88     <ErrorReport>prompt</ErrorReport>
89     <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
90     <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
91     </PropertyGroup>
92 william 140 <ItemGroup>
93     <Reference Include="System" />
94     <Reference Include="System.Data" />
95     <Reference Include="System.Drawing" />
96     <Reference Include="System.Windows.Forms" />
97     <Reference Include="System.Xml" />
98     </ItemGroup>
99     <ItemGroup>
100     <Compile Include="AboutDialog.cs">
101     <SubType>Form</SubType>
102     </Compile>
103     <Compile Include="AboutDialog.Designer.cs">
104     <DependentUpon>AboutDialog.cs</DependentUpon>
105     </Compile>
106     <Compile Include="MainForm2.cs">
107     <SubType>Form</SubType>
108     </Compile>
109     <Compile Include="MainForm2.Designer.cs">
110     <DependentUpon>MainForm2.cs</DependentUpon>
111     </Compile>
112 william 143 <Compile Include="DummyDoc.cs">
113     <SubType>Form</SubType>
114     </Compile>
115 william 140 <Compile Include="DummyDoc.Designer.cs">
116     <DependentUpon>DummyDoc.cs</DependentUpon>
117     </Compile>
118 william 143 <Compile Include="DummyOutputWindow.cs">
119     <SubType>Form</SubType>
120     </Compile>
121 william 140 <Compile Include="DummyOutputWindow.Designer.cs">
122     <DependentUpon>DummyOutputWindow.cs</DependentUpon>
123     </Compile>
124 william 143 <Compile Include="DummyPropertyWindow.cs">
125     <SubType>Form</SubType>
126     </Compile>
127 william 140 <Compile Include="DummyPropertyWindow.Designer.cs">
128     <DependentUpon>DummyPropertyWindow.cs</DependentUpon>
129     </Compile>
130 william 143 <Compile Include="DummySolutionExplorer.cs">
131     <SubType>Form</SubType>
132     </Compile>
133 william 140 <Compile Include="DummySolutionExplorer.Designer.cs">
134     <DependentUpon>DummySolutionExplorer.cs</DependentUpon>
135     </Compile>
136 william 143 <Compile Include="DummyTaskList.cs">
137     <SubType>Form</SubType>
138     </Compile>
139 william 140 <Compile Include="DummyTaskList.Designer.cs">
140     <DependentUpon>DummyTaskList.cs</DependentUpon>
141     </Compile>
142 william 143 <Compile Include="DummyToolbox.cs">
143     <SubType>Form</SubType>
144     </Compile>
145 william 140 <Compile Include="DummyToolbox.Designer.cs">
146     <DependentUpon>DummyToolbox.cs</DependentUpon>
147     </Compile>
148     <Compile Include="Customization\DockHelper.cs" />
149     <Compile Include="Customization\Extender.cs" />
150     <Compile Include="Customization\InertButton.cs">
151     <SubType>Component</SubType>
152     </Compile>
153 william 143 <Compile Include="Customization\VS2003AutoHideStrip.cs">
154     <SubType>Component</SubType>
155     </Compile>
156     <Compile Include="Customization\VS2003DockPaneCaption.cs">
157     <SubType>Component</SubType>
158     </Compile>
159     <Compile Include="Customization\VS2003DockPaneStrip.cs">
160     <SubType>Component</SubType>
161     </Compile>
162 william 140 <Compile Include="MainForm.cs">
163     <SubType>Form</SubType>
164     </Compile>
165     <Compile Include="MainForm.Designer.cs">
166     <DependentUpon>MainForm.cs</DependentUpon>
167     </Compile>
168     <Compile Include="Program.cs" />
169     <Compile Include="Properties\AssemblyInfo.cs" />
170     <EmbeddedResource Include="AboutDialog.resx">
171     <SubType>Designer</SubType>
172     <DependentUpon>AboutDialog.cs</DependentUpon>
173     </EmbeddedResource>
174     <EmbeddedResource Include="DummyDoc.resx">
175     <SubType>Designer</SubType>
176     <DependentUpon>DummyDoc.cs</DependentUpon>
177     </EmbeddedResource>
178     <EmbeddedResource Include="DummyOutputWindow.resx">
179     <SubType>Designer</SubType>
180     <DependentUpon>DummyOutputWindow.cs</DependentUpon>
181     </EmbeddedResource>
182     <EmbeddedResource Include="DummyPropertyWindow.resx">
183     <SubType>Designer</SubType>
184     <DependentUpon>DummyPropertyWindow.cs</DependentUpon>
185     </EmbeddedResource>
186     <EmbeddedResource Include="DummySolutionExplorer.resx">
187     <SubType>Designer</SubType>
188     <DependentUpon>DummySolutionExplorer.cs</DependentUpon>
189     </EmbeddedResource>
190     <EmbeddedResource Include="DummyTaskList.resx">
191     <SubType>Designer</SubType>
192     <DependentUpon>DummyTaskList.cs</DependentUpon>
193     </EmbeddedResource>
194     <EmbeddedResource Include="DummyToolbox.resx">
195     <SubType>Designer</SubType>
196     <DependentUpon>DummyToolbox.cs</DependentUpon>
197     </EmbeddedResource>
198     <EmbeddedResource Include="MainForm.resx">
199     <SubType>Designer</SubType>
200     <DependentUpon>MainForm.cs</DependentUpon>
201     </EmbeddedResource>
202     <EmbeddedResource Include="Properties\Resources.resx">
203     <Generator>ResXFileCodeGenerator</Generator>
204     <LastGenOutput>Resources.Designer.cs</LastGenOutput>
205     <SubType>Designer</SubType>
206     </EmbeddedResource>
207     <Compile Include="Properties\Resources.Designer.cs">
208     <AutoGen>True</AutoGen>
209     <DependentUpon>Resources.resx</DependentUpon>
210     <DesignTime>True</DesignTime>
211     </Compile>
212     <None Include="Properties\Settings.settings">
213     <Generator>SettingsSingleFileGenerator</Generator>
214     <LastGenOutput>Settings.Designer.cs</LastGenOutput>
215     </None>
216     <Compile Include="Properties\Settings.Designer.cs">
217     <AutoGen>True</AutoGen>
218     <DependentUpon>Settings.settings</DependentUpon>
219     <DesignTimeSharedInput>True</DesignTimeSharedInput>
220     </Compile>
221     <Compile Include="Customization\Resources.Designer.cs">
222     <DependentUpon>Resources.resx</DependentUpon>
223     <AutoGen>True</AutoGen>
224     <DesignTime>True</DesignTime>
225     </Compile>
226     <Compile Include="Customization\Strings.Designer.cs">
227     <DependentUpon>Strings.resx</DependentUpon>
228     <AutoGen>True</AutoGen>
229     <DesignTime>True</DesignTime>
230     </Compile>
231 william 143 <Compile Include="ToolWindow.cs">
232     <SubType>Form</SubType>
233     </Compile>
234 william 140 <Compile Include="ToolWindow.Designer.cs">
235     <DependentUpon>ToolWindow.cs</DependentUpon>
236     </Compile>
237     </ItemGroup>
238     <ItemGroup>
239     <ProjectReference Include="..\WinFormsUI\WinFormsUI.csproj">
240     <Project>{C75532C4-765B-418E-B09B-46D36B2ABDB1}</Project>
241     <Name>WinFormsUI</Name>
242     </ProjectReference>
243     </ItemGroup>
244     <ItemGroup>
245     <None Include="Images\ArrowDown.bmp" />
246     <None Include="Images\ArrowUp.bmp" />
247     <None Include="Images\Bitmap.ico" />
248     <None Include="Images\BlankIcon.ico" />
249     <None Include="Images\ClosedFolder.ICO" />
250     <None Include="Images\CSFile.ico" />
251     <None Include="Images\CSProject.ico" />
252     <None Include="Images\File.ico" />
253     <None Include="Images\Form.ico" />
254     <None Include="Images\Mouse.bmp" />
255     <None Include="Images\msenv22.ico" />
256     <None Include="Images\New.ico" />
257     <None Include="Images\Open.ico" />
258     <None Include="Images\OpenFolder.ICO" />
259     <None Include="Images\OutputWindow.ico" />
260     <None Include="Images\PropertyWindow.ico" />
261     <None Include="Images\Reference.ico" />
262     <None Include="Images\References.ico" />
263     <None Include="Images\SolutionExplorer.ico" />
264     <None Include="Images\TaskListWindow.ico" />
265     <None Include="Images\ToolboxWindow.ico" />
266     <None Include="Images\XmlFile.ico" />
267     </ItemGroup>
268     <ItemGroup>
269     <EmbeddedResource Include="MainForm2.resx">
270     <DependentUpon>MainForm2.cs</DependentUpon>
271     <SubType>Designer</SubType>
272     </EmbeddedResource>
273     <EmbeddedResource Include="Customization\Resources.resx">
274     <Generator>ResXFileCodeGenerator</Generator>
275     <LastGenOutput>Resources.Designer.cs</LastGenOutput>
276     <SubType>Designer</SubType>
277     </EmbeddedResource>
278     <EmbeddedResource Include="Resources\DockPanel.xml" />
279     <EmbeddedResource Include="Customization\Strings.resx">
280     <Generator>ResXFileCodeGenerator</Generator>
281     <LastGenOutput>Strings.Designer.cs</LastGenOutput>
282     <SubType>Designer</SubType>
283     </EmbeddedResource>
284     <EmbeddedResource Include="ToolWindow.resx">
285     <SubType>Designer</SubType>
286     <DependentUpon>ToolWindow.cs</DependentUpon>
287     </EmbeddedResource>
288     </ItemGroup>
289     <ItemGroup>
290     <None Include="Customization\Resources\DockIndicator_PaneDiamond.bmp" />
291     </ItemGroup>
292     <ItemGroup>
293     <None Include="Customization\Resources\DockPaneStrip_ScrollRightEnabled.bmp" />
294     </ItemGroup>
295     <ItemGroup>
296     <None Include="Customization\Resources\DockIndicator_PaneDiamond_Bottom.bmp" />
297     </ItemGroup>
298     <ItemGroup>
299     <None Include="Customization\Resources\Dockindicator_PaneDiamond_Fill.bmp" />
300     </ItemGroup>
301     <ItemGroup>
302     <None Include="Customization\Resources\DockIndicator_PaneDiamond_Hotspot.bmp" />
303     </ItemGroup>
304     <ItemGroup>
305     <None Include="Customization\Resources\DockIndicator_PaneDiamond_HotspotIndex.bmp" />
306     </ItemGroup>
307     <ItemGroup>
308     <None Include="Customization\Resources\DockIndicator_PaneDiamond_Left.bmp" />
309     </ItemGroup>
310     <ItemGroup>
311     <None Include="Customization\Resources\DockIndicator_PaneDiamond_Right.bmp" />
312     </ItemGroup>
313     <ItemGroup>
314     <None Include="Customization\Resources\DockIndicator_PaneDiamond_Top.bmp" />
315     </ItemGroup>
316     <ItemGroup>
317     <None Include="Customization\Resources\DockIndicator_PanelBottom.bmp" />
318     </ItemGroup>
319     <ItemGroup>
320     <None Include="Customization\Resources\DockIndicator_PanelBottom_Active.bmp" />
321     </ItemGroup>
322     <ItemGroup>
323     <None Include="Customization\Resources\DockIndicator_PanelFill.bmp" />
324     </ItemGroup>
325     <ItemGroup>
326     <None Include="Customization\Resources\DockIndicator_PanelFill_Active.bmp" />
327     </ItemGroup>
328     <ItemGroup>
329     <None Include="Customization\Resources\DockIndicator_PanelLeft.bmp" />
330     </ItemGroup>
331     <ItemGroup>
332     <None Include="Customization\Resources\DockIndicator_PanelLeft_Active.bmp" />
333     </ItemGroup>
334     <ItemGroup>
335     <None Include="Customization\Resources\DockIndicator_PanelRight.bmp" />
336     </ItemGroup>
337     <ItemGroup>
338     <None Include="Customization\Resources\DockIndicator_PanelRight_Active.bmp" />
339     </ItemGroup>
340     <ItemGroup>
341     <None Include="Customization\Resources\DockIndicator_PanelTop.bmp" />
342     </ItemGroup>
343     <ItemGroup>
344     <None Include="Customization\Resources\DockIndicator_PanelTop_Active.bmp" />
345     </ItemGroup>
346     <ItemGroup>
347     <None Include="Customization\Resources\DockPaneCaption_AutoHideNo.bmp" />
348     </ItemGroup>
349     <ItemGroup>
350     <None Include="Customization\Resources\DockPaneCaption_AutoHideYes.bmp" />
351     </ItemGroup>
352     <ItemGroup>
353     <None Include="Customization\Resources\DockPaneCaption_CloseDisabled.bmp" />
354     </ItemGroup>
355     <ItemGroup>
356     <None Include="Customization\Resources\DockPaneCaption_CloseEnabled.bmp" />
357     </ItemGroup>
358     <ItemGroup>
359     <None Include="Customization\Resources\DockPaneStrip_CloseDisabled.bmp" />
360     </ItemGroup>
361     <ItemGroup>
362     <None Include="Customization\Resources\DockPaneStrip_CloseEnabled.bmp" />
363     </ItemGroup>
364     <ItemGroup>
365     <None Include="Customization\Resources\DockPaneStrip_ScrollLeftDisabled.bmp" />
366     </ItemGroup>
367     <ItemGroup>
368     <None Include="Customization\Resources\DockPaneStrip_ScrollLeftEnabled.bmp" />
369     </ItemGroup>
370     <ItemGroup>
371     <None Include="Customization\Resources\DockPaneStrip_ScrollRightDisabled.bmp" />
372     </ItemGroup>
373     <ItemGroup>
374 william 141 <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
375     <Visible>False</Visible>
376     <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
377     <Install>false</Install>
378     </BootstrapperPackage>
379     <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
380     <Visible>False</Visible>
381     <ProductName>.NET Framework 3.5 SP1</ProductName>
382     <Install>true</Install>
383     </BootstrapperPackage>
384     <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
385     <Visible>False</Visible>
386     <ProductName>Windows Installer 3.1</ProductName>
387     <Install>true</Install>
388     </BootstrapperPackage>
389     </ItemGroup>
390 william 143 <ItemGroup>
391     <Content Include="..\WinFormsUI\WeifenLuo.WinFormsUI.Docking-license.txt">
392     <Link>WeifenLuo.WinFormsUI.Docking-license.txt</Link>
393     </Content>
394     </ItemGroup>
395 william 140 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
396     <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
397     Other similar extension points exist, see Microsoft.Common.targets.
398     <Target Name="BeforeBuild">
399     </Target>
400     <Target Name="AfterBuild">
401     </Target>
402     -->
403     </Project>