Gentoo Archives: gentoo-commits

From: Mikhail Pukhlikov <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/fluent-nhibernate/, dev-dotnet/fluent-nhibernate/files/
Date: Tue, 31 Oct 2017 08:03:02
Message-Id: 1509376921.8ff84ac8ab1b285f8ee5fc41b911b46cfdd352dc.cynede@gentoo
1 commit: 8ff84ac8ab1b285f8ee5fc41b911b46cfdd352dc
2 Author: ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Mon Oct 30 15:22:01 2017 +0000
4 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 30 15:22:01 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=8ff84ac8
7
8 compilation completed
9
10 .../files/CommonAssemblyInfo-2.0.2.cs | 7 +
11 .../files/FluentNHibernate-2.0.2.csproj | 761 +++++++++++++++++++++
12 .../fluent-nhibernate-2.0.2.ebuild | 9 +-
13 3 files changed, 773 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-dotnet/fluent-nhibernate/files/CommonAssemblyInfo-2.0.2.cs b/dev-dotnet/fluent-nhibernate/files/CommonAssemblyInfo-2.0.2.cs
16 new file mode 100644
17 index 0000000..761e891
18 --- /dev/null
19 +++ b/dev-dotnet/fluent-nhibernate/files/CommonAssemblyInfo-2.0.2.cs
20 @@ -0,0 +1,7 @@
21 +using System;
22 +using System.Reflection;
23 +using System.Runtime.CompilerServices;
24 +
25 +[assembly:AssemblyVersion("2.0.2")]
26 +[assembly:AssemblyInformationalVersion("2.0.2")]
27 +[assembly:AssemblyFileVersion("2.0.2")]
28 \ No newline at end of file
29
30 diff --git a/dev-dotnet/fluent-nhibernate/files/FluentNHibernate-2.0.2.csproj b/dev-dotnet/fluent-nhibernate/files/FluentNHibernate-2.0.2.csproj
31 new file mode 100644
32 index 0000000..ab7a71f
33 --- /dev/null
34 +++ b/dev-dotnet/fluent-nhibernate/files/FluentNHibernate-2.0.2.csproj
35 @@ -0,0 +1,761 @@
36 +<?xml version='1.0' encoding='UTF-8'?>
37 +<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
38 + <PropertyGroup>
39 + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
40 + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
41 + <ProjectGuid>{529145D5-6CC3-4016-89B5-826563024AF1}</ProjectGuid>
42 + <OutputType>Library</OutputType>
43 + <RootNamespace>FluentNHibernate</RootNamespace>
44 + <AssemblyName>FluentNHibernate</AssemblyName>
45 + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
46 + </PropertyGroup>
47 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
48 + <DebugSymbols>true</DebugSymbols>
49 + <DebugType>full</DebugType>
50 + <Optimize>false</Optimize>
51 + <OutputPath>bin\Debug\</OutputPath>
52 + <DefineConstants>DEBUG;TRACE</DefineConstants>
53 + <ErrorReport>prompt</ErrorReport>
54 + <WarningLevel>4</WarningLevel>
55 + <NoWarn>1591</NoWarn>
56 + <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
57 + <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
58 + <DocumentationFile>bin\Debug\FluentNHibernate.XML</DocumentationFile>
59 + </PropertyGroup>
60 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
61 + <DebugType>pdbonly</DebugType>
62 + <Optimize>true</Optimize>
63 + <OutputPath>bin\Release\</OutputPath>
64 + <DefineConstants>TRACE</DefineConstants>
65 + <ErrorReport>prompt</ErrorReport>
66 + <WarningLevel>4</WarningLevel>
67 + <DocumentationFile>bin\Release\FluentNHibernate.XML</DocumentationFile>
68 + <NoWarn>1591</NoWarn>
69 + <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
70 + </PropertyGroup>
71 + <ItemGroup>
72 + <Reference Include="NHibernate" />
73 + <Reference Include="System" />
74 + <Reference Include="System.Xml" />
75 + <Reference Include="System.Data" />
76 + <Reference Include="System.Core" />
77 + <Reference Include="System.Configuration" />
78 + <Reference Include="System.Transactions" />
79 + <Reference Include="System.Xml.Linq" />
80 + </ItemGroup>
81 + <ItemGroup>
82 + <Compile Include="..\CommonAssemblyInfo.cs">
83 + <Link>CommonAssemblyInfo.cs</Link>
84 + </Compile>
85 + <Compile Include="Automapping\Alterations\AutoMappingOverrideAlteration.cs" />
86 + <Compile Include="Automapping\Alterations\IAutoMappingAlteration.cs" />
87 + <Compile Include="Automapping\Alterations\IAutoMappingOverride.cs" />
88 + <Compile Include="AssemblyTypeSource.cs" />
89 + <Compile Include="Automapping\AutoJoinedSubClassPart.cs" />
90 + <Compile Include="Automapping\AutoJoinPart.cs" />
91 + <Compile Include="Automapping\AutoMap.cs" />
92 + <Compile Include="Automapping\AutoMapping.cs" />
93 + <Compile Include="Automapping\AutoMapper.cs" />
94 + <Compile Include="Automapping\AutoMappingAlterationCollection.cs" />
95 + <Compile Include="Automapping\AutoMappingException.cs" />
96 + <Compile Include="Automapping\AutoMappingExpressions.cs" />
97 + <Compile Include="Automapping\AutoMapType.cs" />
98 + <Compile Include="Automapping\AutoPersistenceModel.cs" />
99 + <Compile Include="Automapping\AutoSubClassPart.cs" />
100 + <Compile Include="Automapping\DefaultAutomappingConfiguration.cs" />
101 + <Compile Include="Automapping\IAutoClasslike.cs" />
102 + <Compile Include="Automapping\IAutomappingConfiguration.cs" />
103 + <Compile Include="Automapping\InlineOverride.cs" />
104 + <Compile Include="Automapping\IPropertyIgnorer.cs" />
105 + <Compile Include="Automapping\Steps\AutoKeyMapper.cs" />
106 + <Compile Include="Automapping\Steps\VersionStep.cs" />
107 + <Compile Include="Automapping\Steps\PropertyStep.cs" />
108 + <Compile Include="Automapping\Steps\SimpleTypeCollectionStep.cs" />
109 + <Compile Include="Automapping\Steps\HasManyStep.cs" />
110 + <Compile Include="Automapping\Steps\ReferenceStep.cs" />
111 + <Compile Include="Automapping\Steps\IdentityStep.cs" />
112 + <Compile Include="Automapping\Steps\ComponentStep.cs" />
113 + <Compile Include="Automapping\Steps\HasManyToManyStep.cs" />
114 + <Compile Include="Automapping\Steps\CollectionStep.cs" />
115 + <Compile Include="Automapping\Steps\IAutomappingStep.cs" />
116 + <Compile Include="Cfg\Db\OracleManagedDataClientConfiguration.cs" />
117 + <Compile Include="Cfg\Db\SQLAnywhereConfiguration.cs" />
118 + <Compile Include="Cfg\Db\SybaseSQLAnywhereConnectionStringBuilder.cs" />
119 + <Compile Include="Cfg\Db\IngresConfiguration.cs" />
120 + <Compile Include="Cfg\Db\IngresConnectionStringBuilder.cs" />
121 + <Compile Include="CombinedAssemblyTypeSource.cs" />
122 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltArrayConvention.cs" />
123 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltBagConvention.cs" />
124 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltListConvention.cs" />
125 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltMapConvention.cs" />
126 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltSetConvention.cs" />
127 + <Compile Include="Conventions\Inspections\IKeyManyToOneInspector.cs" />
128 + <Compile Include="Conventions\Inspections\IKeyPropertyInspector.cs" />
129 + <Compile Include="Conventions\Inspections\KeyPropertyInspector.cs" />
130 + <Compile Include="Conventions\Instances\ElementInstance.cs" />
131 + <Compile Include="Conventions\Instances\IElementInstance.cs" />
132 + <Compile Include="Conventions\Instances\IKeyPropertyInstance.cs" />
133 + <Compile Include="Conventions\Instances\KeyPropertyInstance.cs" />
134 + <Compile Include="Diagnostics\AutomappingType.cs" />
135 + <Compile Include="Diagnostics\ConsoleOutputListener.cs" />
136 + <Compile Include="Diagnostics\DefaultDiagnosticMessageDispatcher.cs" />
137 + <Compile Include="Diagnostics\DefaultOutputFormatter.cs" />
138 + <Compile Include="Diagnostics\DiagnosticResults.cs" />
139 + <Compile Include="Diagnostics\DiagnosticsConfiguration.cs" />
140 + <Compile Include="Diagnostics\DefaultDiagnosticLogger.cs" />
141 + <Compile Include="Diagnostics\IDiagnosticListener.cs" />
142 + <Compile Include="Diagnostics\IDiagnosticLogger.cs" />
143 + <Compile Include="Diagnostics\IDiagnosticMessageDispatcher.cs" />
144 + <Compile Include="Diagnostics\IDiagnosticResultsFormatter.cs" />
145 + <Compile Include="Diagnostics\NullDiagnosticsLogger.cs" />
146 + <Compile Include="Diagnostics\ScannedSource.cs" />
147 + <Compile Include="Diagnostics\ScanPhase.cs" />
148 + <Compile Include="Diagnostics\SkippedAutomappingType.cs" />
149 + <Compile Include="Diagnostics\StringLambdaOutputListener.cs" />
150 + <Compile Include="ITypeSource.cs" />
151 + <Compile Include="Automapping\PrivateAutoPersistenceModel.cs" />
152 + <Compile Include="Automapping\SubclassStrategy.cs" />
153 + <Compile Include="Cfg\Db\DB2Configuration.cs" />
154 + <Compile Include="Cfg\Db\DB2ConnectionStringBuilder.cs" />
155 + <Compile Include="Conventions\AcceptanceCriteria\AnyExpectation.cs" />
156 + <Compile Include="Conventions\AcceptanceCriteria\CollectionExpectation.cs" />
157 + <Compile Include="Conventions\AcceptanceCriteria\InvertedExpectation.cs" />
158 + <Compile Include="Conventions\AcceptanceCriteria\InverterAcceptanceCriteria.cs" />
159 + <Compile Include="Conventions\AttributeCollectionConvention.cs" />
160 + <Compile Include="Conventions\AccessConvention.cs" />
161 + <Compile Include="Conventions\Helpers\Builders\KeyManyToOneConventionBuilder.cs" />
162 + <Compile Include="Conventions\Helpers\Builders\KeyPropertyConventionBuilder.cs" />
163 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltKeyPropertyConvention.cs" />
164 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltKeyManyToOneConvention.cs" />
165 + <Compile Include="Conventions\IAnyConvention.cs" />
166 + <Compile Include="Conventions\IKeyManyToOneConventionAcceptance.cs" />
167 + <Compile Include="Conventions\IKeyPropertyConventionAcceptance.cs" />
168 + <Compile Include="Conventions\Helpers\AutoImport.cs" />
169 + <Compile Include="Conventions\Helpers\Builders\BagConventionBuilder.cs" />
170 + <Compile Include="Conventions\Helpers\Builders\CollectionConventionBuilder.cs" />
171 + <Compile Include="Conventions\Helpers\Builders\ArrayConventionBuilder.cs" />
172 + <Compile Include="Conventions\Helpers\Builders\CompositeIdConventionBuilder.cs" />
173 + <Compile Include="Conventions\Helpers\Builders\HibernateMappingConventionBuilder.cs" />
174 + <Compile Include="Conventions\Helpers\Builders\JoinConventionBuilder.cs" />
175 + <Compile Include="Conventions\Helpers\Builders\MapConventionBuilder.cs" />
176 + <Compile Include="Conventions\Helpers\Builders\SetConventionBuilder.cs" />
177 + <Compile Include="Conventions\Helpers\Builders\ListConventionBuilder.cs" />
178 + <Compile Include="Conventions\Helpers\Builders\HasOneConventionBuilder.cs" />
179 + <Compile Include="Conventions\Helpers\Builders\JoinedSubclassConventionBuilder.cs" />
180 + <Compile Include="Conventions\Helpers\Builders\ComponentConventionBuilder.cs" />
181 + <Compile Include="Conventions\Helpers\Builders\DynamicComponentConventionBuilder.cs" />
182 + <Compile Include="Conventions\Helpers\Builders\OneToManyCollectionConventionBuilder.cs" />
183 + <Compile Include="Conventions\Helpers\Builders\SubclassConventionBuilder.cs" />
184 + <Compile Include="Conventions\Helpers\Builders\VersionConventionBuilder.cs" />
185 + <Compile Include="Conventions\Helpers\Cache.cs" />
186 + <Compile Include="Conventions\Helpers\DefaultAccess.cs" />
187 + <Compile Include="Conventions\Helpers\DefaultCascade.cs" />
188 + <Compile Include="Conventions\Helpers\DefaultLazy.cs" />
189 + <Compile Include="Conventions\Helpers\LazyLoad.cs" />
190 + <Compile Include="Conventions\Helpers\ForeignKey.cs" />
191 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltHibernateMappingConvention.cs" />
192 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltFuncForeignKeyConvention.cs" />
193 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltJoinConvention.cs" />
194 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltJoinedSubclassConvention.cs" />
195 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltProxyConvention.cs" />
196 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltSubclassConvention.cs" />
197 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltCollectionConvention.cs" />
198 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltHasOneConvention.cs" />
199 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltManyToManyCollectionConvention.cs" />
200 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltOneToManyCollectionConvention.cs" />
201 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltSuffixForeignKeyConvention.cs" />
202 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltVersionConvention.cs" />
203 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltComponentConvention.cs" />
204 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltDynamicComponentConvention.cs" />
205 + <Compile Include="Conventions\Helpers\Proxy.cs" />
206 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltCompositeIdConvention.cs" />
207 + <Compile Include="Conventions\IArrayConvention.cs" />
208 + <Compile Include="Conventions\IArrayConventionAcceptance.cs" />
209 + <Compile Include="Conventions\IBagConvention.cs" />
210 + <Compile Include="Conventions\IBagConventionAcceptance.cs" />
211 + <Compile Include="Conventions\IClassConventionAcceptance.cs" />
212 + <Compile Include="Conventions\ICollectionConventionAcceptance.cs" />
213 + <Compile Include="Conventions\IColumnConventionAcceptance.cs" />
214 + <Compile Include="Conventions\IComponentConventionAcceptance.cs" />
215 + <Compile Include="Conventions\ICompositeIdentityConvention.cs" />
216 + <Compile Include="Conventions\ICompositeIdentityConventionAcceptance.cs" />
217 + <Compile Include="Conventions\IDynamicComponentConventionAcceptance.cs" />
218 + <Compile Include="Conventions\IHasManyConventionAcceptance.cs" />
219 + <Compile Include="Conventions\IHasManyToManyConventionAcceptance.cs" />
220 + <Compile Include="Conventions\IHasOneConventionAcceptance.cs" />
221 + <Compile Include="Conventions\IHibernateMappingConvention.cs" />
222 + <Compile Include="Conventions\IIdConventionAcceptance.cs" />
223 + <Compile Include="Conventions\IIndexConvention.cs" />
224 + <Compile Include="Conventions\IIndexConventionAcceptance.cs" />
225 + <Compile Include="Conventions\IIndexManyToManyConvention.cs" />
226 + <Compile Include="Conventions\IIndexManyToManyConventionAcceptance.cs" />
227 + <Compile Include="Conventions\IJoinConventionAcceptance.cs" />
228 + <Compile Include="Conventions\IJoinedSubclassConventionAcceptance.cs" />
229 + <Compile Include="Conventions\IKeyManyToOneConvention.cs" />
230 + <Compile Include="Conventions\IKeyPropertyConvention.cs" />
231 + <Compile Include="Conventions\IListConvention.cs" />
232 + <Compile Include="Conventions\IListConventionAcceptance.cs" />
233 + <Compile Include="Conventions\IMapConvention.cs" />
234 + <Compile Include="Conventions\IMapConventionAcceptance.cs" />
235 + <Compile Include="Conventions\Inspections\AnyInspector.cs" />
236 + <Compile Include="Conventions\Inspections\CacheInspector.cs" />
237 + <Compile Include="Conventions\Inspections\CamelCasePrefix.cs" />
238 + <Compile Include="Conventions\Inspections\Cascade.cs" />
239 + <Compile Include="Conventions\Inspections\CollectionInspector.cs" />
240 + <Compile Include="Conventions\Inspections\ColumnBasedInspector.cs" />
241 + <Compile Include="Conventions\Inspections\ComponentBaseInspector.cs" />
242 + <Compile Include="Conventions\Inspections\ComponentInspector.cs" />
243 + <Compile Include="Conventions\Inspections\CompositeElementInspector.cs" />
244 + <Compile Include="Conventions\Inspections\CompositeIdentityInspector.cs" />
245 + <Compile Include="Conventions\Inspections\HibernateMappingInspector.cs" />
246 + <Compile Include="Conventions\Instances\AnyInstance.cs" />
247 + <Compile Include="Conventions\Instances\IAnyInstance.cs" />
248 + <Compile Include="Conventions\Inspections\IArrayInspector.cs" />
249 + <Compile Include="Conventions\Inspections\IBagInspector.cs" />
250 + <Compile Include="Conventions\Inspections\IHibernateMappingInspector.cs" />
251 + <Compile Include="Conventions\Inspections\IListInspector.cs" />
252 + <Compile Include="Conventions\Inspections\IMapInspector.cs" />
253 + <Compile Include="Conventions\Inspections\Include.cs" />
254 + <Compile Include="Conventions\Inspections\IndexManyToManyInspector.cs" />
255 + <Compile Include="Conventions\Inspections\DiscriminatorInspector.cs" />
256 + <Compile Include="Conventions\Inspections\DynamicComponentInspector.cs" />
257 + <Compile Include="Conventions\Inspections\ElementInspector.cs" />
258 + <Compile Include="Conventions\Inspections\Fetch.cs" />
259 + <Compile Include="Conventions\Inspections\Generated.cs" />
260 + <Compile Include="Conventions\Inspections\IAnyInspector.cs" />
261 + <Compile Include="Conventions\Inspections\ICacheInspector.cs" />
262 + <Compile Include="Conventions\Inspections\IComponentBaseInspector.cs" />
263 + <Compile Include="Conventions\Inspections\IComponentInspector.cs" />
264 + <Compile Include="Conventions\Inspections\ICompositeElementInspector.cs" />
265 + <Compile Include="Conventions\Inspections\ICompositeIdentityInspector.cs" />
266 + <Compile Include="Conventions\Inspections\IDiscriminatorInspector.cs" />
267 + <Compile Include="Conventions\Inspections\IDynamicComponentInspector.cs" />
268 + <Compile Include="Conventions\Inspections\IElementInspector.cs" />
269 + <Compile Include="Conventions\Inspections\IGeneratorInspector.cs" />
270 + <Compile Include="Conventions\Inspections\IIdentityInspectorBase.cs" />
271 + <Compile Include="Conventions\Inspections\IIndexInspector.cs" />
272 + <Compile Include="Conventions\Inspections\IIndexInspectorBase.cs" />
273 + <Compile Include="Conventions\Inspections\IIndexManyToManyInspector.cs" />
274 + <Compile Include="Conventions\Inspections\IJoinedSubclassInspector.cs" />
275 + <Compile Include="Conventions\Inspections\IJoinInspector.cs" />
276 + <Compile Include="Conventions\Inspections\IManyToManyCollectionInspector.cs" />
277 + <Compile Include="Conventions\Inspections\IMetaValueInspector.cs" />
278 + <Compile Include="Conventions\Inspections\IndexInspector.cs" />
279 + <Compile Include="Conventions\Inspections\IOneToManyCollectionInspector.cs" />
280 + <Compile Include="Conventions\Inspections\IOneToOneInspector.cs" />
281 + <Compile Include="Conventions\Inspections\IParentInspector.cs" />
282 + <Compile Include="Conventions\Inspections\ISetInspector.cs" />
283 + <Compile Include="Conventions\Inspections\ISubclassInspector.cs" />
284 + <Compile Include="Conventions\Inspections\ISubclassInspectorBase.cs" />
285 + <Compile Include="Conventions\Inspections\IVersionInspector.cs" />
286 + <Compile Include="Conventions\Inspections\JoinedSubclassInspector.cs" />
287 + <Compile Include="Conventions\Inspections\JoinInspector.cs" />
288 + <Compile Include="Conventions\Inspections\JoinInstance.cs" />
289 + <Compile Include="Conventions\Inspections\KeyManyToOneInspector.cs" />
290 + <Compile Include="Conventions\Inspections\LowerCasePrefix.cs" />
291 + <Compile Include="Conventions\Inspections\ManyToManyInspector.cs" />
292 + <Compile Include="Conventions\Inspections\MetaValueInspector.cs" />
293 + <Compile Include="Conventions\Inspections\NotFound.cs" />
294 + <Compile Include="Conventions\Inspections\OnDelete.cs" />
295 + <Compile Include="Conventions\Inspections\OneToManyInspector.cs" />
296 + <Compile Include="Conventions\Inspections\OneToOneInspector.cs" />
297 + <Compile Include="Conventions\Inspections\OptimisticLock.cs" />
298 + <Compile Include="Conventions\Inspections\ParentInspector.cs" />
299 + <Compile Include="Conventions\Inspections\PascalCasePrefix.cs" />
300 + <Compile Include="Conventions\Inspections\Polymorphism.cs" />
301 + <Compile Include="Conventions\Inspections\Prefix.cs" />
302 + <Compile Include="Conventions\Inspections\SchemaAction.cs" />
303 + <Compile Include="Conventions\Inspections\SubclassInspector.cs" />
304 + <Compile Include="Conventions\Inspections\VersionInspector.cs" />
305 + <Compile Include="Conventions\Instances\AccessInstance.cs" />
306 + <Compile Include="Conventions\Instances\CascadeInstance.cs" />
307 + <Compile Include="Conventions\Instances\CollectionCascadeInstance.cs" />
308 + <Compile Include="Conventions\Instances\ComponentInstance.cs" />
309 + <Compile Include="Conventions\Instances\CompositeIdentityInstance.cs" />
310 + <Compile Include="Conventions\Instances\DynamicComponentInstance.cs" />
311 + <Compile Include="Conventions\Instances\FetchInstance.cs" />
312 + <Compile Include="Conventions\Instances\GeneratedInstance.cs" />
313 + <Compile Include="Conventions\Instances\GeneratorInstance.cs" />
314 + <Compile Include="Conventions\Instances\HibernateMappingInstance.cs" />
315 + <Compile Include="Conventions\Instances\IArrayInstance.cs" />
316 + <Compile Include="Conventions\Instances\IBagInstance.cs" />
317 + <Compile Include="Conventions\Instances\ICacheInstance.cs" />
318 + <Compile Include="Conventions\Instances\ICascadeInstance.cs" />
319 + <Compile Include="Conventions\Instances\ICollectionCascadeInstance.cs" />
320 + <Compile Include="Conventions\Instances\IComponentInstance.cs" />
321 + <Compile Include="Conventions\Instances\ICompositeIdentityInstance.cs" />
322 + <Compile Include="Conventions\Instances\IdentityInstance.cs" />
323 + <Compile Include="Conventions\Instances\IFetchInstance.cs" />
324 + <Compile Include="Conventions\Instances\IGeneratedInstance.cs" />
325 + <Compile Include="Conventions\Instances\IGeneratorInstance.cs" />
326 + <Compile Include="Conventions\Instances\IHibernateMappingInstance.cs" />
327 + <Compile Include="Conventions\Instances\IIndexInstance.cs" />
328 + <Compile Include="Conventions\Instances\IIndexInstanceBase.cs" />
329 + <Compile Include="Conventions\Instances\IIndexManyToManyInstance.cs" />
330 + <Compile Include="Conventions\Instances\IJoinedSubclassInstance.cs" />
331 + <Compile Include="Conventions\Instances\IJoinInstance.cs" />
332 + <Compile Include="Conventions\Instances\IKeyManyToOneInstance.cs" />
333 + <Compile Include="Conventions\Instances\IListInstance.cs" />
334 + <Compile Include="Conventions\Instances\IManyToManyInstance.cs" />
335 + <Compile Include="Conventions\Instances\IKeyInstance.cs" />
336 + <Compile Include="Conventions\Instances\IManyToManyCollectionInstance.cs" />
337 + <Compile Include="Conventions\Instances\ICollectionInstance.cs" />
338 + <Compile Include="Conventions\Instances\IColumnInstance.cs" />
339 + <Compile Include="Conventions\Instances\IClassInstance.cs" />
340 + <Compile Include="Conventions\Instances\IManyToOneInstance.cs" />
341 + <Compile Include="Conventions\Instances\IIdentityInstance.cs" />
342 + <Compile Include="Conventions\Instances\IMapInstance.cs" />
343 + <Compile Include="Conventions\Instances\IndexInstance.cs" />
344 + <Compile Include="Conventions\Instances\IndexManyToManyInstance.cs" />
345 + <Compile Include="Conventions\Instances\INotFoundInstance.cs" />
346 + <Compile Include="Conventions\Instances\IOneToOneInstance.cs" />
347 + <Compile Include="Conventions\Instances\IOptimisticLockInstance.cs" />
348 + <Compile Include="Conventions\Instances\IRelationshipInstance.cs" />
349 + <Compile Include="Conventions\Instances\CollectionInstance.cs" />
350 + <Compile Include="Conventions\Instances\ClassInstance.cs" />
351 + <Compile Include="Conventions\Instances\IPropertyInstance.cs" />
352 + <Compile Include="Conventions\Instances\IOneToManyCollectionInstance.cs" />
353 + <Compile Include="Conventions\Instances\IOneToManyInstance.cs" />
354 + <Compile Include="Conventions\Instances\ISchemaActionInstance.cs" />
355 + <Compile Include="Conventions\Instances\ISetInstance.cs" />
356 + <Compile Include="Conventions\Instances\ISubclassInstance.cs" />
357 + <Compile Include="Conventions\Instances\IVersionInstance.cs" />
358 + <Compile Include="Conventions\Instances\JoinedSubclassInstance.cs" />
359 + <Compile Include="Conventions\Instances\KeyManyToOneInstance.cs" />
360 + <Compile Include="Conventions\Instances\ManyToManyCollectionInstance.cs" />
361 + <Compile Include="Conventions\Instances\NotFoundInstance.cs" />
362 + <Compile Include="Conventions\Instances\OneToManyCollectionInstance.cs" />
363 + <Compile Include="Conventions\Instances\OneToOneInstance.cs" />
364 + <Compile Include="Conventions\Instances\OptimisticLockInstance.cs" />
365 + <Compile Include="Conventions\Helpers\Builders\ClassConventionBuilder.cs" />
366 + <Compile Include="Conventions\Helpers\Builders\HasManyConventionBuilder.cs" />
367 + <Compile Include="Conventions\Helpers\Builders\HasManyToManyConventionBuilder.cs" />
368 + <Compile Include="Conventions\Helpers\Builders\IdConventionBuilder.cs" />
369 + <Compile Include="Conventions\Helpers\Builders\PropertyConventionBuilder.cs" />
370 + <Compile Include="Conventions\Helpers\Builders\ReferenceConventionBuilder.cs" />
371 + <Compile Include="Conventions\Helpers\ConventionBuilder.cs" />
372 + <Compile Include="Conventions\Helpers\DynamicInsert.cs" />
373 + <Compile Include="Conventions\Helpers\DynamicUpdate.cs" />
374 + <Compile Include="Conventions\Helpers\IConventionBuilder.cs" />
375 + <Compile Include="Conventions\Helpers\OptimisticLock.cs" />
376 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltClassConvention.cs" />
377 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltConventionBase.cs" />
378 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltHasManyConvention.cs" />
379 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltHasManyToManyConvention.cs" />
380 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltIdConvention.cs" />
381 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltPropertyConvention.cs" />
382 + <Compile Include="Conventions\Helpers\Prebuilt\BuiltReferenceConvention.cs" />
383 + <Compile Include="Conventions\Helpers\PrimaryKey.cs" />
384 + <Compile Include="Conventions\Helpers\Table.cs" />
385 + <Compile Include="Conventions\IHasManyConvention.cs" />
386 + <Compile Include="Conventions\Inspections\ColumnInspector.cs" />
387 + <Compile Include="Conventions\Instances\KeyInstance.cs" />
388 + <Compile Include="Conventions\Inspections\IdentityInspector.cs" />
389 + <Compile Include="Conventions\Inspections\KeyInspector.cs" />
390 + <Compile Include="Conventions\Instances\ManyToManyInstance.cs" />
391 + <Compile Include="Conventions\Instances\ManyToOneInstance.cs" />
392 + <Compile Include="Conventions\Inspections\ManyToOneInspector.cs" />
393 + <Compile Include="Conventions\Instances\OneToManyInstance.cs" />
394 + <Compile Include="Conventions\Inspections\PropertyInspector.cs" />
395 + <Compile Include="Conventions\EnumerableExtensionsForConventions.cs" />
396 + <Compile Include="Conventions\ICollectionConvention.cs" />
397 + <Compile Include="Conventions\IColumnConvention.cs" />
398 + <Compile Include="Conventions\IHasManyToManyConvention.cs" />
399 + <Compile Include="Conventions\Inspections\IAccessInspector.cs" />
400 + <Compile Include="Conventions\Inspections\ICollectionInspector.cs" />
401 + <Compile Include="Conventions\Inspections\IKeyInspector.cs" />
402 + <Compile Include="Conventions\Inspections\IManyToManyInspector.cs" />
403 + <Compile Include="Conventions\Inspections\IManyToOneInspector.cs" />
404 + <Compile Include="Conventions\Inspections\IOneToManyInspector.cs" />
405 + <Compile Include="Conventions\Inspections\IRelationshipInspector.cs" />
406 + <Compile Include="Conventions\Instances\SchemaActionInstance.cs" />
407 + <Compile Include="Conventions\Instances\SubclassInstance.cs" />
408 + <Compile Include="Conventions\Instances\VersionInstance.cs" />
409 + <Compile Include="Conventions\IPropertyConventionAcceptance.cs" />
410 + <Compile Include="Conventions\IReferenceConventionAcceptance.cs" />
411 + <Compile Include="Conventions\ISetConvention.cs" />
412 + <Compile Include="Conventions\ISetConventionAcceptance.cs" />
413 + <Compile Include="Conventions\ISubclassConventionAcceptance.cs" />
414 + <Compile Include="Conventions\IUserTypeConvention.cs" />
415 + <Compile Include="Conventions\IVersionConventionAcceptance.cs" />
416 + <Compile Include="Conventions\ManyToManyTableNameConvention.cs" />
417 + <Compile Include="Conventions\ObjectExtensionsForConventions.cs" />
418 + <Compile Include="Conventions\ProxyConvention.cs" />
419 + <Compile Include="MappingModel\Collections\LayeredColumns.cs" />
420 + <Compile Include="MappingModel\Layer.cs" />
421 + <Compile Include="MappingModel\ClassBased\ComponentType.cs" />
422 + <Compile Include="MappingModel\ClassBased\ExternalComponentMapping.cs" />
423 + <Compile Include="MappingModel\ClassBased\SubclassType.cs" />
424 + <Compile Include="MappingModel\Collections\AttributeLayeredValues.cs" />
425 + <Compile Include="MappingModel\Collections\Collection.cs" />
426 + <Compile Include="MappingModel\Collections\LayeredValues.cs" />
427 + <Compile Include="MappingModel\Collections\Lazy.cs" />
428 + <Compile Include="MappingModel\Collections\NestedCompositeElementMapping.cs" />
429 + <Compile Include="MappingModel\EqualityExtensions.cs" />
430 + <Compile Include="MappingModel\Identity\ICompositeIdKeyMapping.cs" />
431 + <Compile Include="MappingModel\IRelationship.cs" />
432 + <Compile Include="MappingModel\NaturalIdMapping.cs" />
433 + <Compile Include="MappingModel\Output\CollectionAttributeWriter.cs" />
434 + <Compile Include="MappingModel\Output\XmlBagWriter.cs" />
435 + <Compile Include="MappingModel\Output\XmlNaturalIdWriter.cs" />
436 + <Compile Include="MappingModel\TuplizerMode.cs" />
437 + <Compile Include="Mapping\Access.cs" />
438 + <Compile Include="Mapping\CollectionTypeResolver.cs" />
439 + <Compile Include="Mapping\ListIndexPart.cs" />
440 + <Compile Include="Mapping\Laziness.cs" />
441 + <Compile Include="Mapping\MappingProviderStore.cs" />
442 + <Compile Include="Mapping\MemberAccessResolver.cs" />
443 + <Compile Include="Mapping\Naming.cs" />
444 + <Compile Include="Mapping\NamingStrategy.cs" />
445 + <Compile Include="Mapping\NaturalIdPart.cs" />
446 + <Compile Include="Mapping\Providers\IElementMappingProvider.cs" />
447 + <Compile Include="Mapping\Providers\IExternalComponentMappingProvider.cs" />
448 + <Compile Include="Mapping\Providers\IIndeterminateSubclassMappingProviderCollection.cs" />
449 + <Compile Include="Mapping\Providers\INaturalIdMappingProvider.cs" />
450 + <Compile Include="Mapping\Providers\IndeterminateSubclassMappingProviderCollection.cs" />
451 + <Compile Include="Mapping\Providers\INestedCompositeElementMappingProvider.cs" />
452 + <Compile Include="Mapping\Providers\IPropertyMappingProvider.cs" />
453 + <Compile Include="Mapping\Providers\IReferenceComponentMappingProvider.cs" />
454 + <Compile Include="Mapping\TuplizerPart.cs" />
455 + <Compile Include="Testing\Values\ReferenceBag.cs" />
456 + <Compile Include="Utils\StringLikeness.cs" />
457 + <Compile Include="Visitors\AmbiguousComponentReferenceException.cs" />
458 + <Compile Include="Visitors\RelationshipKeyPairingVisitor.cs" />
459 + <Compile Include="Visitors\RelationshipPairingVisitor.cs" />
460 + <Compile Include="MappingModel\ClassBased\ReferenceComponentMapping.cs" />
461 + <Compile Include="MappingModel\ColumnBasedMappingBase.cs" />
462 + <Compile Include="MappingModel\FilterDefinitionMapping.cs" />
463 + <Compile Include="MappingModel\FilterMapping.cs" />
464 + <Compile Include="Visitors\ComponentColumnPrefixVisitor.cs" />
465 + <Compile Include="Visitors\ComponentReferenceResolutionVisitor.cs" />
466 + <Compile Include="Visitors\ManyToManyTableNameVisitor.cs" />
467 + <Compile Include="MappingModel\Output\XmlFilterDefinitionWriter.cs" />
468 + <Compile Include="MappingModel\Output\XmlFilterWriter.cs" />
469 + <Compile Include="MappingModel\Output\XmlStoredProcedureWriter.cs" />
470 + <Compile Include="MappingModel\Output\XmlTuplizerWriter.cs" />
471 + <Compile Include="MappingModel\StoredProcedureMapping.cs" />
472 + <Compile Include="MappingModel\TuplizerMapping.cs" />
473 + <Compile Include="Mapping\CheckTypeExpression.cs" />
474 + <Compile Include="Mapping\ColumnPart.cs" />
475 + <Compile Include="Mapping\ComponentMap.cs" />
476 + <Compile Include="Mapping\ReferenceComponentPart.cs" />
477 + <Compile Include="Mapping\FilterDefinition.cs" />
478 + <Compile Include="Mapping\FilterPart.cs" />
479 + <Compile Include="Mapping\IFilterDefinition.cs" />
480 + <Compile Include="Mapping\KeyManyToOnePart.cs" />
481 + <Compile Include="Mapping\KeyPropertyPart.cs" />
482 + <Compile Include="Mapping\Member.cs" />
483 + <Compile Include="Mapping\Providers\IFilterMappingProvider.cs" />
484 + <Compile Include="Mapping\Providers\IStoredProcedureMappingProvider.cs" />
485 + <Compile Include="Mapping\StoredProcedurePart.cs" />
486 + <Compile Include="Utils\ReflectionExtensions.cs" />
487 + <Compile Include="Mapping\PolymorphismBuilder.cs" />
488 + <Compile Include="Mapping\SchemaActionBuilder.cs" />
489 + <Compile Include="Visitors\MissingExternalComponentException.cs" />
490 + <Compile Include="Visitors\SeparateSubclassVisitor.cs" />
491 + <Compile Include="MappingModel\Collections\SortType.cs" />
492 + <Compile Include="MappingModel\IHasColumnMappings.cs" />
493 + <Compile Include="MappingModel\Output\Sorting\BaseXmlNodeSorter.cs" />
494 + <Compile Include="MappingModel\Output\Sorting\SortValue.cs" />
495 + <Compile Include="MappingModel\Output\Sorting\XmlClasslikeNodeSorter.cs" />
496 + <Compile Include="MappingModel\Output\Sorting\XmlCollectionNodeSorter.cs" />
497 + <Compile Include="MappingModel\Output\Sorting\XmlIdNodeSorter.cs" />
498 + <Compile Include="MappingModel\Output\Sorting\XmlNodeSorter.cs" />
499 + <Compile Include="MappingModel\TypeReference.cs" />
500 + <Compile Include="Mapping\GeneratorBuilder.cs" />
501 + <Compile Include="Mapping\Providers\IAnyMappingProvider.cs" />
502 + <Compile Include="Mapping\Providers\ICacheMappingProvider.cs" />
503 + <Compile Include="Mapping\Providers\IComponentMappingProvider.cs" />
504 + <Compile Include="Mapping\Providers\IIdentityMappingProvider.cs" />
505 + <Compile Include="Mapping\Providers\IJoinMappingProvider.cs" />
506 + <Compile Include="Mapping\Providers\IManyToOneMappingProvider.cs" />
507 + <Compile Include="Mapping\Providers\IOneToOneMappingProvider.cs" />
508 + <Compile Include="Mapping\Providers\IIndeterminateSubclassMappingProvider.cs" />
509 + <Compile Include="Mapping\Providers\IVersionMappingProvider.cs" />
510 + <Compile Include="Mapping\SubclassMap.cs" />
511 + <Compile Include="Utils\CollectionExtensions.cs" />
512 + <Compile Include="Utils\Reflection\ExpressionBuilder.cs" />
513 + <Compile Include="Cfg\AutoMappingsContainer.cs" />
514 + <Compile Include="Cfg\Db\CacheSettingsBuilder.cs" />
515 + <Compile Include="Cfg\Db\ConnectionStringBuilder.cs" />
516 + <Compile Include="Cfg\Db\FirebirdConfiguration.cs" />
517 + <Compile Include="Cfg\Db\IPersistenceConfigurer.cs" />
518 + <Compile Include="Cfg\Db\JetDriverConfiguration.cs" />
519 + <Compile Include="Cfg\Db\JetDriverConnectionStringBuilder.cs" />
520 + <Compile Include="Cfg\Db\MsSqlConnectionStringBuilder.cs" />
521 + <Compile Include="Cfg\Db\MySQLConnectionStringBuilder.cs" />
522 + <Compile Include="Cfg\Db\OracleClientConfiguration.cs" />
523 + <Compile Include="Cfg\Db\OracleConfiguration.cs" />
524 + <Compile Include="Cfg\Db\OracleConnectionStringBuilder.cs" />
525 + <Compile Include="Cfg\Db\OracleDataClientConfiguration.cs" />
526 + <Compile Include="Cfg\Db\PostgreSQLConnectionStringBuilder.cs" />
527 + <Compile Include="Cfg\Db\OdbcConnectionStringBuilder.cs" />
528 + <Compile Include="Cfg\Db\IfxOdbcConfiguration.cs" />
529 + <Compile Include="Cfg\Db\IfxDRDAConfiguration.cs" />
530 + <Compile Include="Cfg\Db\IfxDRDAConnectionStringBuilder.cs" />
531 + <Compile Include="Cfg\Db\IfxSQLIConfiguration.cs" />
532 + <Compile Include="Cfg\Db\IfxSQLIConnectionStringBuilder.cs" />
533 + <Compile Include="Cfg\FluentConfiguration.cs" />
534 + <Compile Include="Cfg\FluentConfigurationException.cs" />
535 + <Compile Include="Cfg\Fluently.cs" />
536 + <Compile Include="Cfg\FluentMappingsContainer.cs" />
537 + <Compile Include="Cfg\HbmMappingsContainer.cs" />
538 + <Compile Include="Cfg\MappingConfiguration.cs" />
539 + <Compile Include="Cfg\Db\MsSqlCeConfiguration.cs" />
540 + <Compile Include="Cfg\Db\MySQLConfiguration.cs" />
541 + <Compile Include="Cfg\Db\PersistenceConfiguration.cs" />
542 + <Compile Include="Cfg\Db\PostgreSQLConfiguration.cs" />
543 + <Compile Include="Cfg\Db\SQLiteConfiguration.cs" />
544 + <Compile Include="Cfg\SetupConventionFinder.cs" />
545 + <Compile Include="Conventions\AcceptanceCriteria\EmptyCriterion.cs" />
546 + <Compile Include="Conventions\AcceptanceCriteria\EvalExpectation.cs" />
547 + <Compile Include="Conventions\Instances\IAccessInstance.cs" />
548 + <Compile Include="Conventions\Instances\IInsertInstance.cs" />
549 + <Compile Include="Conventions\Instances\INullableInstance.cs" />
550 + <Compile Include="Conventions\Instances\IReadOnlyInstance.cs" />
551 + <Compile Include="Conventions\Instances\IUpdateInstance.cs" />
552 + <Compile Include="Visitors\ConventionVisitor.cs" />
553 + <Compile Include="Conventions\Inspections\ClassInspector.cs" />
554 + <Compile Include="Conventions\Instances\ColumnInstance.cs" />
555 + <Compile Include="Conventions\Inspections\InspectorModelMapper.cs" />
556 + <Compile Include="Conventions\Inspections\UnmappedPropertyException.cs" />
557 + <Compile Include="Conventions\AcceptanceCriteria\ConcreteAcceptanceCriteria.cs" />
558 + <Compile Include="Conventions\AcceptanceCriteria\EqualCriterion.cs" />
559 + <Compile Include="Conventions\AcceptanceCriteria\Expectation.cs" />
560 + <Compile Include="Conventions\AcceptanceCriteria\IAcceptanceCriteria.cs" />
561 + <Compile Include="Conventions\AcceptanceCriteria\IAcceptanceCriterion.cs" />
562 + <Compile Include="Conventions\AcceptanceCriteria\IExpectation.cs" />
563 + <Compile Include="Conventions\Instances\CacheInstance.cs" />
564 + <Compile Include="Conventions\Inspections\IClassInspector.cs" />
565 + <Compile Include="Conventions\Inspections\IColumnInspector.cs" />
566 + <Compile Include="Conventions\Inspections\IExposedThroughPropertyInspector.cs" />
567 + <Compile Include="Conventions\Inspections\IIdentityInspector.cs" />
568 + <Compile Include="Conventions\Inspections\IInspector.cs" />
569 + <Compile Include="Conventions\AcceptanceCriteria\InverseIs.cs" />
570 + <Compile Include="Conventions\Inspections\ILazyLoadInspector.cs" />
571 + <Compile Include="Conventions\Inspections\IPropertyInspector.cs" />
572 + <Compile Include="Conventions\AcceptanceCriteria\Is.cs" />
573 + <Compile Include="Conventions\Inspections\IReadOnlyInspector.cs" />
574 + <Compile Include="Conventions\Instances\PropertyInstance.cs" />
575 + <Compile Include="Conventions\AcceptanceCriteria\SetCriterion.cs" />
576 + <Compile Include="Conventions\ConventionsCollection.cs" />
577 + <Compile Include="Conventions\DefaultConventionFinder.cs" />
578 + <Compile Include="Conventions\ForeignKeyConvention.cs" />
579 + <Compile Include="Conventions\IJoinedSubclassConvention.cs" />
580 + <Compile Include="Conventions\ISubclassConvention.cs" />
581 + <Compile Include="Conventions\MultipleAttribute.cs" />
582 + <Compile Include="Data\Entity.cs" />
583 + <Compile Include="DummyMethodInfo.cs" />
584 + <Compile Include="Cfg\Db\MsSqlConfiguration.cs" />
585 + <Compile Include="DummyPropertyInfo.cs" />
586 + <Compile Include="Infrastructure\ResolveException.cs" />
587 + <Compile Include="MappingModel\AnyMapping.cs" />
588 + <Compile Include="MappingModel\CacheMapping.cs" />
589 + <Compile Include="MappingModel\ClassBased\ClassMapping.cs" />
590 + <Compile Include="MappingModel\ClassBased\ClassMappingBase.cs" />
591 + <Compile Include="MappingModel\ClassBased\ComponentMapping.cs" />
592 + <Compile Include="MappingModel\ClassBased\ComponentMappingBase.cs" />
593 + <Compile Include="MappingModel\ClassBased\IComponentMapping.cs" />
594 + <Compile Include="MappingModel\ClassBased\SubclassMapping.cs" />
595 + <Compile Include="MappingModel\Collections\CompositeElementMapping.cs" />
596 + <Compile Include="MappingModel\Collections\ElementMapping.cs" />
597 + <Compile Include="MappingModel\Collections\IIndexMapping.cs" />
598 + <Compile Include="MappingModel\Collections\IndexManyToManyMapping.cs" />
599 + <Compile Include="MappingModel\Identity\KeyManyToOneMapping.cs" />
600 + <Compile Include="MappingModel\Identity\KeyPropertyMapping.cs" />
601 + <Compile Include="MappingModel\MetaValueMapping.cs" />
602 + <Compile Include="MappingModel\OneToOneMapping.cs" />
603 + <Compile Include="MappingModel\Output\IXmlWriterServiceLocator.cs" />
604 + <Compile Include="MappingModel\Output\XmlAnyWriter.cs" />
605 + <Compile Include="MappingModel\Output\XmlArrayWriter.cs" />
606 + <Compile Include="MappingModel\Output\XmlCacheWriter.cs" />
607 + <Compile Include="MappingModel\Output\XmlClassWriterBase.cs" />
608 + <Compile Include="MappingModel\Output\XmlCollectionRelationshipWriter.cs" />
609 + <Compile Include="MappingModel\Output\XmlCollectionWriter.cs" />
610 + <Compile Include="MappingModel\Output\XmlComponentWriter.cs" />
611 + <Compile Include="MappingModel\Output\BaseXmlComponentWriter.cs" />
612 + <Compile Include="MappingModel\Output\XmlCompositeElementWriter.cs" />
613 + <Compile Include="MappingModel\Output\XmlCompositeIdWriter.cs" />
614 + <Compile Include="MappingModel\Output\XmlElementWriter.cs" />
615 + <Compile Include="MappingModel\Output\XmlGeneratorWriter.cs" />
616 + <Compile Include="MappingModel\Output\XmlIdentityBasedWriter.cs" />
617 + <Compile Include="MappingModel\Output\XmlIdWriter.cs" />
618 + <Compile Include="MappingModel\Output\XmlIIndexWriter.cs" />
619 + <Compile Include="MappingModel\Output\XmlIndexManyToManyWriter.cs" />
620 + <Compile Include="MappingModel\Output\XmlIndexWriter.cs" />
621 + <Compile Include="MappingModel\Output\XmlKeyManyToOneWriter.cs" />
622 + <Compile Include="MappingModel\Output\XmlKeyPropertyWriter.cs" />
623 + <Compile Include="MappingModel\Output\XmlKeyWriter.cs" />
624 + <Compile Include="MappingModel\Output\XmlListWriter.cs" />
625 + <Compile Include="MappingModel\Output\XmlManyToManyWriter.cs" />
626 + <Compile Include="MappingModel\Output\XmlManyToOneWriter.cs" />
627 + <Compile Include="MappingModel\Output\XmlMapWriter.cs" />
628 + <Compile Include="MappingModel\Output\XmlMetaValueWriter.cs" />
629 + <Compile Include="MappingModel\Output\XmlOneToManyWriter.cs" />
630 + <Compile Include="MappingModel\Output\XmlOneToOneWriter.cs" />
631 + <Compile Include="MappingModel\Output\XmlParentWriter.cs" />
632 + <Compile Include="MappingModel\Output\XmlSetWriter.cs" />
633 + <Compile Include="MappingModel\Output\XmlSubclassWriter.cs" />
634 + <Compile Include="MappingModel\Output\XmlDiscriminatorWriter.cs" />
635 + <Compile Include="Infrastructure\Container.cs" />
636 + <Compile Include="MappingModel\JoinMapping.cs" />
637 + <Compile Include="MappingModel\Output\XmlJoinWriter.cs" />
638 + <Compile Include="MappingModel\Output\XmlVersionWriter.cs" />
639 + <Compile Include="MappingModel\Output\XmlWriterContainer.cs" />
640 + <Compile Include="MappingModel\Output\XmlWriterServiceLocator.cs" />
641 + <Compile Include="MappingModel\ParentMapping.cs" />
642 + <Compile Include="MappingModel\VersionMapping.cs" />
643 + <Compile Include="Mapping\AnyPart.cs" />
644 + <Compile Include="Extensions.cs">
645 + <SubType>Code</SubType>
646 + </Compile>
647 + <Compile Include="MappingModel\Output\XmlColumnWriter.cs" />
648 + <Compile Include="MappingModel\Output\XmlPropertyWriter.cs" />
649 + <Compile Include="MappingModel\PropertyMapping.cs" />
650 + <Compile Include="Mapping\BaseAccessStrategyBuilder.cs" />
651 + <Compile Include="Mapping\ClassMap.cs" />
652 + <Compile Include="Mapping\ComponentPartBase.cs" />
653 + <Compile Include="Mapping\DiscriminatorPart.cs" />
654 + <Compile Include="Mapping\DiscriminatorValue.cs" />
655 + <Compile Include="Mapping\ElementPart.cs" />
656 + <Compile Include="Mapping\HibernateMappingPart.cs" />
657 + <Compile Include="MappingModel\ImportMapping.cs" />
658 + <Compile Include="MappingModel\Output\XmlHibernateMappingWriter.cs">
659 + <SubType>Code</SubType>
660 + </Compile>
661 + <Compile Include="MappingModel\Output\XmlImportWriter.cs" />
662 + <Compile Include="Mapping\Attributes.cs" />
663 + <Compile Include="Mapping\CachePart.cs" />
664 + <Compile Include="Conventions\UserTypeConvention.cs" />
665 + <Compile Include="Conventions\AttributePropertyConvention.cs" />
666 + <Compile Include="Conventions\IClassConvention.cs" />
667 + <Compile Include="Conventions\IComponentConvention.cs" />
668 + <Compile Include="Conventions\IConvention.cs" />
669 + <Compile Include="Conventions\IConventionFinder.cs" />
670 + <Compile Include="Conventions\IDynamicComponentConvention.cs" />
671 + <Compile Include="Conventions\IHasOneConvention.cs" />
672 + <Compile Include="Conventions\IIdConvention.cs" />
673 + <Compile Include="Conventions\IJoinConvention.cs" />
674 + <Compile Include="Conventions\IPropertyConvention.cs" />
675 + <Compile Include="Conventions\IReferenceConvention.cs" />
676 + <Compile Include="Conventions\IVersionConvention.cs" />
677 + <Compile Include="Mapping\CascadeExpression.cs" />
678 + <Compile Include="Mapping\CollectionCascadeExpression.cs" />
679 + <Compile Include="Mapping\ColumnMappingCollection.cs" />
680 + <Compile Include="Mapping\DynamicComponentPart.cs" />
681 + <Compile Include="Mapping\FetchTypeExpression.cs" />
682 + <Compile Include="Mapping\GenericEnumMapper.cs" />
683 + <Compile Include="Mapping\Providers\ICollectionMappingProvider.cs" />
684 + <Compile Include="Mapping\Providers\ICompositeElementMappingProvider.cs" />
685 + <Compile Include="Mapping\Providers\ICompositeIdMappingProvider.cs" />
686 + <Compile Include="Mapping\Providers\IDiscriminatorMappingProvider.cs" />
687 + <Compile Include="Mapping\Providers\IHibernateMappingProvider.cs" />
688 + <Compile Include="Mapping\IndexManyToManyPart.cs" />
689 + <Compile Include="Mapping\IndexPart.cs" />
690 + <Compile Include="Mapping\InvalidPrefixException.cs" />
691 + <Compile Include="Mapping\Providers\ISubclassMappingProviders.cs" />
692 + <Compile Include="Mapping\ParamBuilder.cs" />
693 + <Compile Include="Mapping\Prefix.cs" />
694 + <Compile Include="Mapping\PropertyGeneratedBuilder.cs" />
695 + <Compile Include="Mapping\VersionGeneratedBuilder.cs" />
696 + <Compile Include="Utils\Extensions.cs" />
697 + <Compile Include="Testing\PersistenceSpecificationExtensions.cs" />
698 + <Compile Include="Testing\Values\List.cs" />
699 + <Compile Include="Testing\Values\ReferenceList.cs" />
700 + <Compile Include="Testing\Values\Property.cs" />
701 + <Compile Include="Testing\Values\ReferenceProperty.cs" />
702 + <Compile Include="Utils\XmlExtensions.cs" />
703 + <Compile Include="SessionSource.cs" />
704 + <Compile Include="Testing\PersistenceSpecification.cs" />
705 + <Compile Include="Testing\SingleConnectionSessionSourceForSQLiteInMemoryTesting.cs" />
706 + <Compile Include="Utils\ExpressionToSql.cs" />
707 + <Compile Include="Mapping\ImportPart.cs" />
708 + <Compile Include="Mapping\JoinPart.cs" />
709 + <Compile Include="Mapping\NotFoundExpression.cs" />
710 + <Compile Include="Mapping\OneToOnePart.cs" />
711 + <Compile Include="Mapping\OptimisticLockBuilder.cs" />
712 + <Compile Include="Mapping\ToManyBase.cs" />
713 + <Compile Include="MissingConstructorException.cs" />
714 + <Compile Include="Mapping\AccessStrategyBuilder.cs" />
715 + <Compile Include="Mapping\ClasslikeMapBase.cs" />
716 + <Compile Include="Mapping\ComponentPart.cs" />
717 + <Compile Include="Mapping\CompositeElementPart.cs" />
718 + <Compile Include="Mapping\CompositeIdentityPart.cs" />
719 + <Compile Include="Mapping\IdentityGenerationStrategyBuilder.cs" />
720 + <Compile Include="Mapping\IdentityPart.cs" />
721 + <Compile Include="Mapping\JoinedSubClassPart.cs" />
722 + <Compile Include="Mapping\ManyToManyPart.cs" />
723 + <Compile Include="Mapping\ManyToOnePart.cs" />
724 + <Compile Include="Mapping\OneToManyPart.cs" />
725 + <Compile Include="Mapping\PropertyPart.cs" />
726 + <Compile Include="Mapping\SubClassPart.cs" />
727 + <Compile Include="Mapping\TypeMapping.cs" />
728 + <Compile Include="Mapping\VersionPart.cs" />
729 + <Compile Include="MappingModel\AttributeStore.cs" />
730 + <Compile Include="MappingModel\Collections\CollectionMapping.cs" />
731 + <Compile Include="MappingModel\Collections\IndexMapping.cs" />
732 + <Compile Include="MappingModel\Collections\ManyToManyMapping.cs" />
733 + <Compile Include="MappingModel\Collections\ICollectionRelationshipMapping.cs" />
734 + <Compile Include="MappingModel\ColumnMapping.cs" />
735 + <Compile Include="MappingModel\Conventions\ConventionException.cs" />
736 + <Compile Include="MappingModel\Conventions\ManyToManyTableConvention.cs" />
737 + <Compile Include="MappingModel\DiscriminatorMapping.cs" />
738 + <Compile Include="MappingModel\IHasMappedMembers.cs" />
739 + <Compile Include="MappingModel\MappedMembers.cs" />
740 + <Compile Include="Visitors\NullMappingModelVisitor.cs" />
741 + <Compile Include="MappingModel\KeyMapping.cs" />
742 + <Compile Include="Visitors\IMappingModelVisitor.cs" />
743 + <Compile Include="Visitors\DefaultMappingModelVisitor.cs" />
744 + <Compile Include="MappingModel\Output\XmlClassWriter.cs" />
745 + <Compile Include="MappingModel\Output\XmlWriterFactory.cs" />
746 + <Compile Include="MappingModel\Output\IXmlWriter.cs" />
747 + <Compile Include="MappingModel\Identity\GeneratorMapping.cs" />
748 + <Compile Include="MappingModel\Identity\CompositeIdMapping.cs" />
749 + <Compile Include="MappingModel\HibernateMapping.cs" />
750 + <Compile Include="MappingModel\Identity\IdMapping.cs" />
751 + <Compile Include="MappingModel\Identity\IIdentityMapping.cs" />
752 + <Compile Include="MappingModel\IMapping.cs" />
753 + <Compile Include="MappingModel\ManyToOneMapping.cs" />
754 + <Compile Include="MappingModel\MappingBase.cs" />
755 + <Compile Include="MappingModel\Collections\OneToManyMapping.cs" />
756 + <Compile Include="PersistenceModel.cs" />
757 + <Compile Include="Utils\Reflection\Accessor.cs" />
758 + <Compile Include="Utils\Reflection\PropertyChain.cs" />
759 + <Compile Include="Utils\Reflection\SingleMember.cs" />
760 + <Compile Include="MappingModel\Output\MappingXmlSerializer.cs" />
761 + <Compile Include="Utils\Reflection\ReflectionHelper.cs" />
762 + <Compile Include="Reveal.cs" />
763 + <Compile Include="UnknownPropertyException.cs" />
764 + <Compile Include="Visitors\UnresolvedComponentReferenceVisitedException.cs" />
765 + <Compile Include="Visitors\ValidationException.cs" />
766 + <Compile Include="Visitors\ValidationVisitor.cs" />
767 + </ItemGroup>
768 + <ItemGroup>
769 + <None Include="packages.config" />
770 + </ItemGroup>
771 + <ItemGroup>
772 + <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
773 + <Visible>False</Visible>
774 + <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
775 + <Install>false</Install>
776 + </BootstrapperPackage>
777 + <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
778 + <Visible>False</Visible>
779 + <ProductName>.NET Framework 3.5 SP1</ProductName>
780 + <Install>true</Install>
781 + </BootstrapperPackage>
782 + <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
783 + <Visible>False</Visible>
784 + <ProductName>Windows Installer 3.1</ProductName>
785 + <Install>true</Install>
786 + </BootstrapperPackage>
787 + </ItemGroup>
788 + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
789 + <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
790 + Other similar extension points exist, see Microsoft.Common.targets.
791 + <Target Name="BeforeBuild">
792 + </Target>
793 + <Target Name="AfterBuild">
794 + </Target>
795 + -->
796 +</Project>
797 \ No newline at end of file
798
799 diff --git a/dev-dotnet/fluent-nhibernate/fluent-nhibernate-2.0.2.ebuild b/dev-dotnet/fluent-nhibernate/fluent-nhibernate-2.0.2.ebuild
800 index 8e4ed8f..1ac2cbd 100644
801 --- a/dev-dotnet/fluent-nhibernate/fluent-nhibernate-2.0.2.ebuild
802 +++ b/dev-dotnet/fluent-nhibernate/fluent-nhibernate-2.0.2.ebuild
803 @@ -24,6 +24,7 @@ DESCRIPTION="XML-less, compile safe, automated, convention-based mappings for NH
804 LICENSE="BSD" # https://github.com/jagregory/fluent-nhibernate/blob/master/LICENSE.txt
805
806 CDEPEND="|| ( >=dev-lang/mono-5.4.0.167 <dev-lang/mono-9999 )
807 + dev-dotnet/nhibernate-core
808 "
809 RDEPEND="${CDEPEND}
810 "
811 @@ -32,9 +33,9 @@ DEPEND="${CDEPEND}
812 >=dev-dotnet/msbuildtasks-1.5.0.240
813 "
814
815 -PATH_TO_PROJ="src/NHibernate"
816 -METAFILE_TO_BUILD=NHibernate
817 -ASSEMBLY_NAME="NHibernate"
818 +PATH_TO_PROJ="src/FluentNHibernate"
819 +METAFILE_TO_BUILD=FluentNHibernate
820 +ASSEMBLY_NAME="FluentNHibernate"
821
822 KEY2="${DISTDIR}/mono.snk"
823 ASSEMBLY_VERSION="${PV}"
824 @@ -51,7 +52,7 @@ function output_filename ( ) {
825
826 src_prepare() {
827 cp "${FILESDIR}/${METAFILE_TO_BUILD}-${PV}.csproj" "${S}/${PATH_TO_PROJ}/${METAFILE_TO_BUILD}.csproj" || die
828 - cp "${FILESDIR}/SharedAssemblyInfo-${PV}.cs" "${S}/${PATH_TO_PROJ}/../SharedAssemblyInfo.cs" || die
829 + cp "${FILESDIR}/CommonAssemblyInfo-${PV}.cs" "${S}/${PATH_TO_PROJ}/../CommonAssemblyInfo.cs" || die
830 eapply_user
831 }