Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Collections/3.3/HeuristicLab.Collections-3.3.csproj @ 2832

Last change on this file since 2832 was 2832, checked in by swagner, 14 years ago

Moved CollectionItemsChanged events into own interfaces (#819)

File size: 6.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Collections</RootNamespace>
12    <AssemblyName>HeuristicLab.Collections-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <DocumentationFile>bin\Release\HeuristicLab.Collections-3.3.XML</DocumentationFile>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
37    <DebugSymbols>true</DebugSymbols>
38    <OutputPath>bin\x64\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <DebugType>full</DebugType>
41    <PlatformTarget>x64</PlatformTarget>
42    <ErrorReport>prompt</ErrorReport>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
45    <OutputPath>bin\x64\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <DocumentationFile>bin\Release\HeuristicLab.Collections-3.3.XML</DocumentationFile>
48    <Optimize>true</Optimize>
49    <DebugType>pdbonly</DebugType>
50    <PlatformTarget>x64</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
53  <ItemGroup>
54    <Reference Include="System" />
55    <Reference Include="System.Core">
56      <RequiredTargetFramework>3.5</RequiredTargetFramework>
57    </Reference>
58    <Reference Include="System.Xml.Linq">
59      <RequiredTargetFramework>3.5</RequiredTargetFramework>
60    </Reference>
61    <Reference Include="System.Data.DataSetExtensions">
62      <RequiredTargetFramework>3.5</RequiredTargetFramework>
63    </Reference>
64    <Reference Include="System.Data" />
65    <Reference Include="System.Xml" />
66  </ItemGroup>
67  <ItemGroup>
68    <None Include="HeuristicLabCollectionsPlugin.cs.frame" />
69    <Compile Include="INotifyObservableListItemsChanged.cs" />
70    <Compile Include="INotifyObservableKeyedCollectionItemsChanged.cs" />
71    <Compile Include="INotifyObservableDictionaryItemsChanged.cs" />
72    <Compile Include="INotifyObservableCollectionItemsChanged.cs" />
73    <Compile Include="INotifyObservableArrayItemsChanged.cs" />
74    <Compile Include="ReadOnlyObservableArray.cs" />
75    <Compile Include="ObservableArray.cs" />
76    <Compile Include="IObservableArray.cs" />
77    <Compile Include="ObservableKeyedCollection.cs" />
78    <Compile Include="ReadOnlyObservableSet.cs" />
79    <Compile Include="IObservableSet.cs" />
80    <Compile Include="ObservableSet.cs">
81      <SubType>Code</SubType>
82    </Compile>
83    <Compile Include="ReadOnlyObservableKeyedCollection.cs">
84      <SubType>Code</SubType>
85    </Compile>
86    <Compile Include="ReadOnlyObservableList.cs" />
87    <Compile Include="ReadOnlyObservableDictionary.cs" />
88    <Compile Include="ReadOnlyObservableCollection.cs" />
89    <Compile Include="IObservableKeyedCollection.cs" />
90    <Compile Include="IObservableList.cs" />
91    <Compile Include="IObservableCollection.cs" />
92    <Compile Include="IObservableDictionary.cs" />
93    <Compile Include="ObservableCollection.cs" />
94    <Compile Include="IndexedItem.cs" />
95    <Compile Include="ObservableList.cs" />
96    <Compile Include="CollectionItemsChangedEventArgs.cs" />
97    <Compile Include="CollectionItemsChangedEventHandler.cs" />
98    <Compile Include="HeuristicLabCollectionsPlugin.cs" />
99    <Compile Include="ObservableDictionary.cs" />
100    <Compile Include="Properties\AssemblyInfo.cs" />
101  </ItemGroup>
102  <ItemGroup>
103    <None Include="HeuristicLab.snk" />
104    <None Include="Properties\AssemblyInfo.frame" />
105  </ItemGroup>
106  <ItemGroup>
107    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
108      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
109      <Name>HeuristicLab.Persistence-3.3</Name>
110    </ProjectReference>
111    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
112      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
113      <Name>HeuristicLab.PluginInfrastructure</Name>
114    </ProjectReference>
115  </ItemGroup>
116  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
117  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
118       Other similar extension points exist, see Microsoft.Common.targets.
119  <Target Name="BeforeBuild">
120  </Target>
121  <Target Name="AfterBuild">
122  </Target>
123  -->
124  <PropertyGroup>
125    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
126set ProjectDir=$(ProjectDir)
127set SolutionDir=$(SolutionDir)
128set Outdir=$(Outdir)
129
130call PreBuildEvent.cmd
131SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabCollectionsPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabCollectionsPlugin.cs"</PreBuildEvent>
132  </PropertyGroup>
133</Project>
Note: See TracBrowser for help on using the repository browser.