source: default/framework/trunk/WebLibrary/WebLibrary.csproj @ 1616

このファイルの 1616 以降における最終更新内容1616 で hizuya@… が 13ヵ月前 に更新しました
  • 指定したコントロールのプロパティの値を元に、別のコントロールのプロパティを変こするコントロールを追加。
  • Web.config から SFF の Web の定義だけ分離 (ReSharper が controls を誤認識するようなので)。
ファイルサイズ: 17.6 KB
 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{6149ECE6-7D41-4ADA-A9CA-583EDE3A0FC7}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>FCSoft.SilverFrost.Framework.Web</RootNamespace>
12    <AssemblyName>FCSoft.SilverFrost.Framework.Web</AssemblyName>
13    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14    <TargetFrameworkProfile />
15    <Prefer32Bit>false</Prefer32Bit>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE;CODE_ANALYSIS</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="System" />
36    <Reference Include="System.Configuration" />
37    <Reference Include="System.Data" />
38    <Reference Include="System.Drawing" />
39    <Reference Include="System.Web" />
40    <Reference Include="System.Web.ApplicationServices" />
41    <Reference Include="System.Web.Services" />
42    <Reference Include="System.Xml" />
43  </ItemGroup>
44  <ItemGroup>
45    <Compile Include="Properties\AssemblyInfo.cs" />
46    <Compile Include="Properties\Resources.designer.cs">
47      <AutoGen>True</AutoGen>
48      <DesignTime>True</DesignTime>
49      <DependentUpon>Resources.resx</DependentUpon>
50    </Compile>
51    <Compile Include="Sources\AssemblyRef.cs" />
52    <Compile Include="Sources\Configuration\CompoundStaticFileElement.cs" />
53    <Compile Include="Sources\Configuration\CompoundStaticFileElementCollection.cs" />
54    <Compile Include="Sources\Configuration\ConnectionElement.cs" />
55    <Compile Include="Sources\Configuration\ConnectionElementCollection.cs" />
56    <Compile Include="Sources\Configuration\ExternalResourceElement.cs" />
57    <Compile Include="Sources\Configuration\JsonServiceElement.cs" />
58    <Compile Include="Sources\Configuration\JsonServiceElementCollection.cs" />
59    <Compile Include="Sources\Configuration\ServiceErrorHandlerElement.cs" />
60    <Compile Include="Sources\Configuration\StringFilterElement.cs" />
61    <Compile Include="Sources\Configuration\StringFilterElementCollection.cs" />
62    <Compile Include="Sources\Configuration\ResourceElement.cs" />
63    <Compile Include="Sources\Configuration\ResourceElementCollection.cs" />
64    <Compile Include="Sources\Configuration\ResourceType.cs" />
65    <Compile Include="Sources\Configuration\TraceElement.cs" />
66    <Compile Include="Sources\Configuration\WebConfigurationVariableResolver.cs" />
67    <Compile Include="Sources\Configuration\WebTypeNameConverter.cs" />
68    <Compile Include="Sources\Configuration\WebXmlBeanManager.cs" />
69    <Compile Include="Sources\Handlers\CompoundStaticFileHandler.cs" />
70    <Compile Include="Sources\Handlers\Configuration\MethodElement.cs" />
71    <Compile Include="Sources\Handlers\Configuration\MethodElementCollection.cs" />
72    <Compile Include="Sources\Handlers\Configuration\ServiceElement.cs" />
73    <Compile Include="Sources\Handlers\HttpHandlerBase.cs" />
74    <Compile Include="Sources\Handlers\JsonServiceHandler.cs" />
75    <Compile Include="Sources\Handlers\JsonServiceManager.cs" />
76    <Compile Include="Sources\Handlers\ServerStorageHandler.cs" />
77    <Compile Include="Sources\Hosting\CoreResponseData.cs" />
78    <Compile Include="Sources\Hosting\HttpWebWorkerRequest.cs" />
79    <Compile Include="Sources\Hosting\WebApplicationConnectionException.cs" />
80    <Compile Include="Sources\Hosting\WebApplicationStopEventArgs.cs" />
81    <Compile Include="Sources\Hosting\WebApplicationStopEventHandler.cs" />
82    <Compile Include="Sources\Hosting\WorkerRequestBase.cs" />
83    <Compile Include="Sources\Hosting\IWebApplication.cs" />
84    <Compile Include="Sources\Hosting\IWebWorkerConnection.cs" />
85    <Compile Include="Sources\Hosting\KnownHttpVerb.cs" />
86    <Compile Include="Sources\Hosting\ReadEntityBodyDelegate.cs" />
87    <Compile Include="Sources\Hosting\RejectRequestEventArgs.cs" />
88    <Compile Include="Sources\Hosting\RequestEventArgs.cs" />
89    <Compile Include="Sources\Hosting\ServerWorkerConnection.cs" />
90    <Compile Include="Sources\Hosting\ServerWorkerRequest.cs" />
91    <Compile Include="Sources\Hosting\WebApplicationHost.cs" />
92    <Compile Include="Sources\Hosting\WebApplicationHostRequest.cs" />
93    <Compile Include="Sources\Hosting\WebApplicationServer.cs" />
94    <Compile Include="Sources\Hosting\WebApplicationServerException.cs" />
95    <Compile Include="Sources\Hosting\WebApplicationServerSettings.cs" />
96    <Compile Include="Sources\Hosting\WebApplicationUtility.cs" />
97    <Compile Include="Sources\Hosting\WebApplicationCollection.cs" />
98    <Compile Include="Sources\Hosting\BeginRequestEventArgs.cs" />
99    <Compile Include="Sources\Hosting\EndRequestEventArgs.cs" />
100    <Compile Include="Sources\HttpAbortException.cs" />
101    <Compile Include="Sources\IWebHandler.cs" />
102    <Compile Include="Sources\Modules\RequestContentTypeComplementModule.cs" />
103    <Compile Include="Sources\Modules\ServiceErrorStatus.cs" />
104    <Compile Include="Sources\Modules\UnhandledExceptionModule.cs" />
105    <Compile Include="Sources\NativeMethods.cs" />
106    <Compile Include="Sources\Process\ConnectionMemberInfo.cs" />
107    <Compile Include="Sources\Process\ViewStateMemberInfo.cs" />
108    <Compile Include="Sources\Process\WebProcessTypeInfoManager.cs" />
109    <Compile Include="Sources\Profile\CommonDbProfileProvider.cs" />
110    <Compile Include="Sources\Reflections.cs" />
111    <Compile Include="Sources\RequestIdentity.cs" />
112    <Compile Include="Sources\RoleAttribute.cs" />
113    <Compile Include="Sources\Security\CommonDbMembershipProvider.cs" />
114    <Compile Include="Sources\Security\CommonDbRoleProvider.cs" />
115    <Compile Include="Sources\Process\ParameterMemberInfo.cs">
116      <SubType>Code</SubType>
117    </Compile>
118    <Compile Include="Sources\Security\WebSecurityUtility.cs" />
119    <Compile Include="Sources\Services\IServiceMethod.cs" />
120    <Compile Include="Sources\Modules\ServiceErrorHandlerModule.cs" />
121    <Compile Include="Sources\Services\ServiceMethod.cs">
122      <SubType>Code</SubType>
123    </Compile>
124    <Compile Include="Sources\Services\ServiceMethodManager.cs" />
125    <Compile Include="Sources\Services\WebService.cs">
126      <SubType>Component</SubType>
127    </Compile>
128    <Compile Include="Sources\UI\ClientScriptUtility.cs" />
129    <Compile Include="Sources\UI\IHtmlTextWriterFilter.cs" />
130    <Compile Include="Sources\UI\ImageUtility.cs" />
131    <Compile Include="Sources\UI\MasterPage.cs">
132      <SubType>ASPXCodeBehind</SubType>
133    </Compile>
134    <Compile Include="Sources\UI\StyleUtility.cs" />
135    <Compile Include="Sources\UI\Theme.cs">
136      <SubType>Code</SubType>
137    </Compile>
138    <Compile Include="Sources\UI\ThemeUtility.cs">
139      <SubType>Code</SubType>
140    </Compile>
141    <Compile Include="Sources\UI\WebControls\AutocompleteValueMode.cs" />
142    <Compile Include="Sources\UI\WebControls\AutocompleteTextBox.cs" />
143    <Compile Include="Sources\UI\WebControls\BaseValidator.cs" />
144    <Compile Include="Sources\UI\WebControls\BoundFieldUtility.cs" />
145    <Compile Include="Sources\UI\WebControls\Confirm.cs" />
146    <Compile Include="Sources\UI\WebControls\ControlPropertyLinkageConnector.cs" />
147    <Compile Include="Sources\UI\WebControls\DataBindingContextHolder.cs" />
148    <Compile Include="Sources\UI\WebControls\DateBox.cs" />
149    <Compile Include="Sources\UI\WebControls\DateBoxValidator.cs" />
150    <Compile Include="Sources\UI\WebControls\Dialog.cs" />
151    <Compile Include="Sources\UI\WebControls\DialogCloseButton.cs" />
152    <Compile Include="Sources\UI\WebControls\DialogCloser.cs" />
153    <Compile Include="Sources\UI\WebControls\DialogValidationSummary.cs" />
154    <Compile Include="Sources\UI\WebControls\DialogMessageSummary.cs" />
155    <Compile Include="Sources\UI\WebControls\FormView.cs" />
156    <Compile Include="Sources\UI\WebControls\HiddenField.cs" />
157    <Compile Include="Sources\UI\WebControls\JQueryImage.cs" />
158    <Compile Include="Sources\UI\WebControls\JQueryImageButton.cs" />
159    <Compile Include="Sources\UI\WebControls\JQueryImageButtonField.cs">
160      <SubType>Code</SubType>
161    </Compile>
162    <Compile Include="Sources\UI\WebControls\JQueryImageDialogOpenButton.cs" />
163    <Compile Include="Sources\UI\WebControls\NumericBox.cs" />
164    <Compile Include="Sources\UI\WebControls\ObjectDataSource.cs" />
165    <Compile Include="Sources\UI\WebControls\Reloader.cs" />
166    <Compile Include="Sources\UI\WebControls\DialogOpenButton.cs" />
167    <Compile Include="Sources\UI\WebControls\RenderingMode.cs" />
168    <Compile Include="Sources\UI\WebControls\RowStyleField.cs" />
169    <Compile Include="Sources\UI\WebControls\StringLengthValidator.cs" />
170    <Compile Include="Sources\UI\WebControls\TabControl.cs" />
171    <Compile Include="Sources\UI\WebControls\TabItem.cs" />
172    <Compile Include="Sources\UI\WebControls\TabItemCollection.cs" />
173    <Compile Include="Sources\UI\WebControls\TimeBox.cs" />
174    <Compile Include="Sources\UI\WebControls\TinyMCE.cs" />
175    <Compile Include="Sources\UI\WebControls\TypeMemberParameter.cs" />
176    <Compile Include="Sources\UI\WebControls\Login.cs" />
177    <Compile Include="Sources\UI\WebControls\LoginName.cs" />
178    <Compile Include="Sources\UI\WebControls\LoginStatus.cs" />
179    <Compile Include="Sources\UI\WebControls\LoginView.cs" />
180    <Compile Include="Sources\UI\WebControls\ValueHolder.cs" />
181    <Compile Include="Sources\VariableStringUtility.cs" />
182    <Compile Include="Sources\WebApplicationAttribute.cs" />
183    <Compile Include="Sources\WebLogger.cs" />
184    <Compile Include="Sources\WebDebugging.cs" />
185    <Compile Include="Sources\Configuration\ControlElement.cs">
186      <SubType>Code</SubType>
187    </Compile>
188    <Compile Include="Sources\Configuration\ControlElementCollection.cs">
189      <SubType>Code</SubType>
190    </Compile>
191    <Compile Include="Sources\Configuration\PropertyElement.cs">
192      <SubType>Code</SubType>
193    </Compile>
194    <Compile Include="Sources\Configuration\PropertyElementCollection.cs">
195      <SubType>Code</SubType>
196    </Compile>
197    <Compile Include="Sources\Configuration\WebSection.cs">
198      <SubType>Code</SubType>
199    </Compile>
200    <Compile Include="Sources\ForwardType.cs" />
201    <Compile Include="Sources\Logging.cs" />
202    <Compile Include="Sources\ResourceUtility.cs" />
203    <Compile Include="Sources\UI\ControlInitializerTargetAttribute.cs" />
204    <Compile Include="Sources\UI\HtmlTextWriterFilter.cs" />
205    <Compile Include="Sources\UI\HtmlTextWriterWrapper.cs" />
206    <Compile Include="Sources\UI\VerbosePage.cs">
207      <SubType>ASPXCodeBehind</SubType>
208    </Compile>
209    <Compile Include="Sources\UI\ViewStateRender.cs" />
210    <Compile Include="Sources\UI\ViewStateTracer.cs" />
211    <Compile Include="Sources\UI\WebControls\BaseCompareValidator.cs" />
212    <Compile Include="Sources\UI\WebControls\BoundField.cs" />
213    <Compile Include="Sources\UI\WebControls\BoundParameter.cs" />
214    <Compile Include="Sources\UI\WebControls\Button.cs" />
215    <Compile Include="Sources\UI\WebControls\ButtonField.cs" />
216    <Compile Include="Sources\UI\WebControls\CheckBox.cs" />
217    <Compile Include="Sources\UI\WebControls\CheckBoxField.cs" />
218    <Compile Include="Sources\UI\WebControls\CheckBoxList.cs" />
219    <Compile Include="Sources\UI\WebControls\CommandField.cs" />
220    <Compile Include="Sources\UI\WebControls\CommonDbDataSource.cs" />
221    <Compile Include="Sources\UI\WebControls\CommonDbDataSourceView.cs" />
222    <Compile Include="Sources\UI\WebControls\CompareValidator.cs" />
223    <Compile Include="Sources\UI\WebControls\ControlParameter.cs" />
224    <Compile Include="Sources\UI\WebControls\CookieParameter.cs" />
225    <Compile Include="Sources\UI\WebControls\CustomValidator.cs" />
226    <Compile Include="Sources\UI\WebControls\DataList.cs" />
227    <Compile Include="Sources\UI\WebControls\DefaultButtonSetter.cs" />
228    <Compile Include="Sources\UI\WebControls\DefaultFocusSetter.cs" />
229    <Compile Include="Sources\UI\WebControls\DropDownList.cs" />
230    <Compile Include="Sources\UI\WebControls\FileUpload.cs" />
231    <Compile Include="Sources\UI\WebControls\FormParameter.cs" />
232    <Compile Include="Sources\UI\WebControls\Forwarder.cs" />
233    <Compile Include="Sources\UI\WebControls\GridView.cs" />
234    <Compile Include="Sources\UI\WebControls\HyperLink.cs" />
235    <Compile Include="Sources\UI\WebControls\HyperLinkField.cs" />
236    <Compile Include="Sources\UI\WebControls\Image.cs" />
237    <Compile Include="Sources\UI\WebControls\ImageButton.cs" />
238    <Compile Include="Sources\UI\WebControls\ImageField.cs" />
239    <Compile Include="Sources\UI\WebControls\Label.cs" />
240    <Compile Include="Sources\UI\Page.cs">
241      <SubType>ASPXCodeBehind</SubType>
242    </Compile>
243    <Compile Include="Sources\UI\ViewStateMemberAttribute.cs" />
244    <Compile Include="Sources\ParameterMemberAttribute.cs" />
245    <Compile Include="Sources\UI\ControlInitializer.cs" />
246    <Compile Include="Sources\UI\WebControls\LinkButton.cs" />
247    <Compile Include="Sources\UI\WebControls\ListBox.cs" />
248    <Compile Include="Sources\UI\WebControls\Literal.cs" />
249    <Compile Include="Sources\UI\WebControls\Localize.cs" />
250    <Compile Include="Sources\UI\WebControls\LocalizedMessage.cs" />
251    <Compile Include="Sources\UI\WebControls\Menu.cs" />
252    <Compile Include="Sources\UI\WebControls\PageMemberParameter.cs" />
253    <Compile Include="Sources\UI\WebControls\Panel.cs" />
254    <Compile Include="Sources\UI\WebControls\PlaceHolder.cs" />
255    <Compile Include="Sources\UI\WebControls\ProfileParameter.cs" />
256    <Compile Include="Sources\UI\WebControls\QueryStringParameter.cs" />
257    <Compile Include="Sources\UI\WebControls\RadioButton.cs" />
258    <Compile Include="Sources\UI\WebControls\RadioButtonList.cs" />
259    <Compile Include="Sources\UI\WebControls\RangeValidator.cs" />
260    <Compile Include="Sources\UI\WebControls\RegularExpressionValidator.cs" />
261    <Compile Include="Sources\UI\WebControls\Repeater.cs" />
262    <Compile Include="Sources\UI\WebControls\RequiredFieldValidator.cs" />
263    <Compile Include="Sources\UI\WebControls\SelectField.cs" />
264    <Compile Include="Sources\UI\WebControls\SessionParameter.cs" />
265    <Compile Include="Sources\UI\WebControls\StaticParameter.cs" />
266    <Compile Include="Sources\UI\WebControls\TemplateField.cs" />
267    <Compile Include="Sources\UI\WebControls\TextBox.cs" />
268    <Compile Include="Sources\UI\WebControls\TreeView.cs" />
269    <Compile Include="Sources\UI\WebControls\ValidationSummary.cs" />
270    <Compile Include="Sources\Utility.cs" />
271    <Compile Include="Sources\WebCategoryAttribute.cs" />
272    <Compile Include="Sources\WebManager.cs" />
273    <Compile Include="Sources\WebDescriptionAttribute.cs" />
274    <Compile Include="Sources\Process\WebProcessTypeInfo.cs" />
275    <Compile Include="Sources\WebResourceUrlResolver.cs" />
276    <Compile Include="Sources\WebUtility.cs" />
277  </ItemGroup>
278  <ItemGroup>
279    <EmbeddedResource Include="Properties\Resources.resx">
280      <SubType>Designer</SubType>
281      <Generator>ResXFileCodeGenerator</Generator>
282      <LastGenOutput>Resources.designer.cs</LastGenOutput>
283    </EmbeddedResource>
284  </ItemGroup>
285  <ItemGroup>
286    <ProjectReference Include="..\CoreLibrary\CoreLibrary.csproj">
287      <Project>{4D3775C5-0F5B-43B2-892A-05A7644DD568}</Project>
288      <Name>CoreLibrary</Name>
289    </ProjectReference>
290  </ItemGroup>
291  <ItemGroup>
292    <EmbeddedResource Include="Resources\Data\CommonDbDataSource.st" />
293  </ItemGroup>
294  <ItemGroup>
295    <EmbeddedResource Include="Resources\Script\UISpinedit.js" />
296  </ItemGroup>
297  <ItemGroup>
298    <EmbeddedResource Include="Resources\Style\UISpinedit.css" />
299  </ItemGroup>
300  <ItemGroup>
301    <EmbeddedResource Include="Resources\Script\UIIFrameDialog.js" />
302  </ItemGroup>
303  <ItemGroup>
304    <EmbeddedResource Include="Resources\Script\UIConfirm.js" />
305  </ItemGroup>
306  <ItemGroup>
307    <EmbeddedResource Include="Resources\Image\UIConfirm.gif" />
308    <EmbeddedResource Include="Properties\Resources.ja.resx">
309      <SubType>Designer</SubType>
310    </EmbeddedResource>
311    <EmbeddedResource Include="Resources\Style\UIConfirm.css" />
312  </ItemGroup>
313  <ItemGroup>
314    <EmbeddedResource Include="Resources\Configuration\JsonService.xsd" />
315  </ItemGroup>
316  <ItemGroup>
317    <EmbeddedResource Include="Resources\Hosting\ErrorPage500.html" />
318  </ItemGroup>
319  <ItemGroup>
320    <EmbeddedResource Include="Resources\Hosting\ErrorPage404.html" />
321  </ItemGroup>
322  <ItemGroup>
323    <EmbeddedResource Include="Resources\Configuration\ServiceMethods.xsd">
324      <SubType>Designer</SubType>
325    </EmbeddedResource>
326    <None Include="Sources\Services\ServiceMethods.xsd">
327      <SubType>Designer</SubType>
328    </None>
329  </ItemGroup>
330  <Import Project="$(MSBuildThisFileDirectory)..\MSBuild.Common.targets" />
331</Project>
詳しい使い方は TracBrowser を参照してください。