Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CodeEditor/3.2/HeuristicLab.CodeEditor-3.2.csproj @ 2659

Last change on this file since 2659 was 2659, checked in by epitzer, 15 years ago

Add new Plugin that provides a code editor with syntax highlighting and code completion (#842)

File size: 6.5 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <OutputType>Library</OutputType>
4    <RootNamespace>HeuristicLab.CodeEditor</RootNamespace>
5    <AssemblyName>HeuristicLab.CodeEditor-3.2</AssemblyName>
6    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8    <ProjectGuid>{489CFE09-FDF7-4C89-BAB5-BD09CADD61AD}</ProjectGuid>
9    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
10    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
11    <NoStdLib>False</NoStdLib>
12    <WarningLevel>4</WarningLevel>
13    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
14    <StartupObject>
15    </StartupObject>
16    <SignAssembly>true</SignAssembly>
17    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
18  </PropertyGroup>
19  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
20    <OutputPath>bin\Debug\</OutputPath>
21    <Optimize>False</Optimize>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>Full</DebugType>
25    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
28    <OutputPath>bin\Release\</OutputPath>
29    <Optimize>True</Optimize>
30    <DefineConstants>TRACE</DefineConstants>
31    <DebugSymbols>False</DebugSymbols>
32    <DebugType>None</DebugType>
33    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
36    <RegisterForComInterop>False</RegisterForComInterop>
37    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
38    <BaseAddress>4194304</BaseAddress>
39    <PlatformTarget>AnyCPU</PlatformTarget>
40    <FileAlignment>4096</FileAlignment>
41  </PropertyGroup>
42  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
43    <DebugSymbols>true</DebugSymbols>
44    <OutputPath>bin\x86\Debug\</OutputPath>
45    <DefineConstants>DEBUG;TRACE</DefineConstants>
46    <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
47    <FileAlignment>4096</FileAlignment>
48    <DebugType>Full</DebugType>
49    <PlatformTarget>x86</PlatformTarget>
50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
52    <OutputPath>bin\x86\Release\</OutputPath>
53    <DefineConstants>TRACE</DefineConstants>
54    <Optimize>true</Optimize>
55    <FileAlignment>4096</FileAlignment>
56    <DebugType>None</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58  </PropertyGroup>
59  <ItemGroup>
60    <Reference Include="HeuristicLab.Common.Resources-3.2, Version=3.2.0.2591, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=x86">
61      <SpecificVersion>False</SpecificVersion>
62      <HintPath>..\..\HeuristicLab.Common.Resources\3.2\bin\x86\Debug\HeuristicLab.Common.Resources-3.2.dll</HintPath>
63    </Reference>
64    <Reference Include="HeuristicLab.PluginInfrastructure, Version=3.2.0.2615, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=x86">
65      <SpecificVersion>False</SpecificVersion>
66      <HintPath>..\..\HeuristicLab.PluginInfrastructure\bin\x86\Debug\HeuristicLab.PluginInfrastructure.dll</HintPath>
67    </Reference>
68    <Reference Include="ICSharpCode.NRefactory, Version=3.1.1.5327, Culture=neutral, PublicKeyToken=efe927acf176eea2, processorArchitecture=MSIL">
69      <SpecificVersion>False</SpecificVersion>
70      <HintPath>..\..\HeuristicLab.ExtLibs\HeuristicLab.SharpDevelop\3.1.1.5327\ICSharpCode.NRefactory.dll</HintPath>
71    </Reference>
72    <Reference Include="ICSharpCode.SharpDevelop.Dom, Version=3.1.1.5327, Culture=neutral, PublicKeyToken=f829da5c02be14ee, processorArchitecture=MSIL">
73      <SpecificVersion>False</SpecificVersion>
74      <HintPath>..\..\HeuristicLab.ExtLibs\HeuristicLab.SharpDevelop\3.1.1.5327\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
75    </Reference>
76    <Reference Include="ICSharpCode.TextEditor, Version=3.1.1.5327, Culture=neutral, PublicKeyToken=4d61825e8dd49f1a, processorArchitecture=MSIL">
77      <SpecificVersion>False</SpecificVersion>
78      <HintPath>..\..\HeuristicLab.ExtLibs\HeuristicLab.SharpDevelop\3.1.1.5327\ICSharpCode.TextEditor.dll</HintPath>
79    </Reference>
80    <Reference Include="System" />
81    <Reference Include="System.Core">
82      <RequiredTargetFramework>3.5</RequiredTargetFramework>
83    </Reference>
84    <Reference Include="System.Data" />
85    <Reference Include="System.Drawing" />
86    <Reference Include="System.Windows.Forms" />
87    <Reference Include="System.Xml" />
88  </ItemGroup>
89  <ItemGroup>
90    <Compile Include="CodeCompletionData.cs" />
91    <EmbeddedResource Include="CodeEditor.resx">
92      <DependentUpon>CodeEditor.cs</DependentUpon>
93    </EmbeddedResource>
94    <EmbeddedResource Include="CodeViewer.resx">
95      <DependentUpon>CodeViewer.cs</DependentUpon>
96    </EmbeddedResource>
97    <Compile Include="CodeCompletionProvider.cs" />
98    <Compile Include="CodeCompletionKeyHandler.cs" />
99    <Compile Include="CodeViewer.cs">
100      <SubType>Form</SubType>
101    </Compile>
102    <Compile Include="CodeViewer.Designer.cs">
103      <DependentUpon>CodeViewer.cs</DependentUpon>
104    </Compile>
105    <Compile Include="HeuristicLabCodeEditorPlugin.cs" />
106    <Compile Include="ErrorBookmark.cs" />
107    <Compile Include="HostCallbackImplementation.cs" />
108    <Compile Include="CodeEditor.cs">
109      <SubType>UserControl</SubType>
110    </Compile>
111    <Compile Include="CodeEditor.Designer.cs">
112      <DependentUpon>CodeEditor.cs</DependentUpon>
113    </Compile>
114    <Compile Include="Properties\AssemblyInfo.cs" />
115    <Compile Include="ToolTipProvider.cs" />
116  </ItemGroup>
117  <ItemGroup>
118    <None Include="HeuristicLab.snk" />
119    <None Include="Properties\AssemblyInfo.frame" />
120  </ItemGroup>
121  <ItemGroup>
122    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.SharpDevelop\3.1.1.5327\HeuristicLab.SharpDevelop-3.1.1.5327.csproj">
123      <Project>{4ABA047D-46DD-4608-9E4A-41C5F92FDBB1}</Project>
124      <Name>HeuristicLab.SharpDevelop-3.1.1.5327</Name>
125    </ProjectReference>
126  </ItemGroup>
127  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
128  <PropertyGroup>
129    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
130set ProjectDir=$(ProjectDir)
131set SolutionDir=$(SolutionDir)
132set Outdir=$(Outdir)
133
134call PreBuildEvent.cmd</PreBuildEvent>
135  </PropertyGroup>
136</Project>
Note: See TracBrowser for help on using the repository browser.