~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/DisplayBindings/Data/ICSharpCode.Data.Core/ICSharpCode.Data.Core.csproj

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)' == '' ">AnyCPU</Platform>
 
6
    <ProductVersion>10.0.20506</ProductVersion>
 
7
    <SchemaVersion>2.0</SchemaVersion>
 
8
    <ProjectGuid>{B7823AE9-4B43-4859-8796-2EBDC116FBB8}</ProjectGuid>
 
9
    <OutputType>library</OutputType>
 
10
    <AppDesignerFolder>Properties</AppDesignerFolder>
 
11
    <RootNamespace>ICSharpCode.Data.Core</RootNamespace>
 
12
    <AssemblyName>ICSharpCode.Data.Core</AssemblyName>
 
13
    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
 
14
    <FileAlignment>512</FileAlignment>
 
15
    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
 
16
    <WarningLevel>4</WarningLevel>
 
17
    <FileUpgradeFlags>
 
18
    </FileUpgradeFlags>
 
19
    <OldToolsVersion>3.5</OldToolsVersion>
 
20
    <UpgradeBackupLocation />
 
21
    <TargetFrameworkProfile>
 
22
    </TargetFrameworkProfile>
 
23
    <PublishUrl>publish\</PublishUrl>
 
24
    <Install>true</Install>
 
25
    <InstallFrom>Disk</InstallFrom>
 
26
    <UpdateEnabled>false</UpdateEnabled>
 
27
    <UpdateMode>Foreground</UpdateMode>
 
28
    <UpdateInterval>7</UpdateInterval>
 
29
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
 
30
    <UpdatePeriodically>false</UpdatePeriodically>
 
31
    <UpdateRequired>false</UpdateRequired>
 
32
    <MapFileExtensions>true</MapFileExtensions>
 
33
    <ApplicationRevision>0</ApplicationRevision>
 
34
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
 
35
    <IsWebBootstrapper>false</IsWebBootstrapper>
 
36
    <UseApplicationTrust>false</UseApplicationTrust>
 
37
    <BootstrapperEnabled>true</BootstrapperEnabled>
 
38
  </PropertyGroup>
 
39
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 
40
    <DebugSymbols>true</DebugSymbols>
 
41
    <DebugType>full</DebugType>
 
42
    <Optimize>false</Optimize>
 
43
    <OutputPath>bin\Debug\</OutputPath>
 
44
    <DefineConstants>DEBUG;TRACE</DefineConstants>
 
45
    <ErrorReport>prompt</ErrorReport>
 
46
    <WarningLevel>4</WarningLevel>
 
47
  </PropertyGroup>
 
48
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 
49
    <DebugType>pdbonly</DebugType>
 
50
    <Optimize>true</Optimize>
 
51
    <OutputPath>bin\Release\</OutputPath>
 
52
    <DefineConstants>TRACE</DefineConstants>
 
53
    <ErrorReport>prompt</ErrorReport>
 
54
    <WarningLevel>4</WarningLevel>
 
55
  </PropertyGroup>
 
56
  <ItemGroup>
 
57
    <Reference Include="System" />
 
58
    <Reference Include="System.Core">
 
59
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
60
    </Reference>
 
61
    <Reference Include="System.Xml.Linq">
 
62
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
63
    </Reference>
 
64
    <Reference Include="System.Data.DataSetExtensions">
 
65
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 
66
    </Reference>
 
67
    <Reference Include="System.Data" />
 
68
    <Reference Include="System.Xml" />
 
69
    <Reference Include="System.Xaml" />
 
70
    <Reference Include="WindowsBase" />
 
71
    <Reference Include="PresentationCore" />
 
72
    <Reference Include="PresentationFramework" />
 
73
  </ItemGroup>
 
74
  <ItemGroup>
 
75
    <Compile Include="DatabaseObjects\ProcedureParameter.cs" />
 
76
    <Compile Include="DatabaseObjects\DatabaseObjectsCollection.cs" />
 
77
    <Compile Include="DatabaseObjects\Column.cs" />
 
78
    <Compile Include="DatabaseObjects\Constraint.cs" />
 
79
    <Compile Include="DatabaseObjects\Database.cs" />
 
80
    <Compile Include="DatabaseObjects\DatabaseDriver.cs" />
 
81
    <Compile Include="DatabaseObjects\DatabaseObjectBase.cs" />
 
82
    <Compile Include="DatabaseObjects\Datasource.cs" />
 
83
    <Compile Include="DatabaseObjects\Procedure.cs" />
 
84
    <Compile Include="DatabaseObjects\Table.cs" />
 
85
    <Compile Include="Common\Enumerable.cs" />
 
86
    <Compile Include="Common\Helper.cs" />
 
87
    <Compile Include="DatabaseObjects\TableType.cs" />
 
88
    <Compile Include="DatabaseObjects\View.cs" />
 
89
    <Compile Include="Enums\Cardinality.cs" />
 
90
    <Compile Include="Enums\ParameterMode.cs" />
 
91
    <Compile Include="Enums\ProcedureType.cs" />
 
92
    <Compile Include="Interfaces\IColumn.cs" />
 
93
    <Compile Include="Interfaces\IConstraint.cs" />
 
94
    <Compile Include="Interfaces\IDatabase.cs" />
 
95
    <Compile Include="Interfaces\IDatabaseDriver.cs" />
 
96
    <Compile Include="Interfaces\IDatabaseObjectBase.cs" />
 
97
    <Compile Include="Interfaces\IDatabaseObjectsCollection.cs" />
 
98
    <Compile Include="Interfaces\IDatasource.cs" />
 
99
    <Compile Include="Interfaces\IProcedure.cs" />
 
100
    <Compile Include="Interfaces\IProcedureParameter.cs" />
 
101
    <Compile Include="Interfaces\ITable.cs" />
 
102
    <Compile Include="Interfaces\IView.cs" />
 
103
    <Compile Include="Common\Objects.cs" />
 
104
    <Compile Include="Properties\AssemblyInfo.cs">
 
105
      <SubType>Code</SubType>
 
106
    </Compile>
 
107
    <Compile Include="Properties\Resources.Designer.cs">
 
108
      <AutoGen>True</AutoGen>
 
109
      <DesignTime>True</DesignTime>
 
110
      <DependentUpon>Resources.resx</DependentUpon>
 
111
    </Compile>
 
112
    <Compile Include="Properties\Settings.Designer.cs">
 
113
      <AutoGen>True</AutoGen>
 
114
      <DependentUpon>Settings.settings</DependentUpon>
 
115
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
 
116
    </Compile>
 
117
    <EmbeddedResource Include="Properties\Resources.resx">
 
118
      <Generator>ResXFileCodeGenerator</Generator>
 
119
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
 
120
    </EmbeddedResource>
 
121
    <None Include="Properties\Settings.settings">
 
122
      <Generator>SettingsSingleFileGenerator</Generator>
 
123
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
 
124
    </None>
 
125
    <AppDesigner Include="Properties\" />
 
126
  </ItemGroup>
 
127
  <ItemGroup>
 
128
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
 
129
      <Visible>False</Visible>
 
130
      <ProductName>.NET Framework 3.5 SP1</ProductName>
 
131
      <Install>true</Install>
 
132
    </BootstrapperPackage>
 
133
    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
 
134
      <Visible>False</Visible>
 
135
      <ProductName>Windows Installer 3.1</ProductName>
 
136
      <Install>true</Install>
 
137
    </BootstrapperPackage>
 
138
  </ItemGroup>
 
139
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
 
140
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
 
141
       Other similar extension points exist, see Microsoft.Common.targets.
 
142
  <Target Name="BeforeBuild">
 
143
  </Target>
 
144
  <Target Name="AfterBuild">
 
145
  </Target>
 
146
  -->
 
147
</Project>
 
 
b'\\ No newline at end of file'