From 9b7f91363d0c9a568fefa14f98de05408516836f Mon Sep 17 00:00:00 2001 From: Torben Nehmer Date: Sun, 20 Nov 2016 15:44:36 +0100 Subject: [PATCH] Added base Project for the DLL with the actual code. --- NAV Source Control.sln | 6 +++ NAVSCM Library/NAVSCM Library.csproj | 62 +++++++++++++++++++++++ NAVSCM Library/Properties/AssemblyInfo.cs | 36 +++++++++++++ NAVSCM Library/packages.config | 4 ++ 4 files changed, 108 insertions(+) create mode 100644 NAVSCM Library/NAVSCM Library.csproj create mode 100644 NAVSCM Library/Properties/AssemblyInfo.cs create mode 100644 NAVSCM Library/packages.config diff --git a/NAV Source Control.sln b/NAV Source Control.sln index 2820300..bbb28c8 100644 --- a/NAV Source Control.sln +++ b/NAV Source Control.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NAV Source Control Test Host", "NAV Source Control Test Host\NAV Source Control Test Host.csproj", "{E0BED7B8-729A-4AA4-83A3-2F0EC569728E}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NAVSCM Library", "NAVSCM Library\NAVSCM Library.csproj", "{46DB932E-45D1-4783-A8BF-CE5333B3F8F9}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {E0BED7B8-729A-4AA4-83A3-2F0EC569728E}.Debug|Any CPU.Build.0 = Debug|Any CPU {E0BED7B8-729A-4AA4-83A3-2F0EC569728E}.Release|Any CPU.ActiveCfg = Release|Any CPU {E0BED7B8-729A-4AA4-83A3-2F0EC569728E}.Release|Any CPU.Build.0 = Release|Any CPU + {46DB932E-45D1-4783-A8BF-CE5333B3F8F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {46DB932E-45D1-4783-A8BF-CE5333B3F8F9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {46DB932E-45D1-4783-A8BF-CE5333B3F8F9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {46DB932E-45D1-4783-A8BF-CE5333B3F8F9}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/NAVSCM Library/NAVSCM Library.csproj b/NAVSCM Library/NAVSCM Library.csproj new file mode 100644 index 0000000..bbea052 --- /dev/null +++ b/NAVSCM Library/NAVSCM Library.csproj @@ -0,0 +1,62 @@ + + + + + Debug + AnyCPU + {46DB932E-45D1-4783-A8BF-CE5333B3F8F9} + Library + Properties + NAVSCM + NAVSCM Library + v4.5.2 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\packages\log4net.2.0.5\lib\net45-full\log4net.dll + True + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/NAVSCM Library/Properties/AssemblyInfo.cs b/NAVSCM Library/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..470dba4 --- /dev/null +++ b/NAVSCM Library/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("NAVSCM Library")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("NAVSCM Library")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar +// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("46db932e-45d1-4783-a8bf-ce5333b3f8f9")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/NAVSCM Library/packages.config b/NAVSCM Library/packages.config new file mode 100644 index 0000000..0f8aabf --- /dev/null +++ b/NAVSCM Library/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file