Skip to content

Commit d3ef126

Browse files
authored
Merge pull request #68 from msallin/topic/SmallRestructuring
Moved public framework parts into a own folder, like internal.
2 parents a41433d + 9562ce2 commit d3ef126

16 files changed

+15
-14
lines changed

SQLite.CodeFirst/SQLite.CodeFirst.csproj

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -87,25 +87,25 @@
8787
<Compile Include="..\Shared\AssemblySharedInfo.cs">
8888
<Link>Properties\AssemblySharedInfo.cs</Link>
8989
</Compile>
90-
<Compile Include="Attributes\CollateAttribute.cs" />
91-
<Compile Include="Attributes\CollationFunction.cs" />
92-
<Compile Include="Attributes\OnConflictAction.cs" />
93-
<Compile Include="Attributes\UniqueAttribute.cs" />
94-
<Compile Include="Entities\IHistory.cs" />
90+
<Compile Include="Public\Attributes\CollateAttribute.cs" />
91+
<Compile Include="Public\Attributes\CollationFunction.cs" />
92+
<Compile Include="Public\Attributes\OnConflictAction.cs" />
93+
<Compile Include="Public\Attributes\UniqueAttribute.cs" />
94+
<Compile Include="Public\Entities\IHistory.cs" />
9595
<Compile Include="Internal\Builder\NameCreators\IndexNameCreator.cs" />
9696
<Compile Include="Internal\Builder\NameCreators\SpecialChars.cs" />
97-
<Compile Include="IDatabaseCreator.cs" />
97+
<Compile Include="Public\IDatabaseCreator.cs" />
9898
<Compile Include="Internal\Extensions\DbModelBuilderExtensions.cs" />
9999
<Compile Include="Internal\Extensions\EdmPropertyExtensions.cs" />
100100
<Compile Include="Internal\Statement\ColumnConstraint\CollateConstraint.cs" />
101101
<Compile Include="Internal\Statement\ColumnConstraint\UniqueConstraint.cs" />
102102
<Compile Include="Internal\Utility\HashCreator.cs" />
103103
<Compile Include="Internal\Utility\HistoryEntityTypeValidator.cs" />
104104
<Compile Include="Internal\Utility\SqliteAssociationType.cs" />
105-
<Compile Include="ISqliteSqlGenerator.cs" />
106-
<Compile Include="DbInitializers\SqliteDropCreateDatabaseWhenModelChanges.cs" />
107-
<Compile Include="Entities\History.cs" />
108-
<Compile Include="SqliteSqlGenerator.cs" />
105+
<Compile Include="Public\ISqliteSqlGenerator.cs" />
106+
<Compile Include="Public\DbInitializers\SqliteDropCreateDatabaseWhenModelChanges.cs" />
107+
<Compile Include="Public\Entities\History.cs" />
108+
<Compile Include="Public\SqliteSqlGenerator.cs" />
109109
<Compile Include="Internal\Statement\ColumnConstraint\IColumnConstraintCollection.cs" />
110110
<Compile Include="Internal\Statement\IStatementCollection.cs" />
111111
<Compile Include="Internal\Utility\AssociationTypeContainer.cs" />
@@ -116,17 +116,17 @@
116116
<Compile Include="Internal\Builder\PrimaryKeyStatementBuilder.cs" />
117117
<Compile Include="Internal\Convention\SqliteForeignKeyIndexConvention.cs" />
118118
<Compile Include="Internal\Extensions\EntityTypeExtension.cs" />
119-
<Compile Include="DbInitializers\SqliteCreateDatabaseIfNotExists.cs" />
120-
<Compile Include="DbInitializers\SqliteDropCreateDatabaseAlways.cs" />
119+
<Compile Include="Public\DbInitializers\SqliteCreateDatabaseIfNotExists.cs" />
120+
<Compile Include="Public\DbInitializers\SqliteDropCreateDatabaseAlways.cs" />
121121
<Compile Include="Internal\Statement\ColumnConstraint\MaxLengthConstraint.cs" />
122122
<Compile Include="Internal\Statement\CreateIndexStatement.cs" />
123123
<Compile Include="Internal\Statement\CreateIndexStatementCollection.cs" />
124124
<Compile Include="Internal\Statement\PrimaryKeyStatement.cs" />
125125
<Compile Include="Properties\AssemblyInfo.cs" />
126126
<Compile Include="Internal\Utility\ConnectionStringParser.cs" />
127-
<Compile Include="DbInitializers\SqliteInitializerBase.cs" />
127+
<Compile Include="Public\DbInitializers\SqliteInitializerBase.cs" />
128128
<Compile Include="Internal\Builder\IStatementBuilder.cs" />
129-
<Compile Include="SqliteDatabaseCreator.cs" />
129+
<Compile Include="Public\SqliteDatabaseCreator.cs" />
130130
<Compile Include="Internal\Statement\ColumnConstraint\ColumnConstraintCollection.cs" />
131131
<Compile Include="Internal\Statement\ForeignKeyStatement.cs" />
132132
<Compile Include="Internal\Statement\ColumnConstraint\IColumnConstraint.cs" />

SQLite.CodeFirst/SQLite.CodeFirst.csproj.DotSettings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=entities/@EntryIndexedValue">True</s:Boolean>
44
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=internal/@EntryIndexedValue">True</s:Boolean>
55
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=public/@EntryIndexedValue">True</s:Boolean>
6+
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=public_005Cattributes/@EntryIndexedValue">True</s:Boolean>
67
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=public_005Cdbinitializers/@EntryIndexedValue">True</s:Boolean>
78
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=public_005Centities/@EntryIndexedValue">True</s:Boolean>
89
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=sqlitedatabaseinitializers/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

0 commit comments

Comments
 (0)