Base: Add NamedDatabase Enum

This commit is contained in:
Jonathan Jenne 2022-01-12 14:35:42 +01:00
parent edd34b18a0
commit 0bcb3680b1
3 changed files with 15 additions and 4 deletions

View File

@ -65,7 +65,7 @@
<Import Include="System.Threading.Tasks" /> <Import Include="System.Threading.Tasks" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Class1.vb" /> <Compile Include="NamedDatabase.vb" />
<Compile Include="My Project\AssemblyInfo.vb" /> <Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb"> <Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
@ -102,5 +102,8 @@
<LastGenOutput>Settings.Designer.vb</LastGenOutput> <LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None> </None>
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Include="README.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project> </Project>

View File

@ -2,6 +2,9 @@
''' This module is intended for often used constants and datastructures ''' This module is intended for often used constants and datastructures
''' Therefor it is important that this module does not have any dependencies on other modules!! ''' Therefor it is important that this module does not have any dependencies on other modules!!
''' </summary> ''' </summary>
Public Class Class1 Namespace Constants
Public Enum NamedDatabase
End Class ECM
IDB
End Enum
End Namespace

View File

@ -0,0 +1,5 @@
BASE MODULE
===========
This module is intended for often used constants and datastructures.
Therefor it is important that this module does not have any dependencies on other modules!!