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

View File

@ -2,6 +2,9 @@
''' 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!!
''' </summary>
Public Class Class1
End Class
Namespace Constants
Public Enum NamedDatabase
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!!