Sfall-ScriptEditor

Форк
0
/
ScriptEditor.csproj 
437 строк · 17.8 Кб
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6
    <ProductVersion>8.0.30703</ProductVersion>
7
    <SchemaVersion>2.0</SchemaVersion>
8
    <ProjectGuid>{F2211228-0028-4951-A423-302B66C5CB1B}</ProjectGuid>
9
    <OutputType>WinExe</OutputType>
10
    <AppDesignerFolder>Properties</AppDesignerFolder>
11
    <RootNamespace>ScriptEditor</RootNamespace>
12
    <AssemblyName>SfallScriptEditor</AssemblyName>
13
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14
    <FileAlignment>512</FileAlignment>
15
    <TargetFrameworkProfile>Client</TargetFrameworkProfile>
16
    <IsWebBootstrapper>false</IsWebBootstrapper>
17
    <SignAssembly>False</SignAssembly>
18
    <DelaySign>False</DelaySign>
19
    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
20
    <ApplicationIcon>Resources\Icon_1.ico</ApplicationIcon>
21
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
22
    <NoStdLib>False</NoStdLib>
23
    <TreatWarningsAsErrors>False</TreatWarningsAsErrors>
24
    <IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
25
    <RunCodeAnalysis>False</RunCodeAnalysis>
26
    <PublishUrl>publish\</PublishUrl>
27
    <Install>true</Install>
28
    <InstallFrom>Disk</InstallFrom>
29
    <UpdateEnabled>false</UpdateEnabled>
30
    <UpdateMode>Foreground</UpdateMode>
31
    <UpdateInterval>7</UpdateInterval>
32
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
33
    <UpdatePeriodically>false</UpdatePeriodically>
34
    <UpdateRequired>false</UpdateRequired>
35
    <MapFileExtensions>true</MapFileExtensions>
36
    <ApplicationRevision>0</ApplicationRevision>
37
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
38
    <UseApplicationTrust>false</UseApplicationTrust>
39
    <BootstrapperEnabled>true</BootstrapperEnabled>
40
  </PropertyGroup>
41
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
42
    <PlatformTarget>x86</PlatformTarget>
43
    <DebugSymbols>true</DebugSymbols>
44
    <DebugType>Full</DebugType>
45
    <Optimize>False</Optimize>
46
    <OutputPath>bin\Release\</OutputPath>
47
    <DefineConstants>DEBUG;TRACE</DefineConstants>
48
    <ErrorReport>prompt</ErrorReport>
49
    <WarningLevel>4</WarningLevel>
50
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
51
  </PropertyGroup>
52
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
53
    <PlatformTarget>x86</PlatformTarget>
54
    <DebugType>none</DebugType>
55
    <Optimize>True</Optimize>
56
    <OutputPath>bin\Release\</OutputPath>
57
    <DefineConstants>
58
    </DefineConstants>
59
    <ErrorReport>prompt</ErrorReport>
60
    <WarningLevel>4</WarningLevel>
61
    <UseVSHostingProcess>true</UseVSHostingProcess>
62
    <DebugSymbols>false</DebugSymbols>
63
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
64
    <GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
65
  </PropertyGroup>
66
  <PropertyGroup>
67
    <StartupObject>
68
    </StartupObject>
69
  </PropertyGroup>
70
  <PropertyGroup />
71
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Test|x86'">
72
    <OutputPath>bin\Release\</OutputPath>
73
    <DefineConstants>TRACE</DefineConstants>
74
    <Optimize>false</Optimize>
75
    <PlatformTarget>x86</PlatformTarget>
76
    <ErrorReport>prompt</ErrorReport>
77
    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
78
    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
79
    <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
80
    <DebugType>pdbonly</DebugType>
81
    <DebugSymbols>true</DebugSymbols>
82
  </PropertyGroup>
83
  <ItemGroup>
84
    <Reference Include="System" />
85
    <Reference Include="System.Data" />
86
    <Reference Include="System.Drawing" />
87
    <Reference Include="System.Windows.Forms" />
88
    <Reference Include="System.Xml" />
89
  </ItemGroup>
90
  <ItemGroup>
91
    <Compile Include="AboutBox.cs">
92
      <SubType>Form</SubType>
93
    </Compile>
94
    <Compile Include="AboutBox.Designer.cs">
95
      <DependentUpon>AboutBox.cs</DependentUpon>
96
    </Compile>
97
    <Compile Include="CodeTranslation\DialogueParser.cs" />
98
    <Compile Include="CodeTranslation\Macros.cs" />
99
    <Compile Include="TextEditor.ManageParse.cs">
100
      <SubType>Form</SubType>
101
    </Compile>
102
    <Compile Include="CodeTranslation\ParserInternal.cs" />
103
    <Compile Include="CodeTranslation\ParserExternal.cs" />
104
    <Compile Include="DialogPreview.cs">
105
      <SubType>Form</SubType>
106
    </Compile>
107
    <Compile Include="DialogPreview.Designer.cs">
108
      <DependentUpon>DialogPreview.cs</DependentUpon>
109
    </Compile>
110
    <Compile Include="FileAssociation.cs" />
111
    <Compile Include="NodeDiagram.cs">
112
      <SubType>Form</SubType>
113
    </Compile>
114
    <Compile Include="NodeDiagram.Designer.cs">
115
      <DependentUpon>NodeDiagram.cs</DependentUpon>
116
    </Compile>
117
    <Compile Include="ProcForm.cs">
118
      <SubType>Form</SubType>
119
    </Compile>
120
    <Compile Include="ProcForm.Designer.cs">
121
      <DependentUpon>ProcForm.cs</DependentUpon>
122
    </Compile>
123
    <Compile Include="SyntaxRules\HighlightProcedures.cs" />
124
    <Compile Include="TextEditor.FunctionsControl.cs">
125
      <SubType>Form</SubType>
126
    </Compile>
127
    <Compile Include="TextEditor.Utils.cs">
128
      <SubType>Form</SubType>
129
    </Compile>
130
    <Compile Include="TextEditorUI\ColorTheme.cs" />
131
    <Compile Include="TextEditorUI\CompiledStatus.cs">
132
      <SubType>Form</SubType>
133
    </Compile>
134
    <Compile Include="TextEditorUI\CompleteList\AutoCompleteItem.cs" />
135
    <Compile Include="BatchCompiler.cs">
136
      <SubType>Form</SubType>
137
    </Compile>
138
    <Compile Include="BatchCompiler.Designer.cs">
139
      <DependentUpon>BatchCompiler.cs</DependentUpon>
140
    </Compile>
141
    <Compile Include="CodeTranslation\Compiler.cs" />
142
    <Compile Include="CodeTranslation\IParserInfo.cs" />
143
    <Compile Include="CodeTranslation\Macro.cs" />
144
    <Compile Include="CodeTranslation\Procedure.cs" />
145
    <Compile Include="CodeTranslation\Reference.cs" />
146
    <Compile Include="CodeTranslation\Variable.cs" />
147
    <Compile Include="TextEditorUI\CommonDGV.cs" />
148
    <Compile Include="TextEditorUI\DataGridViewEx.cs">
149
      <SubType>Component</SubType>
150
    </Compile>
151
    <Compile Include="TextEditorUI\DraggableTabControl.cs">
152
      <SubType>Component</SubType>
153
    </Compile>
154
    <Compile Include="GoToLine.cs">
155
      <SubType>Form</SubType>
156
    </Compile>
157
    <Compile Include="GoToLine.Designer.cs">
158
      <DependentUpon>GoToLine.cs</DependentUpon>
159
    </Compile>
160
    <Compile Include="Headers.cs">
161
      <SubType>Form</SubType>
162
    </Compile>
163
    <Compile Include="Headers.Designer.cs">
164
      <DependentUpon>Headers.cs</DependentUpon>
165
    </Compile>
166
    <Compile Include="SingleInstanceManager.cs" />
167
    <Compile Include="Program.cs" />
168
    <Compile Include="CodeTranslation\ProgramInfo.cs" />
169
    <Compile Include="Properties\AssemblyInfo.cs" />
170
    <Compile Include="Properties\Resources.Designer.cs">
171
      <AutoGen>True</AutoGen>
172
      <DesignTime>True</DesignTime>
173
      <DependentUpon>Resources.resx</DependentUpon>
174
    </Compile>
175
    <Compile Include="RegisterScript.cs">
176
      <SubType>Form</SubType>
177
    </Compile>
178
    <Compile Include="RegisterScript.Designer.cs">
179
      <DependentUpon>RegisterScript.cs</DependentUpon>
180
    </Compile>
181
    <Compile Include="SearchForm.cs">
182
      <SubType>Form</SubType>
183
    </Compile>
184
    <Compile Include="SearchForm.Designer.cs">
185
      <DependentUpon>SearchForm.cs</DependentUpon>
186
    </Compile>
187
    <Compile Include="Settings.cs" />
188
    <Compile Include="SettingsDialog.cs">
189
      <SubType>Form</SubType>
190
    </Compile>
191
    <Compile Include="SettingsDialog.Designer.cs">
192
      <DependentUpon>SettingsDialog.cs</DependentUpon>
193
    </Compile>
194
    <Compile Include="TextEditor.cs">
195
      <SubType>Form</SubType>
196
    </Compile>
197
    <Compile Include="TextEditor.Designer.cs">
198
      <DependentUpon>TextEditor.cs</DependentUpon>
199
    </Compile>
200
    <Compile Include="TextEditorUI\Function\DialogFunctionsRules.cs" />
201
    <Compile Include="TextEditorUI\Nodes\FlowchartTE.cs">
202
      <SubType>UserControl</SubType>
203
    </Compile>
204
    <Compile Include="TextEditorUI\Nodes\FlowchartTE.Designer.cs">
205
      <DependentUpon>FlowchartTE.cs</DependentUpon>
206
    </Compile>
207
    <Compile Include="TextEditorUI\Function\Functions.cs" />
208
    <Compile Include="TextEditorUI\Nodes\TemplateNode.cs" />
209
    <Compile Include="TextEditorUI\Function\FunctionsRules.cs">
210
      <SubType>Form</SubType>
211
    </Compile>
212
    <Compile Include="TextEditorUI\Function\FunctionsRules.Designer.cs">
213
      <DependentUpon>FunctionsRules.cs</DependentUpon>
214
    </Compile>
215
    <Compile Include="PreviewRename.cs">
216
      <SubType>Form</SubType>
217
    </Compile>
218
    <Compile Include="PreviewRename.Designer.cs">
219
      <DependentUpon>PreviewRename.cs</DependentUpon>
220
    </Compile>
221
    <Compile Include="TextEditorUI\ToolTips\TipPainter.cs" />
222
    <Compile Include="TextEditorUI\HandlerProcedure.cs" />
223
    <Compile Include="CodeTranslation\CodeFolder.cs" />
224
    <Compile Include="TextEditorUI\Error.cs" />
225
    <Compile Include="SyntaxRules\SyntaxFile.cs" />
226
    <Compile Include="TextEditorUI\InputBox.cs" />
227
    <Compile Include="TextEditorUI\Function\UserFunction.cs">
228
      <SubType>Form</SubType>
229
    </Compile>
230
    <Compile Include="TextEditorUI\Function\UserFunction.Designer.cs">
231
      <DependentUpon>UserFunction.cs</DependentUpon>
232
    </Compile>
233
    <Compile Include="TextEditorUtilities\MessageFile.cs" />
234
    <Compile Include="TextEditorUI\ProgressBar.cs" />
235
    <Compile Include="TextEditorUI\TabInfo.cs" />
236
    <Compile Include="MessageEditor.cs">
237
      <SubType>Form</SubType>
238
    </Compile>
239
    <Compile Include="MessageEditor.Designer.cs">
240
      <DependentUpon>MessageEditor.cs</DependentUpon>
241
    </Compile>
242
    <Compile Include="TextEditorUI\ToolTips\ToolTipRequest.cs" />
243
    <Compile Include="TextEditorUtilities\MessageStructure.cs" />
244
    <Compile Include="TextEditorUtilities\Refactor.cs" />
245
    <Compile Include="TextEditorUtilities\UndatFile.cs" />
246
    <Compile Include="TextEditorUtilities\Utilities.cs" />
247
    <Compile Include="TextEditorUI\WorkerArgs.cs" />
248
    <Compile Include="TextEditorUI\CompleteList\AutoComplete.cs">
249
      <SubType>Component</SubType>
250
    </Compile>
251
  </ItemGroup>
252
  <ItemGroup>
253
    <EmbeddedResource Include="AboutBox.resx">
254
      <DependentUpon>AboutBox.cs</DependentUpon>
255
    </EmbeddedResource>
256
    <EmbeddedResource Include="BatchCompiler.resx">
257
      <DependentUpon>BatchCompiler.cs</DependentUpon>
258
    </EmbeddedResource>
259
    <EmbeddedResource Include="DialogPreview.resx">
260
      <DependentUpon>DialogPreview.cs</DependentUpon>
261
    </EmbeddedResource>
262
    <EmbeddedResource Include="GoToLine.resx">
263
      <DependentUpon>GoToLine.cs</DependentUpon>
264
    </EmbeddedResource>
265
    <EmbeddedResource Include="Headers.resx">
266
      <DependentUpon>Headers.cs</DependentUpon>
267
    </EmbeddedResource>
268
    <EmbeddedResource Include="NodeDiagram.resx">
269
      <DependentUpon>NodeDiagram.cs</DependentUpon>
270
    </EmbeddedResource>
271
    <EmbeddedResource Include="ProcForm.resx">
272
      <DependentUpon>ProcForm.cs</DependentUpon>
273
    </EmbeddedResource>
274
    <EmbeddedResource Include="Properties\Resources.resx">
275
      <Generator>ResXFileCodeGenerator</Generator>
276
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
277
      <SubType>Designer</SubType>
278
    </EmbeddedResource>
279
    <EmbeddedResource Include="RegisterScript.resx">
280
      <DependentUpon>RegisterScript.cs</DependentUpon>
281
    </EmbeddedResource>
282
    <EmbeddedResource Include="SearchForm.resx">
283
      <DependentUpon>SearchForm.cs</DependentUpon>
284
    </EmbeddedResource>
285
    <EmbeddedResource Include="SettingsDialog.resx">
286
      <DependentUpon>SettingsDialog.cs</DependentUpon>
287
    </EmbeddedResource>
288
    <EmbeddedResource Include="TextEditor.resx">
289
      <DependentUpon>TextEditor.cs</DependentUpon>
290
    </EmbeddedResource>
291
    <EmbeddedResource Include="MessageEditor.resx">
292
      <DependentUpon>MessageEditor.cs</DependentUpon>
293
    </EmbeddedResource>
294
    <EmbeddedResource Include="TextEditorUI\Nodes\FlowchartTE.resx">
295
      <DependentUpon>FlowchartTE.cs</DependentUpon>
296
    </EmbeddedResource>
297
    <EmbeddedResource Include="TextEditorUI\Function\UserFunction.resx">
298
      <DependentUpon>UserFunction.cs</DependentUpon>
299
    </EmbeddedResource>
300
    <EmbeddedResource Include="TextEditorUI\Function\FunctionsRules.resx">
301
      <DependentUpon>FunctionsRules.cs</DependentUpon>
302
    </EmbeddedResource>
303
    <EmbeddedResource Include="PreviewRename.resx">
304
      <DependentUpon>PreviewRename.cs</DependentUpon>
305
    </EmbeddedResource>
306
  </ItemGroup>
307
  <ItemGroup>
308
    <None Include="app.config" />
309
    <None Include="Descriptions\Functions.ini">
310
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
311
    </None>
312
    <None Include="Descriptions\Functions_rus.ini">
313
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
314
    </None>
315
    <None Include="Descriptions\ProcHandlers.ini">
316
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
317
    </None>
318
    <None Include="Descriptions\ProcHandlers_rus.ini">
319
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
320
    </None>
321
    <EmbeddedResource Include="Descriptions\UserFunctions.ini" />
322
    <None Include="Resources\mcpp.bat">
323
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
324
    </None>
325
    <None Include="Resources\usercomp.bat">
326
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
327
    </None>
328
    <None Include="Resources\wcc.bat">
329
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
330
    </None>
331
    <None Include="SyntaxRules\msgd_SyntaxRules.xshd">
332
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
333
    </None>
334
    <None Include="SyntaxRules\msg_SyntaxRules.xshd">
335
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
336
    </None>
337
    <None Include="SyntaxRules\ssld_SyntaxRules.xshd">
338
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
339
      <SubType>Designer</SubType>
340
    </None>
341
    <None Include="SyntaxRules\ssl_SyntaxRules.xshd">
342
      <SubType>Designer</SubType>
343
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
344
    </None>
345
    <None Include="SyntaxRules\ssl+_SyntaxRules.xshd">
346
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
347
      <SubType>Designer</SubType>
348
    </None>
349
    <None Include="Resources\KeepWindowOff.png" />
350
    <None Include="Resources\KeepWindowOn.png" />
351
    <None Include="Resources\UtilityText.ico" />
352
    <None Include="Resources\icon_fcd.ico">
353
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
354
    </None>
355
    <None Include="Resources\type_icon\macros.bmp" />
356
    <None Include="Resources\type_icon\opcode.bmp" />
357
    <None Include="Resources\type_icon\procedure.bmp" />
358
    <None Include="Resources\type_icon\variable.bmp" />
359
    <None Include="Resources\compiled_dark.png" />
360
    <None Include="Resources\compiled.png" />
361
    <Content Include="SyntaxRules\User_SyntaxRules.xml" />
362
  </ItemGroup>
363
  <ItemGroup>
364
    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
365
      <Visible>False</Visible>
366
      <ProductName>Клиентский профиль .NET Framework 3.5 SP1</ProductName>
367
      <Install>false</Install>
368
    </BootstrapperPackage>
369
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
370
      <Visible>False</Visible>
371
      <ProductName>.NET Framework 3.5 SP1</ProductName>
372
      <Install>true</Install>
373
    </BootstrapperPackage>
374
    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
375
      <Visible>False</Visible>
376
      <ProductName>Установщик Windows 3.1</ProductName>
377
      <Install>true</Install>
378
    </BootstrapperPackage>
379
  </ItemGroup>
380
  <ItemGroup>
381
    <None Include="Resources\Icon_1.ico" />
382
    <None Include="Resources\icon_ssl.ico">
383
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
384
    </None>
385
    <None Include="Descriptions\opcodes_rus.txt">
386
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
387
    </None>
388
    <None Include="Resources\icon_int.ico">
389
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
390
    </None>
391
    <None Include="Resources\icon_msg.ico">
392
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
393
    </None>
394
    <Content Include="Resources\newScript.txt" />
395
    <None Include="Descriptions\opcodes.txt">
396
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
397
    </None>
398
  </ItemGroup>
399
  <ItemGroup>
400
    <ProjectReference Include="..\ICSharpCode.DiagramCanvas\ICSharpCode.DiagramCanvas.csproj">
401
      <Project>{08F772A1-F0BE-433E-8B37-F6522953DB05}</Project>
402
      <Name>ICSharpCode.DiagramCanvas</Name>
403
    </ProjectReference>
404
    <ProjectReference Include="..\ICSharpCode.TextEditor\ICSharpCode.TextEditor.csproj">
405
      <Project>{2D18BE89-D210-49EB-A9DD-2246FBB3DF6D}</Project>
406
      <Name>ICSharpCode.TextEditor</Name>
407
    </ProjectReference>
408
  </ItemGroup>
409
  <ItemGroup />
410
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
411
  <PropertyGroup>
412
    <PostBuildEvent>
413
    </PostBuildEvent>
414
  </PropertyGroup>
415
  <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
416
    <BaseAddress>4194304</BaseAddress>
417
    <RegisterForComInterop>False</RegisterForComInterop>
418
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
419
  </PropertyGroup>
420
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
421
    <StartAction>Project</StartAction>
422
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
423
    <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
424
  </PropertyGroup>
425
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
426
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
427
    <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
428
    <StartAction>Project</StartAction>
429
  </PropertyGroup>
430
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
431
       Other similar extension points exist, see Microsoft.Common.targets.
432
  <Target Name="BeforeBuild">
433
  </Target>
434
  <Target Name="AfterBuild">
435
  </Target>
436
  -->
437
</Project>

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.