activefacts-examples 1.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +1 -0
- data/.travis.yml +4 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +21 -0
- data/README.md +22 -0
- data/Rakefile +6 -0
- data/activefacts-examples.gemspec +26 -0
- data/cql/Address.cql +44 -0
- data/cql/Astronomy.cql +35 -0
- data/cql/Blog.cql +54 -0
- data/cql/CinemaBookings.cql +64 -0
- data/cql/CinemaTickets.cql +127 -0
- data/cql/CompanyDirectorEmployee.cql +56 -0
- data/cql/Death.cql +17 -0
- data/cql/Diplomacy.cql +48 -0
- data/cql/Genealogy.cql +98 -0
- data/cql/Health.cql +78 -0
- data/cql/Insurance.cql +320 -0
- data/cql/Marriage.cql +18 -0
- data/cql/Metamodel.cql +567 -0
- data/cql/Monogamy.cql +24 -0
- data/cql/MultiInheritance.cql +22 -0
- data/cql/MultipleSubtyping.cql +30 -0
- data/cql/NonRoleId.cql +14 -0
- data/cql/OddIdentifier.cql +18 -0
- data/cql/OilSupply.cql +53 -0
- data/cql/OneRoleNesting.cql +38 -0
- data/cql/OneToOnes.cql +17 -0
- data/cql/Orienteering.cql +111 -0
- data/cql/PartyModel.cql +38 -0
- data/cql/PersonPlaysGame.cql +18 -0
- data/cql/RedundantDependency.cql +34 -0
- data/cql/SchoolActivities.cql +33 -0
- data/cql/SeparateSubtype.cql +30 -0
- data/cql/ServiceDirector.cql +276 -0
- data/cql/SimplestUnary.cql +12 -0
- data/cql/Supervision.cql +34 -0
- data/cql/VenueSeating.cql +45 -0
- data/cql/WaiterTips.cql +33 -0
- data/cql/Warehousing.cql +101 -0
- data/cql/WindowInRoomInBldg.cql +28 -0
- data/cql/unit.cql +474 -0
- data/diagrams/json/Address.json +41 -0
- data/diagrams/json/Astronomy.json +31 -0
- data/diagrams/json/Blog.json +46 -0
- data/diagrams/json/CinemaBookings.json +53 -0
- data/diagrams/json/CinemaTickets.json +101 -0
- data/diagrams/json/CompanyDirectorEmployee.json +44 -0
- data/diagrams/json/Death.json +20 -0
- data/diagrams/json/Diplomacy.json +34 -0
- data/diagrams/json/Genealogy.json +78 -0
- data/diagrams/json/Insurance.json +259 -0
- data/diagrams/json/Marriage.json +21 -0
- data/diagrams/json/Metamodel.json +318 -0
- data/diagrams/json/Monogamy.json +22 -0
- data/diagrams/json/MultiInheritance.json +25 -0
- data/diagrams/json/MultipleSubtyping.json +22 -0
- data/diagrams/json/OilSupply.json +49 -0
- data/diagrams/json/OneRoleNesting.json +37 -0
- data/diagrams/json/Orienteering.json +94 -0
- data/diagrams/json/PersonPlaysGame.json +22 -0
- data/diagrams/json/RedundantDependency.json +33 -0
- data/diagrams/json/SchoolActivities.json +28 -0
- data/diagrams/json/SeparateSubtype.json +29 -0
- data/diagrams/json/SimplestUnary.json +15 -0
- data/diagrams/json/Supervision.json +27 -0
- data/diagrams/json/VenueSeating.json +40 -0
- data/diagrams/json/WaiterTips.json +29 -0
- data/diagrams/json/Warehousing.json +86 -0
- data/diagrams/json/WindowInRoomInBldg.json +31 -0
- data/images/Address.SQL.png +0 -0
- data/images/Address.png +0 -0
- data/images/Blog.png +0 -0
- data/images/CinemaBookings.png +0 -0
- data/images/CinemaTickets.png +0 -0
- data/images/CompanyDirectorEmployee.png +0 -0
- data/images/Death.png +0 -0
- data/images/Diplomacy.png +0 -0
- data/images/DumpMetamodel.bat +2 -0
- data/images/Genealogy.png +0 -0
- data/images/Insurance/Claim.png +0 -0
- data/images/Insurance/Insurance.png +0 -0
- data/images/Insurance/Person.png +0 -0
- data/images/Insurance/Policy.png +0 -0
- data/images/Insurance/Related.png +0 -0
- data/images/Insurance/VehicleIncident.png +0 -0
- data/images/Marriage.png +0 -0
- data/images/Metamodel/Concepts.png +0 -0
- data/images/Metamodel/Constraints.png +0 -0
- data/images/Metamodel/ContextNote.png +0 -0
- data/images/Metamodel/Diagrams.png +0 -0
- data/images/Metamodel/Language.png +0 -0
- data/images/Metamodel/Legacy.png +0 -0
- data/images/Metamodel/Objects.png +0 -0
- data/images/Metamodel/Populations.png +0 -0
- data/images/Metamodel/Query.png +0 -0
- data/images/Metamodel/Units.png +0 -0
- data/images/Metamodel/ValueConstraints.png +0 -0
- data/images/Metamodel/ValueTypes.png +0 -0
- data/images/MetamodelER.bcp +1 -0
- data/images/MetamodelER.pdf +0 -0
- data/images/MultiInheritance.png +0 -0
- data/images/NorthwindER.png +0 -0
- data/images/OilSupply.png +0 -0
- data/images/Orienteering/Administration.png +0 -0
- data/images/Orienteering/Registration.png +0 -0
- data/images/Orienteering/Scoring.png +0 -0
- data/images/PersonPlaysGame.png +0 -0
- data/images/RedundantDependency.png +0 -0
- data/images/SchoolActivities.png +0 -0
- data/images/SeparateSubtype.png +0 -0
- data/images/SimplestUnary.png +0 -0
- data/images/Supervision.png +0 -0
- data/images/VenueSeating.png +0 -0
- data/images/WaiterTips.png +0 -0
- data/images/Warehousing.png +0 -0
- data/images/WindowInRoomInBldg.png +0 -0
- data/metadata/json/Astronomy.json +175 -0
- data/metadata/json/CinemaBookings.json +354 -0
- data/metadata/json/CinemaTickets.json +768 -0
- data/metadata/json/CompanyDirectorEmployee.json +270 -0
- data/metadata/json/Diplomacy.json +186 -0
- data/metadata/json/Metamodel.json +3214 -0
- data/metadata/json/OilSupply.json +411 -0
- data/metadata/json/SeparateSubtype.json +157 -0
- data/metadata/json/Supervision.json +128 -0
- data/metadata/json/VenueSeating.json +209 -0
- data/orm/.gitignore +11 -0
- data/orm/Address.orm +1268 -0
- data/orm/Astronomy.orm +925 -0
- data/orm/Blog.orm +1711 -0
- data/orm/CinemaBookings.orm +1998 -0
- data/orm/CinemaTickets.orm +5060 -0
- data/orm/CompanyDirectorEmployee.orm +2094 -0
- data/orm/Death.orm +386 -0
- data/orm/Diplomacy.orm +1478 -0
- data/orm/ExampleModels2010.csproj +764 -0
- data/orm/ExampleModels2010.sln +16 -0
- data/orm/Genealogy.orm +3209 -0
- data/orm/Health.orm +2407 -0
- data/orm/Insurance.orm +12727 -0
- data/orm/Marriage.orm +493 -0
- data/orm/Metamodel.orm +20998 -0
- data/orm/Monogamy.orm +328 -0
- data/orm/MultiInheritance.orm +537 -0
- data/orm/MultipleSubtyping.orm +347 -0
- data/orm/OilSupply.orm +2533 -0
- data/orm/OneRoleNesting.orm +1237 -0
- data/orm/Orienteering.orm +3976 -0
- data/orm/PersonPlaysGame.orm +426 -0
- data/orm/RedundantDependency.orm +844 -0
- data/orm/SchoolActivities.orm +961 -0
- data/orm/SeparateSubtype.orm +821 -0
- data/orm/SimplestUnary.orm +172 -0
- data/orm/Supervision.orm +734 -0
- data/orm/VenueSeating.orm +1289 -0
- data/orm/WaiterTips.orm +789 -0
- data/orm/Warehousing.orm +3792 -0
- data/orm/WindowInRoomInBldg.orm +772 -0
- data/rails/models/Astronomy.models +17 -0
- data/rails/models/CinemaBookings.models +123 -0
- data/rails/models/CinemaTickets.models +192 -0
- data/rails/models/Diplomacy.models +126 -0
- data/rails/models/Metamodel.models +894 -0
- data/rails/models/OneRoleNesting.models +18 -0
- data/rails/models/SeparateSubtype.models +49 -0
- data/rails/models/VenueSeating.models +70 -0
- data/rails/schema/Astronomy.schema.rb +25 -0
- data/rails/schema/CinemaBookings.schema.rb +78 -0
- data/rails/schema/CinemaTickets.schema.rb +132 -0
- data/rails/schema/Diplomacy.schema.rb +74 -0
- data/rails/schema/Metamodel.schema.rb +538 -0
- data/rails/schema/OneRoleNesting.rb +20 -0
- data/rails/schema/SeparateSubtype.schema.rb +35 -0
- data/rails/schema/VenueSeating.schema.rb +46 -0
- data/rails/schema/Warehousing.schema.rb +145 -0
- data/ruby/Address.rb +68 -0
- data/ruby/Astronomy.rb +55 -0
- data/ruby/Blog.rb +84 -0
- data/ruby/CinemaBookings.rb +109 -0
- data/ruby/CinemaTickets.rb +218 -0
- data/ruby/CompanyDirectorEmployee.rb +73 -0
- data/ruby/Death.rb +26 -0
- data/ruby/Diplomacy.rb +59 -0
- data/ruby/Genealogy.rb +173 -0
- data/ruby/Insurance.rb +562 -0
- data/ruby/Marriage.rb +21 -0
- data/ruby/Metamodel.rb +621 -0
- data/ruby/Monogamy.rb +27 -0
- data/ruby/MultiInheritance.rb +38 -0
- data/ruby/OilSupply.rb +112 -0
- data/ruby/OneRoleNesting.rb +66 -0
- data/ruby/Orienteering.rb +216 -0
- data/ruby/PersonPlaysGame.rb +31 -0
- data/ruby/RedundantDependency.rb +53 -0
- data/ruby/SchoolActivities.rb +49 -0
- data/ruby/SeparateSubtype.rb +46 -0
- data/ruby/SimplestUnary.rb +10 -0
- data/ruby/Supervision.rb +33 -0
- data/ruby/TwoValues.rb +14 -0
- data/ruby/VenueSeating.rb +64 -0
- data/ruby/WaiterTips.rb +49 -0
- data/ruby/Warehousing.rb +167 -0
- data/ruby/WindowInRoomInBldg.rb +45 -0
- data/sql/server/Address.sql +40 -0
- data/sql/server/Astronomy.sql +36 -0
- data/sql/server/Blog.sql +78 -0
- data/sql/server/CinemaBookings.sql +95 -0
- data/sql/server/CinemaTickets.sql +191 -0
- data/sql/server/CompanyDirectorEmployee.sql +104 -0
- data/sql/server/Death.sql +11 -0
- data/sql/server/Diplomacy.sql +66 -0
- data/sql/server/Genealogy.sql +138 -0
- data/sql/server/Health.sql +169 -0
- data/sql/server/Insurance.sql +484 -0
- data/sql/server/Marriage.sql +30 -0
- data/sql/server/Metamodel.sql +1000 -0
- data/sql/server/Monogamy.sql +20 -0
- data/sql/server/MultiInheritance.sql +27 -0
- data/sql/server/OilSupply.sql +105 -0
- data/sql/server/OneRoleNesting.sql +29 -0
- data/sql/server/Orienteering.sql +186 -0
- data/sql/server/PersonPlaysGame.sql +9 -0
- data/sql/server/RedundantDependency.sql +54 -0
- data/sql/server/SchoolActivities.sql +30 -0
- data/sql/server/SeparateSubtype.sql +33 -0
- data/sql/server/SimplestUnary.sql +9 -0
- data/sql/server/Supervision.sql +30 -0
- data/sql/server/VenueSeating.sql +54 -0
- data/sql/server/WaiterTips.sql +31 -0
- data/sql/server/Warehousing.sql +203 -0
- data/sql/server/WindowInRoomInBldg.sql +13 -0
- data/transform/surrogate/Address.absorption +2 -0
- data/transform/surrogate/Blog.absorption +5 -0
- data/transform/surrogate/CinemaBookings.absorption +7 -0
- data/transform/surrogate/CompanyDirectorEmployee.absorption +7 -0
- data/transform/surrogate/Death.absorption +1 -0
- data/transform/surrogate/Diplomacy-revised.absorption +6 -0
- data/transform/surrogate/Diplomacy.absorption +6 -0
- data/transform/surrogate/Genealogy.absorption +8 -0
- data/transform/surrogate/Insurance.absorption +18 -0
- data/transform/surrogate/Marriage.absorption +2 -0
- data/transform/surrogate/Metamodel.absorption +25 -0
- data/transform/surrogate/Monogamy.absorption +1 -0
- data/transform/surrogate/MultiInheritance.absorption +1 -0
- data/transform/surrogate/MultipleSubtyping.absorption +1 -0
- data/transform/surrogate/OilSupply.absorption +8 -0
- data/transform/surrogate/OneRoleNesting.absorption +1 -0
- data/transform/surrogate/Orienteering.absorption +11 -0
- data/transform/surrogate/PersonPlaysGame.absorption +1 -0
- data/transform/surrogate/RedundantDependency.absorption +3 -0
- data/transform/surrogate/SchoolActivities.absorption +3 -0
- data/transform/surrogate/SeparateSubtype.absorption +3 -0
- data/transform/surrogate/SimplestUnary.absorption +1 -0
- data/transform/surrogate/Supervision.absorption +2 -0
- data/transform/surrogate/WaiterTips.absorption +3 -0
- data/transform/surrogate/Warehousing.absorption +12 -0
- data/transform/surrogate/WindowInRoomInBldg.absorption +1 -0
- data/transform/surrogate/unit.absorption +0 -0
- metadata +374 -0
@@ -0,0 +1,764 @@
|
|
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>{20C04CA6-72A9-4C0C-A4F8-5173BBC91687}</ProjectGuid>
|
9
|
+
<OutputType>Exe</OutputType>
|
10
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
+
<RootNamespace>ExampleModels</RootNamespace>
|
12
|
+
<AssemblyName>ExampleModels</AssemblyName>
|
13
|
+
<FileUpgradeFlags>
|
14
|
+
</FileUpgradeFlags>
|
15
|
+
<OldToolsVersion>3.5</OldToolsVersion>
|
16
|
+
<UpgradeBackupLocation>
|
17
|
+
</UpgradeBackupLocation>
|
18
|
+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
19
|
+
<TargetFrameworkProfile />
|
20
|
+
<IsWebBootstrapper>false</IsWebBootstrapper>
|
21
|
+
<PublishUrl>publish\</PublishUrl>
|
22
|
+
<Install>true</Install>
|
23
|
+
<InstallFrom>Disk</InstallFrom>
|
24
|
+
<UpdateEnabled>false</UpdateEnabled>
|
25
|
+
<UpdateMode>Foreground</UpdateMode>
|
26
|
+
<UpdateInterval>7</UpdateInterval>
|
27
|
+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
28
|
+
<UpdatePeriodically>false</UpdatePeriodically>
|
29
|
+
<UpdateRequired>false</UpdateRequired>
|
30
|
+
<MapFileExtensions>true</MapFileExtensions>
|
31
|
+
<ApplicationRevision>0</ApplicationRevision>
|
32
|
+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
33
|
+
<UseApplicationTrust>false</UseApplicationTrust>
|
34
|
+
<BootstrapperEnabled>true</BootstrapperEnabled>
|
35
|
+
</PropertyGroup>
|
36
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
37
|
+
<DebugSymbols>true</DebugSymbols>
|
38
|
+
<DebugType>full</DebugType>
|
39
|
+
<Optimize>false</Optimize>
|
40
|
+
<OutputPath>bin\Debug\</OutputPath>
|
41
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
42
|
+
<ErrorReport>prompt</ErrorReport>
|
43
|
+
<WarningLevel>4</WarningLevel>
|
44
|
+
</PropertyGroup>
|
45
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
46
|
+
<DebugType>pdbonly</DebugType>
|
47
|
+
<Optimize>true</Optimize>
|
48
|
+
<OutputPath>bin\Release\</OutputPath>
|
49
|
+
<DefineConstants>TRACE</DefineConstants>
|
50
|
+
<ErrorReport>prompt</ErrorReport>
|
51
|
+
<WarningLevel>4</WarningLevel>
|
52
|
+
</PropertyGroup>
|
53
|
+
<ItemGroup>
|
54
|
+
<Reference Include="System" />
|
55
|
+
<Reference Include="System.Data" />
|
56
|
+
<Reference Include="System.Xml" />
|
57
|
+
</ItemGroup>
|
58
|
+
<ItemGroup>
|
59
|
+
<Compile Include="Address._ORMCustomToolReport.cs">
|
60
|
+
<AutoGen>True</AutoGen>
|
61
|
+
<DependentUpon>Address.orm</DependentUpon>
|
62
|
+
</Compile>
|
63
|
+
<Compile Include="Astronomy._ORMCustomToolReport.cs">
|
64
|
+
<AutoGen>True</AutoGen>
|
65
|
+
<DependentUpon>Astronomy.orm</DependentUpon>
|
66
|
+
</Compile>
|
67
|
+
<Compile Include="Blog._ORMCustomToolReport.cs">
|
68
|
+
<AutoGen>True</AutoGen>
|
69
|
+
<DependentUpon>Blog.orm</DependentUpon>
|
70
|
+
</Compile>
|
71
|
+
<Compile Include="CinemaBookings._ORMCustomToolReport.cs">
|
72
|
+
<DependentUpon>CinemaBookings.orm</DependentUpon>
|
73
|
+
<AutoGen>True</AutoGen>
|
74
|
+
</Compile>
|
75
|
+
<Compile Include="CinemaTickets._ORMCustomToolReport.cs">
|
76
|
+
<AutoGen>True</AutoGen>
|
77
|
+
<DependentUpon>CinemaTickets.orm</DependentUpon>
|
78
|
+
</Compile>
|
79
|
+
<Compile Include="CompanyDirectorEmployee._ORMCustomToolReport.cs">
|
80
|
+
<AutoGen>True</AutoGen>
|
81
|
+
<DependentUpon>CompanyDirectorEmployee.orm</DependentUpon>
|
82
|
+
</Compile>
|
83
|
+
<Compile Include="Corporate._ORMCustomToolReport.cs">
|
84
|
+
<AutoGen>True</AutoGen>
|
85
|
+
<DependentUpon>Corporate.orm</DependentUpon>
|
86
|
+
</Compile>
|
87
|
+
<Compile Include="Death._ORMCustomToolReport.cs">
|
88
|
+
<AutoGen>True</AutoGen>
|
89
|
+
<DependentUpon>Death.orm</DependentUpon>
|
90
|
+
</Compile>
|
91
|
+
<Compile Include="Diplomacy._ORMCustomToolReport.cs">
|
92
|
+
<AutoGen>True</AutoGen>
|
93
|
+
<DependentUpon>Diplomacy.orm</DependentUpon>
|
94
|
+
</Compile>
|
95
|
+
<Compile Include="Genealogy._ORMCustomToolReport.cs">
|
96
|
+
<AutoGen>True</AutoGen>
|
97
|
+
<DependentUpon>Genealogy.orm</DependentUpon>
|
98
|
+
</Compile>
|
99
|
+
<Compile Include="Health._ORMCustomToolReport.cs">
|
100
|
+
<AutoGen>True</AutoGen>
|
101
|
+
<DependentUpon>Health.orm</DependentUpon>
|
102
|
+
</Compile>
|
103
|
+
<Compile Include="Insurance._ORMCustomToolReport.cs">
|
104
|
+
<AutoGen>True</AutoGen>
|
105
|
+
<DependentUpon>Insurance.orm</DependentUpon>
|
106
|
+
</Compile>
|
107
|
+
<Compile Include="Marriage._ORMCustomToolReport.cs">
|
108
|
+
<AutoGen>True</AutoGen>
|
109
|
+
<DependentUpon>Marriage.orm</DependentUpon>
|
110
|
+
</Compile>
|
111
|
+
<Compile Include="Metamodel._ORMCustomToolReport.cs">
|
112
|
+
<DependentUpon>Metamodel.orm</DependentUpon>
|
113
|
+
<AutoGen>True</AutoGen>
|
114
|
+
</Compile>
|
115
|
+
<Compile Include="Monogamy._ORMCustomToolReport.cs">
|
116
|
+
<AutoGen>True</AutoGen>
|
117
|
+
<DependentUpon>Monogamy.orm</DependentUpon>
|
118
|
+
</Compile>
|
119
|
+
<Compile Include="MultiInheritance._ORMCustomToolReport.cs">
|
120
|
+
<AutoGen>True</AutoGen>
|
121
|
+
<DependentUpon>MultiInheritance.orm</DependentUpon>
|
122
|
+
</Compile>
|
123
|
+
<Compile Include="MultipleSubtyping._ORMCustomToolReport.cs">
|
124
|
+
<AutoGen>True</AutoGen>
|
125
|
+
<DependentUpon>MultipleSubtyping.orm</DependentUpon>
|
126
|
+
</Compile>
|
127
|
+
<Compile Include="OilSupply._ORMCustomToolReport.cs">
|
128
|
+
<AutoGen>True</AutoGen>
|
129
|
+
<DependentUpon>OilSupply.orm</DependentUpon>
|
130
|
+
</Compile>
|
131
|
+
<Compile Include="OneRoleNesting._ORMCustomToolReport.cs">
|
132
|
+
<AutoGen>True</AutoGen>
|
133
|
+
<DependentUpon>OneRoleNesting.orm</DependentUpon>
|
134
|
+
</Compile>
|
135
|
+
<Compile Include="Orienteering._ORMCustomToolReport.cs">
|
136
|
+
<AutoGen>True</AutoGen>
|
137
|
+
<DependentUpon>Orienteering.orm</DependentUpon>
|
138
|
+
</Compile>
|
139
|
+
<Compile Include="PersonPlaysGame._ORMCustomToolReport.cs">
|
140
|
+
<AutoGen>True</AutoGen>
|
141
|
+
<DependentUpon>PersonPlaysGame.orm</DependentUpon>
|
142
|
+
</Compile>
|
143
|
+
<Compile Include="RedundantDependency._ORMCustomToolReport.cs">
|
144
|
+
<AutoGen>True</AutoGen>
|
145
|
+
<DependentUpon>RedundantDependency.orm</DependentUpon>
|
146
|
+
</Compile>
|
147
|
+
<Compile Include="SchoolActivities._ORMCustomToolReport.cs">
|
148
|
+
<AutoGen>True</AutoGen>
|
149
|
+
<DependentUpon>SchoolActivities.orm</DependentUpon>
|
150
|
+
</Compile>
|
151
|
+
<Compile Include="SeparateSubtype._ORMCustomToolReport.cs">
|
152
|
+
<AutoGen>True</AutoGen>
|
153
|
+
<DependentUpon>SeparateSubtype.orm</DependentUpon>
|
154
|
+
</Compile>
|
155
|
+
<Compile Include="SimplestUnary._ORMCustomToolReport.cs">
|
156
|
+
<AutoGen>True</AutoGen>
|
157
|
+
<DependentUpon>SimplestUnary.orm</DependentUpon>
|
158
|
+
</Compile>
|
159
|
+
<Compile Include="Supervision._ORMCustomToolReport.cs">
|
160
|
+
<AutoGen>True</AutoGen>
|
161
|
+
<DependentUpon>Supervision.orm</DependentUpon>
|
162
|
+
</Compile>
|
163
|
+
<Compile Include="VenueSeating._ORMCustomToolReport.cs">
|
164
|
+
<AutoGen>True</AutoGen>
|
165
|
+
<DependentUpon>VenueSeating.orm</DependentUpon>
|
166
|
+
</Compile>
|
167
|
+
<Compile Include="WaiterTips._ORMCustomToolReport.cs">
|
168
|
+
<AutoGen>True</AutoGen>
|
169
|
+
<DependentUpon>WaiterTips.orm</DependentUpon>
|
170
|
+
</Compile>
|
171
|
+
<Compile Include="Warehousing.CoRef._ORMCustomToolReport.cs">
|
172
|
+
<AutoGen>True</AutoGen>
|
173
|
+
<DependentUpon>Warehousing.CoRef.orm</DependentUpon>
|
174
|
+
</Compile>
|
175
|
+
<Compile Include="Warehousing._ORMCustomToolReport.cs">
|
176
|
+
<AutoGen>True</AutoGen>
|
177
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
178
|
+
</Compile>
|
179
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
180
|
+
<Compile Include="WindowInRoomInBldg._ORMCustomToolReport.cs">
|
181
|
+
<AutoGen>True</AutoGen>
|
182
|
+
<DependentUpon>WindowInRoomInBldg.orm</DependentUpon>
|
183
|
+
</Compile>
|
184
|
+
</ItemGroup>
|
185
|
+
<ItemGroup>
|
186
|
+
<None Include="Astronomy.orm">
|
187
|
+
<Generator>ORMCustomTool</Generator>
|
188
|
+
<LastGenOutput>Astronomy._ORMCustomToolReport.cs</LastGenOutput>
|
189
|
+
</None>
|
190
|
+
<None Include="Blog.orm">
|
191
|
+
<Generator>ORMCustomTool</Generator>
|
192
|
+
<LastGenOutput>Blog._ORMCustomToolReport.cs</LastGenOutput>
|
193
|
+
</None>
|
194
|
+
<None Include="CinemaBookings.orm">
|
195
|
+
<Generator>ORMCustomTool</Generator>
|
196
|
+
<LastGenOutput>CinemaBookings._ORMCustomToolReport.cs</LastGenOutput>
|
197
|
+
</None>
|
198
|
+
<None Include="CinemaTickets.orm">
|
199
|
+
<Generator>ORMCustomTool</Generator>
|
200
|
+
<LastGenOutput>CinemaTickets._ORMCustomToolReport.cs</LastGenOutput>
|
201
|
+
</None>
|
202
|
+
<None Include="Corporate.orm">
|
203
|
+
<Generator>ORMCustomTool</Generator>
|
204
|
+
<LastGenOutput>Corporate._ORMCustomToolReport.cs</LastGenOutput>
|
205
|
+
</None>
|
206
|
+
<None Include="Health.orm">
|
207
|
+
<Generator>ORMCustomTool</Generator>
|
208
|
+
<LastGenOutput>Health._ORMCustomToolReport.cs</LastGenOutput>
|
209
|
+
</None>
|
210
|
+
<None Include="VenueSeating.orm">
|
211
|
+
<Generator>ORMCustomTool</Generator>
|
212
|
+
<LastGenOutput>VenueSeating._ORMCustomToolReport.cs</LastGenOutput>
|
213
|
+
</None>
|
214
|
+
<None Include="WindowInRoomInBldg.orm">
|
215
|
+
<Generator>ORMCustomTool</Generator>
|
216
|
+
<LastGenOutput>WindowInRoomInBldg._ORMCustomToolReport.cs</LastGenOutput>
|
217
|
+
</None>
|
218
|
+
<None Include="Genealogy.orm">
|
219
|
+
<Generator>ORMCustomTool</Generator>
|
220
|
+
<LastGenOutput>Genealogy._ORMCustomToolReport.cs</LastGenOutput>
|
221
|
+
</None>
|
222
|
+
<None Include="Death.orm">
|
223
|
+
<Generator>ORMCustomTool</Generator>
|
224
|
+
<LastGenOutput>Death._ORMCustomToolReport.cs</LastGenOutput>
|
225
|
+
</None>
|
226
|
+
<None Include="Orienteering.orm">
|
227
|
+
<Generator>ORMCustomTool</Generator>
|
228
|
+
<LastGenOutput>Orienteering._ORMCustomToolReport.cs</LastGenOutput>
|
229
|
+
</None>
|
230
|
+
<None Include="Address.orm">
|
231
|
+
<Generator>ORMCustomTool</Generator>
|
232
|
+
<SubType>Designer</SubType>
|
233
|
+
<LastGenOutput>Address._ORMCustomToolReport.cs</LastGenOutput>
|
234
|
+
</None>
|
235
|
+
<None Include="SchoolActivities.orm">
|
236
|
+
<Generator>ORMCustomTool</Generator>
|
237
|
+
<LastGenOutput>SchoolActivities._ORMCustomToolReport.cs</LastGenOutput>
|
238
|
+
</None>
|
239
|
+
</ItemGroup>
|
240
|
+
<ItemGroup Condition="Exists('Units.orm')">
|
241
|
+
</ItemGroup>
|
242
|
+
<ItemGroup>
|
243
|
+
<None Include="CompanyDirectorEmployee.orm">
|
244
|
+
<Generator>ORMCustomTool</Generator>
|
245
|
+
<LastGenOutput>CompanyDirectorEmployee._ORMCustomToolReport.cs</LastGenOutput>
|
246
|
+
</None>
|
247
|
+
<None Include="Diplomacy.orm">
|
248
|
+
<Generator>ORMCustomTool</Generator>
|
249
|
+
<LastGenOutput>Diplomacy._ORMCustomToolReport.cs</LastGenOutput>
|
250
|
+
</None>
|
251
|
+
<None Include="Insurance.orm">
|
252
|
+
<Generator>ORMCustomTool</Generator>
|
253
|
+
<LastGenOutput>Insurance._ORMCustomToolReport.cs</LastGenOutput>
|
254
|
+
</None>
|
255
|
+
<None Include="Marriage.orm">
|
256
|
+
<Generator>ORMCustomTool</Generator>
|
257
|
+
<LastGenOutput>Marriage._ORMCustomToolReport.cs</LastGenOutput>
|
258
|
+
</None>
|
259
|
+
<None Include="Metamodel.orm">
|
260
|
+
<Generator>ORMCustomTool</Generator>
|
261
|
+
<LastGenOutput>Metamodel._ORMCustomToolReport.cs</LastGenOutput>
|
262
|
+
</None>
|
263
|
+
<None Include="Monogamy.orm">
|
264
|
+
<Generator>ORMCustomTool</Generator>
|
265
|
+
<LastGenOutput>Monogamy._ORMCustomToolReport.cs</LastGenOutput>
|
266
|
+
</None>
|
267
|
+
<None Include="MultiInheritance.orm">
|
268
|
+
<Generator>ORMCustomTool</Generator>
|
269
|
+
<LastGenOutput>MultiInheritance._ORMCustomToolReport.cs</LastGenOutput>
|
270
|
+
</None>
|
271
|
+
<None Include="MultipleSubtyping.orm">
|
272
|
+
<Generator>ORMCustomTool</Generator>
|
273
|
+
<LastGenOutput>MultipleSubtyping._ORMCustomToolReport.cs</LastGenOutput>
|
274
|
+
</None>
|
275
|
+
<None Include="OilSupply.orm">
|
276
|
+
<Generator>ORMCustomTool</Generator>
|
277
|
+
<LastGenOutput>OilSupply._ORMCustomToolReport.cs</LastGenOutput>
|
278
|
+
<SubType>Designer</SubType>
|
279
|
+
</None>
|
280
|
+
<None Include="PersonPlaysGame.orm">
|
281
|
+
<Generator>ORMCustomTool</Generator>
|
282
|
+
<LastGenOutput>PersonPlaysGame._ORMCustomToolReport.cs</LastGenOutput>
|
283
|
+
</None>
|
284
|
+
<None Include="RedundantDependency.orm">
|
285
|
+
<Generator>ORMCustomTool</Generator>
|
286
|
+
<LastGenOutput>RedundantDependency._ORMCustomToolReport.cs</LastGenOutput>
|
287
|
+
</None>
|
288
|
+
<None Include="SeparateSubtype.orm">
|
289
|
+
<Generator>ORMCustomTool</Generator>
|
290
|
+
<LastGenOutput>SeparateSubtype._ORMCustomToolReport.cs</LastGenOutput>
|
291
|
+
</None>
|
292
|
+
<None Include="SimplestUnary.orm">
|
293
|
+
<Generator>ORMCustomTool</Generator>
|
294
|
+
<LastGenOutput>SimplestUnary._ORMCustomToolReport.cs</LastGenOutput>
|
295
|
+
</None>
|
296
|
+
<None Include="Supervision.orm">
|
297
|
+
<Generator>ORMCustomTool</Generator>
|
298
|
+
<LastGenOutput>Supervision._ORMCustomToolReport.cs</LastGenOutput>
|
299
|
+
</None>
|
300
|
+
<None Include="OneRoleNesting.orm">
|
301
|
+
<Generator>ORMCustomTool</Generator>
|
302
|
+
<LastGenOutput>OneRoleNesting._ORMCustomToolReport.cs</LastGenOutput>
|
303
|
+
</None>
|
304
|
+
<None Include="WaiterTips.orm">
|
305
|
+
<Generator>ORMCustomTool</Generator>
|
306
|
+
<LastGenOutput>WaiterTips._ORMCustomToolReport.cs</LastGenOutput>
|
307
|
+
</None>
|
308
|
+
<None Include="Warehousing.orm">
|
309
|
+
<Generator>ORMCustomTool</Generator>
|
310
|
+
<LastGenOutput>Warehousing._ORMCustomToolReport.cs</LastGenOutput>
|
311
|
+
</None>
|
312
|
+
</ItemGroup>
|
313
|
+
<ItemGroup Condition="Exists('Richmond-ORMModel-v0.9.orm')">
|
314
|
+
</ItemGroup>
|
315
|
+
<ItemGroup>
|
316
|
+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
317
|
+
<Visible>False</Visible>
|
318
|
+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
319
|
+
<Install>false</Install>
|
320
|
+
</BootstrapperPackage>
|
321
|
+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
322
|
+
<Visible>False</Visible>
|
323
|
+
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
324
|
+
<Install>true</Install>
|
325
|
+
</BootstrapperPackage>
|
326
|
+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
327
|
+
<Visible>False</Visible>
|
328
|
+
<ProductName>Windows Installer 3.1</ProductName>
|
329
|
+
<Install>true</Install>
|
330
|
+
</BootstrapperPackage>
|
331
|
+
</ItemGroup>
|
332
|
+
<ItemGroup />
|
333
|
+
<ItemGroup Condition="Exists('CinemaTickets.orm')">
|
334
|
+
<None Include="CinemaTickets.DCIL.xml">
|
335
|
+
<AutoGen>True</AutoGen>
|
336
|
+
<DependentUpon>CinemaTickets.orm</DependentUpon>
|
337
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
338
|
+
</None>
|
339
|
+
<None Include="CinemaTickets.DDIL.xml">
|
340
|
+
<AutoGen>True</AutoGen>
|
341
|
+
<DependentUpon>CinemaTickets.orm</DependentUpon>
|
342
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
343
|
+
</None>
|
344
|
+
<None Include="CinemaTickets.PostgreSQL.sql">
|
345
|
+
<AutoGen>True</AutoGen>
|
346
|
+
<DependentUpon>CinemaTickets.orm</DependentUpon>
|
347
|
+
<ORMGenerator>DDILtoPostgreSQL</ORMGenerator>
|
348
|
+
</None>
|
349
|
+
</ItemGroup>
|
350
|
+
<ItemGroup Condition="Exists('CompanyDirectorEmployee.orm')">
|
351
|
+
<None Include="CompanyDirectorEmployee.DCIL.xml">
|
352
|
+
<AutoGen>True</AutoGen>
|
353
|
+
<DependentUpon>CompanyDirectorEmployee.orm</DependentUpon>
|
354
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
355
|
+
</None>
|
356
|
+
<None Include="CompanyDirectorEmployee.DDIL.xml">
|
357
|
+
<AutoGen>True</AutoGen>
|
358
|
+
<DependentUpon>CompanyDirectorEmployee.orm</DependentUpon>
|
359
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
360
|
+
</None>
|
361
|
+
<None Include="CompanyDirectorEmployee.SQLServer.sql">
|
362
|
+
<AutoGen>True</AutoGen>
|
363
|
+
<DependentUpon>CompanyDirectorEmployee.orm</DependentUpon>
|
364
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
365
|
+
</None>
|
366
|
+
</ItemGroup>
|
367
|
+
<ItemGroup Condition="Exists('Address.orm')">
|
368
|
+
<None Include="Address.DCIL.xml">
|
369
|
+
<AutoGen>True</AutoGen>
|
370
|
+
<DependentUpon>Address.orm</DependentUpon>
|
371
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
372
|
+
</None>
|
373
|
+
<None Include="Address.DDIL.xml">
|
374
|
+
<AutoGen>True</AutoGen>
|
375
|
+
<DependentUpon>Address.orm</DependentUpon>
|
376
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
377
|
+
</None>
|
378
|
+
<None Include="Address.SQLServer.sql">
|
379
|
+
<AutoGen>True</AutoGen>
|
380
|
+
<DependentUpon>Address.orm</DependentUpon>
|
381
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
382
|
+
</None>
|
383
|
+
</ItemGroup>
|
384
|
+
<ItemGroup Condition="Exists('Blog.orm')">
|
385
|
+
<None Include="Blog.DCIL.xml">
|
386
|
+
<AutoGen>True</AutoGen>
|
387
|
+
<DependentUpon>Blog.orm</DependentUpon>
|
388
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
389
|
+
</None>
|
390
|
+
<None Include="Blog.DDIL.xml">
|
391
|
+
<AutoGen>True</AutoGen>
|
392
|
+
<DependentUpon>Blog.orm</DependentUpon>
|
393
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
394
|
+
</None>
|
395
|
+
<None Include="Blog.SQLStandard.sql">
|
396
|
+
<AutoGen>True</AutoGen>
|
397
|
+
<DependentUpon>Blog.orm</DependentUpon>
|
398
|
+
<ORMGenerator>DDILtoSQLStandard</ORMGenerator>
|
399
|
+
</None>
|
400
|
+
</ItemGroup>
|
401
|
+
<ItemGroup Condition="Exists('Corporate.orm')">
|
402
|
+
<None Include="Corporate.DCIL.xml">
|
403
|
+
<AutoGen>True</AutoGen>
|
404
|
+
<DependentUpon>Corporate.orm</DependentUpon>
|
405
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
406
|
+
</None>
|
407
|
+
<None Include="Corporate.DDIL.xml">
|
408
|
+
<AutoGen>True</AutoGen>
|
409
|
+
<DependentUpon>Corporate.orm</DependentUpon>
|
410
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
411
|
+
</None>
|
412
|
+
<None Include="Corporate.PostgreSQL.sql">
|
413
|
+
<AutoGen>True</AutoGen>
|
414
|
+
<DependentUpon>Corporate.orm</DependentUpon>
|
415
|
+
<ORMGenerator>DDILtoPostgreSQL</ORMGenerator>
|
416
|
+
</None>
|
417
|
+
</ItemGroup>
|
418
|
+
<ItemGroup Condition="Exists('Death.orm')">
|
419
|
+
<None Include="Death.DCIL.xml">
|
420
|
+
<AutoGen>True</AutoGen>
|
421
|
+
<DependentUpon>Death.orm</DependentUpon>
|
422
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
423
|
+
</None>
|
424
|
+
<None Include="Death.DDIL.xml">
|
425
|
+
<AutoGen>True</AutoGen>
|
426
|
+
<DependentUpon>Death.orm</DependentUpon>
|
427
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
428
|
+
</None>
|
429
|
+
<None Include="Death.SQLServer.sql">
|
430
|
+
<AutoGen>True</AutoGen>
|
431
|
+
<DependentUpon>Death.orm</DependentUpon>
|
432
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
433
|
+
</None>
|
434
|
+
</ItemGroup>
|
435
|
+
<ItemGroup Condition="Exists('Diplomacy.orm')">
|
436
|
+
<None Include="Diplomacy.DCIL.xml">
|
437
|
+
<AutoGen>True</AutoGen>
|
438
|
+
<DependentUpon>Diplomacy.orm</DependentUpon>
|
439
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
440
|
+
</None>
|
441
|
+
<None Include="Diplomacy.DDIL.xml">
|
442
|
+
<AutoGen>True</AutoGen>
|
443
|
+
<DependentUpon>Diplomacy.orm</DependentUpon>
|
444
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
445
|
+
</None>
|
446
|
+
<None Include="Diplomacy.SQLServer.sql">
|
447
|
+
<AutoGen>True</AutoGen>
|
448
|
+
<DependentUpon>Diplomacy.orm</DependentUpon>
|
449
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
450
|
+
</None>
|
451
|
+
</ItemGroup>
|
452
|
+
<ItemGroup Condition="Exists('Genealogy.orm')">
|
453
|
+
<None Include="Genealogy.DCIL.xml">
|
454
|
+
<AutoGen>True</AutoGen>
|
455
|
+
<DependentUpon>Genealogy.orm</DependentUpon>
|
456
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
457
|
+
</None>
|
458
|
+
<None Include="Genealogy.DDIL.xml">
|
459
|
+
<AutoGen>True</AutoGen>
|
460
|
+
<DependentUpon>Genealogy.orm</DependentUpon>
|
461
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
462
|
+
</None>
|
463
|
+
<None Include="Genealogy.MySQL.sql">
|
464
|
+
<AutoGen>True</AutoGen>
|
465
|
+
<DependentUpon>Genealogy.orm</DependentUpon>
|
466
|
+
<ORMGenerator>DDILtoMySQL</ORMGenerator>
|
467
|
+
</None>
|
468
|
+
</ItemGroup>
|
469
|
+
<ItemGroup Condition="Exists('Insurance.orm')">
|
470
|
+
<None Include="Insurance.DCIL.xml">
|
471
|
+
<AutoGen>True</AutoGen>
|
472
|
+
<DependentUpon>Insurance.orm</DependentUpon>
|
473
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
474
|
+
</None>
|
475
|
+
<None Include="Insurance.DDIL.xml">
|
476
|
+
<AutoGen>True</AutoGen>
|
477
|
+
<DependentUpon>Insurance.orm</DependentUpon>
|
478
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
479
|
+
</None>
|
480
|
+
<None Include="Insurance.SQLServer.sql">
|
481
|
+
<AutoGen>True</AutoGen>
|
482
|
+
<DependentUpon>Insurance.orm</DependentUpon>
|
483
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
484
|
+
</None>
|
485
|
+
</ItemGroup>
|
486
|
+
<ItemGroup Condition="Exists('Marriage.orm')">
|
487
|
+
<None Include="Marriage.DCIL.xml">
|
488
|
+
<AutoGen>True</AutoGen>
|
489
|
+
<DependentUpon>Marriage.orm</DependentUpon>
|
490
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
491
|
+
</None>
|
492
|
+
<None Include="Marriage.DDIL.xml">
|
493
|
+
<AutoGen>True</AutoGen>
|
494
|
+
<DependentUpon>Marriage.orm</DependentUpon>
|
495
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
496
|
+
</None>
|
497
|
+
<None Include="Marriage.SQLStandard.sql">
|
498
|
+
<AutoGen>True</AutoGen>
|
499
|
+
<DependentUpon>Marriage.orm</DependentUpon>
|
500
|
+
<ORMGenerator>DDILtoSQLStandard</ORMGenerator>
|
501
|
+
</None>
|
502
|
+
</ItemGroup>
|
503
|
+
<ItemGroup Condition="Exists('Metamodel.orm')">
|
504
|
+
<None Include="Metamodel.DCIL.xml">
|
505
|
+
<AutoGen>True</AutoGen>
|
506
|
+
<DependentUpon>Metamodel.orm</DependentUpon>
|
507
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
508
|
+
</None>
|
509
|
+
<None Include="Metamodel.DDIL.xml">
|
510
|
+
<AutoGen>True</AutoGen>
|
511
|
+
<DependentUpon>Metamodel.orm</DependentUpon>
|
512
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
513
|
+
</None>
|
514
|
+
<None Include="Metamodel.SQLServer.sql">
|
515
|
+
<AutoGen>True</AutoGen>
|
516
|
+
<DependentUpon>Metamodel.orm</DependentUpon>
|
517
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
518
|
+
</None>
|
519
|
+
</ItemGroup>
|
520
|
+
<ItemGroup Condition="Exists('MultiInheritance.orm')">
|
521
|
+
<None Include="MultiInheritance.DCIL.xml">
|
522
|
+
<AutoGen>True</AutoGen>
|
523
|
+
<DependentUpon>MultiInheritance.orm</DependentUpon>
|
524
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
525
|
+
</None>
|
526
|
+
<None Include="MultiInheritance.DDIL.xml">
|
527
|
+
<AutoGen>True</AutoGen>
|
528
|
+
<DependentUpon>MultiInheritance.orm</DependentUpon>
|
529
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
530
|
+
</None>
|
531
|
+
<None Include="MultiInheritance.SQLServer.sql">
|
532
|
+
<AutoGen>True</AutoGen>
|
533
|
+
<DependentUpon>MultiInheritance.orm</DependentUpon>
|
534
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
535
|
+
</None>
|
536
|
+
</ItemGroup>
|
537
|
+
<ItemGroup Condition="Exists('OilSupply.orm')">
|
538
|
+
<None Include="OilSupply.DCIL.xml">
|
539
|
+
<AutoGen>True</AutoGen>
|
540
|
+
<DependentUpon>OilSupply.orm</DependentUpon>
|
541
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
542
|
+
</None>
|
543
|
+
<None Include="OilSupply.DDIL.xml">
|
544
|
+
<AutoGen>True</AutoGen>
|
545
|
+
<DependentUpon>OilSupply.orm</DependentUpon>
|
546
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
547
|
+
</None>
|
548
|
+
<None Include="OilSupply.SQLServer.sql">
|
549
|
+
<AutoGen>True</AutoGen>
|
550
|
+
<DependentUpon>OilSupply.orm</DependentUpon>
|
551
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
552
|
+
</None>
|
553
|
+
</ItemGroup>
|
554
|
+
<ItemGroup Condition="Exists('Orienteering.orm')">
|
555
|
+
<None Include="Orienteering.DCIL.xml">
|
556
|
+
<AutoGen>True</AutoGen>
|
557
|
+
<DependentUpon>Orienteering.orm</DependentUpon>
|
558
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
559
|
+
</None>
|
560
|
+
<None Include="Orienteering.DDIL.xml">
|
561
|
+
<AutoGen>True</AutoGen>
|
562
|
+
<DependentUpon>Orienteering.orm</DependentUpon>
|
563
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
564
|
+
</None>
|
565
|
+
<None Include="Orienteering.SQLStandard.sql">
|
566
|
+
<AutoGen>True</AutoGen>
|
567
|
+
<DependentUpon>Orienteering.orm</DependentUpon>
|
568
|
+
<ORMGenerator>DDILtoSQLStandard</ORMGenerator>
|
569
|
+
</None>
|
570
|
+
</ItemGroup>
|
571
|
+
<ItemGroup Condition="Exists('PersonPlaysGame.orm')">
|
572
|
+
<None Include="PersonPlaysGame.DCIL.xml">
|
573
|
+
<AutoGen>True</AutoGen>
|
574
|
+
<DependentUpon>PersonPlaysGame.orm</DependentUpon>
|
575
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
576
|
+
</None>
|
577
|
+
<None Include="PersonPlaysGame.DDIL.xml">
|
578
|
+
<AutoGen>True</AutoGen>
|
579
|
+
<DependentUpon>PersonPlaysGame.orm</DependentUpon>
|
580
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
581
|
+
</None>
|
582
|
+
<None Include="PersonPlaysGame.SQLServer.sql">
|
583
|
+
<AutoGen>True</AutoGen>
|
584
|
+
<DependentUpon>PersonPlaysGame.orm</DependentUpon>
|
585
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
586
|
+
</None>
|
587
|
+
</ItemGroup>
|
588
|
+
<ItemGroup Condition="Exists('RedundantDependency.orm')">
|
589
|
+
<None Include="RedundantDependency.DCIL.xml">
|
590
|
+
<AutoGen>True</AutoGen>
|
591
|
+
<DependentUpon>RedundantDependency.orm</DependentUpon>
|
592
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
593
|
+
</None>
|
594
|
+
<None Include="RedundantDependency.DDIL.xml">
|
595
|
+
<AutoGen>True</AutoGen>
|
596
|
+
<DependentUpon>RedundantDependency.orm</DependentUpon>
|
597
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
598
|
+
</None>
|
599
|
+
<None Include="RedundantDependency.SQLServer.sql">
|
600
|
+
<AutoGen>True</AutoGen>
|
601
|
+
<DependentUpon>RedundantDependency.orm</DependentUpon>
|
602
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
603
|
+
</None>
|
604
|
+
</ItemGroup>
|
605
|
+
<ItemGroup Condition="Exists('SchoolActivities.orm')">
|
606
|
+
<None Include="SchoolActivities.DCIL.xml">
|
607
|
+
<AutoGen>True</AutoGen>
|
608
|
+
<DependentUpon>SchoolActivities.orm</DependentUpon>
|
609
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
610
|
+
</None>
|
611
|
+
<None Include="SchoolActivities.DDIL.xml">
|
612
|
+
<AutoGen>True</AutoGen>
|
613
|
+
<DependentUpon>SchoolActivities.orm</DependentUpon>
|
614
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
615
|
+
</None>
|
616
|
+
<None Include="SchoolActivities.SQLServer.sql">
|
617
|
+
<AutoGen>True</AutoGen>
|
618
|
+
<DependentUpon>SchoolActivities.orm</DependentUpon>
|
619
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
620
|
+
</None>
|
621
|
+
</ItemGroup>
|
622
|
+
<ItemGroup Condition="Exists('SeparateSubtype.orm')">
|
623
|
+
<None Include="SeparateSubtype.DCIL.xml">
|
624
|
+
<AutoGen>True</AutoGen>
|
625
|
+
<DependentUpon>SeparateSubtype.orm</DependentUpon>
|
626
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
627
|
+
</None>
|
628
|
+
<None Include="SeparateSubtype.DDIL.xml">
|
629
|
+
<AutoGen>True</AutoGen>
|
630
|
+
<DependentUpon>SeparateSubtype.orm</DependentUpon>
|
631
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
632
|
+
</None>
|
633
|
+
<None Include="SeparateSubtype.SQLServer.sql">
|
634
|
+
<AutoGen>True</AutoGen>
|
635
|
+
<DependentUpon>SeparateSubtype.orm</DependentUpon>
|
636
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
637
|
+
</None>
|
638
|
+
</ItemGroup>
|
639
|
+
<ItemGroup Condition="Exists('SimplestUnary.orm')">
|
640
|
+
<None Include="SimplestUnary.DCIL.xml">
|
641
|
+
<AutoGen>True</AutoGen>
|
642
|
+
<DependentUpon>SimplestUnary.orm</DependentUpon>
|
643
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
644
|
+
</None>
|
645
|
+
<None Include="SimplestUnary.DDIL.xml">
|
646
|
+
<AutoGen>True</AutoGen>
|
647
|
+
<DependentUpon>SimplestUnary.orm</DependentUpon>
|
648
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
649
|
+
</None>
|
650
|
+
<None Include="SimplestUnary.MySQL.sql">
|
651
|
+
<AutoGen>True</AutoGen>
|
652
|
+
<DependentUpon>SimplestUnary.orm</DependentUpon>
|
653
|
+
<ORMGenerator>DDILtoMySQL</ORMGenerator>
|
654
|
+
</None>
|
655
|
+
</ItemGroup>
|
656
|
+
<ItemGroup Condition="Exists('Supervision.orm')">
|
657
|
+
<None Include="Supervision.DCIL.xml">
|
658
|
+
<AutoGen>True</AutoGen>
|
659
|
+
<DependentUpon>Supervision.orm</DependentUpon>
|
660
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
661
|
+
</None>
|
662
|
+
<None Include="Supervision.DDIL.xml">
|
663
|
+
<AutoGen>True</AutoGen>
|
664
|
+
<DependentUpon>Supervision.orm</DependentUpon>
|
665
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
666
|
+
</None>
|
667
|
+
<None Include="Supervision.SQLStandard.sql">
|
668
|
+
<AutoGen>True</AutoGen>
|
669
|
+
<DependentUpon>Supervision.orm</DependentUpon>
|
670
|
+
<ORMGenerator>DDILtoSQLStandard</ORMGenerator>
|
671
|
+
</None>
|
672
|
+
</ItemGroup>
|
673
|
+
<ItemGroup Condition="Exists('OneRoleNesting.orm')">
|
674
|
+
<None Include="OneRoleNesting.DCIL.xml">
|
675
|
+
<AutoGen>True</AutoGen>
|
676
|
+
<DependentUpon>OneRoleNesting.orm</DependentUpon>
|
677
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
678
|
+
</None>
|
679
|
+
<None Include="OneRoleNesting.DDIL.xml">
|
680
|
+
<AutoGen>True</AutoGen>
|
681
|
+
<DependentUpon>OneRoleNesting.orm</DependentUpon>
|
682
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
683
|
+
</None>
|
684
|
+
<None Include="OneRoleNesting.SQLServer.sql">
|
685
|
+
<AutoGen>True</AutoGen>
|
686
|
+
<DependentUpon>OneRoleNesting.orm</DependentUpon>
|
687
|
+
<ORMGenerator>DDILtoSQLServer</ORMGenerator>
|
688
|
+
</None>
|
689
|
+
</ItemGroup>
|
690
|
+
<ItemGroup Condition="Exists('VenueSeating.orm')">
|
691
|
+
<None Include="VenueSeating.DCIL.xml">
|
692
|
+
<AutoGen>True</AutoGen>
|
693
|
+
<DependentUpon>VenueSeating.orm</DependentUpon>
|
694
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
695
|
+
</None>
|
696
|
+
<None Include="VenueSeating.DDIL.xml">
|
697
|
+
<AutoGen>True</AutoGen>
|
698
|
+
<DependentUpon>VenueSeating.orm</DependentUpon>
|
699
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
700
|
+
</None>
|
701
|
+
<None Include="VenueSeating.PostgreSQL.sql">
|
702
|
+
<AutoGen>True</AutoGen>
|
703
|
+
<DependentUpon>VenueSeating.orm</DependentUpon>
|
704
|
+
<ORMGenerator>DDILtoPostgreSQL</ORMGenerator>
|
705
|
+
</None>
|
706
|
+
</ItemGroup>
|
707
|
+
<ItemGroup Condition="Exists('Warehousing.orm')">
|
708
|
+
<None Include="Warehousing.CoRef.orm">
|
709
|
+
<AutoGen>True</AutoGen>
|
710
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
711
|
+
<ORMGenerator>CoRefORM</ORMGenerator>
|
712
|
+
</None>
|
713
|
+
<None Include="Warehousing.DCIL.xml">
|
714
|
+
<AutoGen>True</AutoGen>
|
715
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
716
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
717
|
+
</None>
|
718
|
+
<None Include="Warehousing.DDIL.xml">
|
719
|
+
<AutoGen>True</AutoGen>
|
720
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
721
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
722
|
+
</None>
|
723
|
+
<None Include="Warehousing.OIAL.xml">
|
724
|
+
<AutoGen>True</AutoGen>
|
725
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
726
|
+
<ORMGenerator>ORMtoOIAL</ORMGenerator>
|
727
|
+
</None>
|
728
|
+
<None Include="Warehousing.SQLStandard.sql">
|
729
|
+
<AutoGen>True</AutoGen>
|
730
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
731
|
+
<ORMGenerator>DDILtoSQLStandard</ORMGenerator>
|
732
|
+
</None>
|
733
|
+
<None Include="Warehousing.xsd">
|
734
|
+
<AutoGen>True</AutoGen>
|
735
|
+
<DependentUpon>Warehousing.orm</DependentUpon>
|
736
|
+
<ORMGenerator>OIALtoXSD</ORMGenerator>
|
737
|
+
</None>
|
738
|
+
</ItemGroup>
|
739
|
+
<ItemGroup Condition="Exists('WindowInRoomInBldg.orm')">
|
740
|
+
<None Include="WindowInRoomInBldg.DCIL.xml">
|
741
|
+
<AutoGen>True</AutoGen>
|
742
|
+
<DependentUpon>WindowInRoomInBldg.orm</DependentUpon>
|
743
|
+
<ORMGenerator>ConceptualDBtoDCL</ORMGenerator>
|
744
|
+
</None>
|
745
|
+
<None Include="WindowInRoomInBldg.DDIL.xml">
|
746
|
+
<AutoGen>True</AutoGen>
|
747
|
+
<DependentUpon>WindowInRoomInBldg.orm</DependentUpon>
|
748
|
+
<ORMGenerator>DCILtoDDIL</ORMGenerator>
|
749
|
+
</None>
|
750
|
+
<None Include="WindowInRoomInBldg.MySQL.sql">
|
751
|
+
<AutoGen>True</AutoGen>
|
752
|
+
<DependentUpon>WindowInRoomInBldg.orm</DependentUpon>
|
753
|
+
<ORMGenerator>DDILtoMySQL</ORMGenerator>
|
754
|
+
</None>
|
755
|
+
</ItemGroup>
|
756
|
+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
757
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
758
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
759
|
+
<Target Name="BeforeBuild">
|
760
|
+
</Target>
|
761
|
+
<Target Name="AfterBuild">
|
762
|
+
</Target>
|
763
|
+
-->
|
764
|
+
</Project>
|