Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HLScript/HeuristicLab.HLScript/3.3/HeuristicLab.HLScript-3.3.csproj @ 10332

Last change on this file since 10332 was 10332, checked in by jkarder, 10 years ago

#2136: added prototype of a scripting environment

File size: 4.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{21977CC3-1757-4B3B-87BD-FF817AAA900F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.HLScript</RootNamespace>
11    <AssemblyName>HeuristicLab.HLScript-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
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</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="Microsoft.CSharp" />
42    <Reference Include="System" />
43    <Reference Include="System.Core" />
44    <Reference Include="System.Drawing" />
45    <Reference Include="System.Xml.Linq" />
46    <Reference Include="System.Data.DataSetExtensions" />
47    <Reference Include="System.Data" />
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="VariableStore.cs" />
52    <None Include="Plugin.cs.frame" />
53    <Compile Include="HLScript.cs" />
54    <Compile Include="HLScriptGeneration.cs" />
55    <Compile Include="Plugin.cs" />
56    <Compile Include="Properties\AssemblyInfo.cs" />
57    <None Include="Properties\AssemblyInfo.cs.frame" />
58  </ItemGroup>
59  <ItemGroup>
60    <None Include="HeuristicLab.snk" />
61  </ItemGroup>
62  <ItemGroup>
63    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
64      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
65      <Name>HeuristicLab.Collections-3.3</Name>
66      <Private>False</Private>
67    </ProjectReference>
68    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
69      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
70      <Name>HeuristicLab.Common.Resources-3.3</Name>
71      <Private>False</Private>
72    </ProjectReference>
73    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
74      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
75      <Name>HeuristicLab.Common-3.3</Name>
76      <Private>False</Private>
77    </ProjectReference>
78    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
79      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
80      <Name>HeuristicLab.Core-3.3</Name>
81      <Private>False</Private>
82    </ProjectReference>
83    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
84      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
85      <Name>HeuristicLab.Persistence-3.3</Name>
86      <Private>False</Private>
87    </ProjectReference>
88    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
89      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
90      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
91      <Private>False</Private>
92    </ProjectReference>
93  </ItemGroup>
94  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
95  <PropertyGroup>
96    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
97set ProjectDir=$(ProjectDir)
98set SolutionDir=$(SolutionDir)
99set Outdir=$(Outdir)
100
101call PreBuildEvent.cmd</PreBuildEvent>
102  </PropertyGroup>
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110</Project>
Note: See TracBrowser for help on using the repository browser.