Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Calendar/3.3/HeuristicLab.Calendar-3.3.csproj @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 7.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
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>{D17A4D6A-4CAA-4470-8A19-F42463C021FD}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Calendar</RootNamespace>
12    <AssemblyName>HeuristicLab.Calendar-3.3</AssemblyName>
13    <SccProjectName>
14    </SccProjectName>
15    <SccLocalPath>
16    </SccLocalPath>
17    <SccAuxPath>
18    </SccAuxPath>
19    <SccProvider>
20    </SccProvider>
21    <FileUpgradeFlags>
22    </FileUpgradeFlags>
23    <OldToolsVersion>3.5</OldToolsVersion>
24    <UpgradeBackupLocation>
25    </UpgradeBackupLocation>
26    <IsWebBootstrapper>false</IsWebBootstrapper>
27    <SignAssembly>true</SignAssembly>
28    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
29    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
30    <PublishUrl>publish\</PublishUrl>
31    <Install>true</Install>
32    <InstallFrom>Disk</InstallFrom>
33    <UpdateEnabled>false</UpdateEnabled>
34    <UpdateMode>Foreground</UpdateMode>
35    <UpdateInterval>7</UpdateInterval>
36    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
37    <UpdatePeriodically>false</UpdatePeriodically>
38    <UpdateRequired>false</UpdateRequired>
39    <MapFileExtensions>true</MapFileExtensions>
40    <ApplicationRevision>0</ApplicationRevision>
41    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
42    <UseApplicationTrust>false</UseApplicationTrust>
43    <BootstrapperEnabled>true</BootstrapperEnabled>
44    <TargetFrameworkProfile />
45  </PropertyGroup>
46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
47    <DebugSymbols>true</DebugSymbols>
48    <DebugType>full</DebugType>
49    <Optimize>false</Optimize>
50    <OutputPath>bin\Debug\</OutputPath>
51    <DefineConstants>DEBUG;TRACE</DefineConstants>
52    <ErrorReport>prompt</ErrorReport>
53    <WarningLevel>4</WarningLevel>
54    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
55    <PlatformTarget>AnyCPU</PlatformTarget>
56  </PropertyGroup>
57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
58    <DebugType>pdbonly</DebugType>
59    <Optimize>true</Optimize>
60    <OutputPath>bin\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <ErrorReport>prompt</ErrorReport>
63    <WarningLevel>4</WarningLevel>
64    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
65  </PropertyGroup>
66  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
67    <PlatformTarget>x86</PlatformTarget>
68    <OutputPath>bin\Debug\</OutputPath>
69  </PropertyGroup>
70  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
71    <PlatformTarget>x86</PlatformTarget>
72    <OutputPath>bin\x86\Release\</OutputPath>
73  </PropertyGroup>
74  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
75    <PlatformTarget>x64</PlatformTarget>
76    <OutputPath>bin\x64\Debug\</OutputPath>
77  </PropertyGroup>
78  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
79    <PlatformTarget>x64</PlatformTarget>
80    <OutputPath>bin\x64\Release\</OutputPath>
81  </PropertyGroup>
82  <ItemGroup>
83    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
84      <HintPath>C:\Program Files\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
85    </Reference>
86    <Reference Include="System" />
87    <Reference Include="System.Data" />
88    <Reference Include="System.Drawing" />
89    <Reference Include="System.Windows.Forms" />
90    <Reference Include="System.Xml" />
91  </ItemGroup>
92  <ItemGroup>
93    <Compile Include="Appointment\AppointmentSlot.cs" />
94    <Compile Include="Appointment\AppointmentSlotDuration.cs" />
95    <Compile Include="Appointment\iAppointment.cs" />
96    <Compile Include="HeuristicLabCalendarPlugin.cs" />
97    <Compile Include="Properties\CalendarResources.Designer.cs">
98      <AutoGen>True</AutoGen>
99      <DesignTime>True</DesignTime>
100      <DependentUpon>CalendarResources.resx</DependentUpon>
101    </Compile>
102    <Compile Include="CalendarStorage\iCalendarStorage.cs" />
103    <Compile Include="Renderer\AbstractRenderer.cs" />
104    <Compile Include="Appointment\Appointment.cs">
105    </Compile>
106    <Compile Include="Appointment\AppointmentEventArgs.cs" />
107    <Compile Include="Appointment\AppointmentHieghtDrawMode.cs" />
108    <Compile Include="DayView.cs">
109      <SubType>Component</SubType>
110    </Compile>
111    <Compile Include="ViewTools\DrawTool.cs" />
112    <Compile Include="ViewTools\ITool.cs" />
113    <Compile Include="Appointment\NewAppointmentEvent.cs" />
114    <Compile Include="Renderer\Office12Renderer.cs" />
115    <Compile Include="Renderer\Office11Renderer.cs">
116      <SubType>Code</SubType>
117    </Compile>
118    <Compile Include="Properties\AssemblyInfo.cs" />
119    <Compile Include="Appointment\ResolveAppointmentsEvent.cs" />
120    <Compile Include="ViewTools\SelectionType.cs" />
121    <Compile Include="ViewTools\SelectionTool.cs" />
122    <Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
123  </ItemGroup>
124  <ItemGroup>
125    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
126      <Visible>False</Visible>
127      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
128      <Install>false</Install>
129    </BootstrapperPackage>
130    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
131      <Visible>False</Visible>
132      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
133      <Install>true</Install>
134    </BootstrapperPackage>
135    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
136      <Visible>False</Visible>
137      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
138      <Install>false</Install>
139    </BootstrapperPackage>
140    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
141      <Visible>False</Visible>
142      <ProductName>.NET Framework 3.5</ProductName>
143      <Install>false</Install>
144    </BootstrapperPackage>
145    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
146      <Visible>False</Visible>
147      <ProductName>.NET Framework 3.5 SP1</ProductName>
148      <Install>false</Install>
149    </BootstrapperPackage>
150  </ItemGroup>
151  <ItemGroup>
152    <EmbeddedResource Include="Properties\CalendarResources.resx">
153      <Generator>PublicResXFileCodeGenerator</Generator>
154      <LastGenOutput>CalendarResources.Designer.cs</LastGenOutput>
155      <SubType>Designer</SubType>
156    </EmbeddedResource>
157  </ItemGroup>
158  <ItemGroup>
159    <Content Include="Resources\LockedAppointment.png" />
160    <Content Include="Resources\recurring.png" />
161  </ItemGroup>
162  <ItemGroup>
163    <None Include="HeuristicLab.snk" />
164    <None Include="Properties\AssemblyInfo.frame" />
165  </ItemGroup>
166  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
167  <PropertyGroup>
168    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
169set ProjectDir=$(ProjectDir)
170set SolutionDir=$(SolutionDir)
171set Outdir=$(Outdir)
172
173call PreBuildEvent.cmd</PreBuildEvent>
174  </PropertyGroup>
175  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
176       Other similar extension points exist, see Microsoft.Common.targets.
177  <Target Name="BeforeBuild">
178  </Target>
179  <Target Name="AfterBuild">
180  </Target>
181  -->
182</Project>
Note: See TracBrowser for help on using the repository browser.