From 9b63740d2a44d3e889b0a4911762896b17b1cbcb Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Mon, 14 Jun 2021 20:07:04 +0200 Subject: [PATCH] Moved project to subfolder, added empty lib class library --- IPCamAppBar.sln | 12 +++-- App.config => IPCamAppBar/App.config | 0 AppBar.cs => IPCamAppBar/AppBar.cs | 0 .../CameraMJPEGStream.cs | 0 .../CameraStream.cs | 0 .../CameraView.Designer.cs | 0 CameraView.cs => IPCamAppBar/CameraView.cs | 0 .../CameraView.resx | 0 Config.cs => IPCamAppBar/Config.cs | 0 .../IPCamAppBar.csproj | 0 .../MainForm.Designer.cs | 0 MainForm.cs => IPCamAppBar/MainForm.cs | 0 MainForm.resx => IPCamAppBar/MainForm.resx | 0 Program.cs => IPCamAppBar/Program.cs | 0 .../Properties}/AssemblyInfo.cs | 0 .../Properties}/Resources.Designer.cs | 0 .../Properties}/Resources.resx | 0 .../Properties}/Settings.Designer.cs | 0 .../Properties}/Settings.settings | 0 config.json => IPCamAppBar/config.json | 0 .../packages.config | 0 IPCamLib/IPCamLib.csproj | 47 +++++++++++++++++++ IPCamLib/Properties/AssemblyInfo.cs | 36 ++++++++++++++ 23 files changed, 92 insertions(+), 3 deletions(-) rename App.config => IPCamAppBar/App.config (100%) rename AppBar.cs => IPCamAppBar/AppBar.cs (100%) rename CameraMJPEGStream.cs => IPCamAppBar/CameraMJPEGStream.cs (100%) rename CameraStream.cs => IPCamAppBar/CameraStream.cs (100%) rename CameraView.Designer.cs => IPCamAppBar/CameraView.Designer.cs (100%) rename CameraView.cs => IPCamAppBar/CameraView.cs (100%) rename CameraView.resx => IPCamAppBar/CameraView.resx (100%) rename Config.cs => IPCamAppBar/Config.cs (100%) rename IPCamAppBar.csproj => IPCamAppBar/IPCamAppBar.csproj (100%) rename MainForm.Designer.cs => IPCamAppBar/MainForm.Designer.cs (100%) rename MainForm.cs => IPCamAppBar/MainForm.cs (100%) rename MainForm.resx => IPCamAppBar/MainForm.resx (100%) rename Program.cs => IPCamAppBar/Program.cs (100%) rename {Properties => IPCamAppBar/Properties}/AssemblyInfo.cs (100%) rename {Properties => IPCamAppBar/Properties}/Resources.Designer.cs (100%) rename {Properties => IPCamAppBar/Properties}/Resources.resx (100%) rename {Properties => IPCamAppBar/Properties}/Settings.Designer.cs (100%) rename {Properties => IPCamAppBar/Properties}/Settings.settings (100%) rename config.json => IPCamAppBar/config.json (100%) rename packages.config => IPCamAppBar/packages.config (100%) create mode 100644 IPCamLib/IPCamLib.csproj create mode 100644 IPCamLib/Properties/AssemblyInfo.cs diff --git a/IPCamAppBar.sln b/IPCamAppBar.sln index 8f5c9f7..edc859f 100644 --- a/IPCamAppBar.sln +++ b/IPCamAppBar.sln @@ -1,9 +1,11 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.779 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31005.135 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IPCamAppBar", "IPCamAppBar.csproj", "{D9084F9B-D270-45E1-B595-D570AEB028A7}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IPCamAppBar", "IPCamAppBar\IPCamAppBar.csproj", "{D9084F9B-D270-45E1-B595-D570AEB028A7}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IPCamLib", "IPCamLib\IPCamLib.csproj", "{FD0886FF-F274-4EFC-8A56-F82A4641C3FD}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,6 +17,10 @@ Global {D9084F9B-D270-45E1-B595-D570AEB028A7}.Debug|Any CPU.Build.0 = Debug|Any CPU {D9084F9B-D270-45E1-B595-D570AEB028A7}.Release|Any CPU.ActiveCfg = Release|Any CPU {D9084F9B-D270-45E1-B595-D570AEB028A7}.Release|Any CPU.Build.0 = Release|Any CPU + {FD0886FF-F274-4EFC-8A56-F82A4641C3FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD0886FF-F274-4EFC-8A56-F82A4641C3FD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD0886FF-F274-4EFC-8A56-F82A4641C3FD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD0886FF-F274-4EFC-8A56-F82A4641C3FD}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/App.config b/IPCamAppBar/App.config similarity index 100% rename from App.config rename to IPCamAppBar/App.config diff --git a/AppBar.cs b/IPCamAppBar/AppBar.cs similarity index 100% rename from AppBar.cs rename to IPCamAppBar/AppBar.cs diff --git a/CameraMJPEGStream.cs b/IPCamAppBar/CameraMJPEGStream.cs similarity index 100% rename from CameraMJPEGStream.cs rename to IPCamAppBar/CameraMJPEGStream.cs diff --git a/CameraStream.cs b/IPCamAppBar/CameraStream.cs similarity index 100% rename from CameraStream.cs rename to IPCamAppBar/CameraStream.cs diff --git a/CameraView.Designer.cs b/IPCamAppBar/CameraView.Designer.cs similarity index 100% rename from CameraView.Designer.cs rename to IPCamAppBar/CameraView.Designer.cs diff --git a/CameraView.cs b/IPCamAppBar/CameraView.cs similarity index 100% rename from CameraView.cs rename to IPCamAppBar/CameraView.cs diff --git a/CameraView.resx b/IPCamAppBar/CameraView.resx similarity index 100% rename from CameraView.resx rename to IPCamAppBar/CameraView.resx diff --git a/Config.cs b/IPCamAppBar/Config.cs similarity index 100% rename from Config.cs rename to IPCamAppBar/Config.cs diff --git a/IPCamAppBar.csproj b/IPCamAppBar/IPCamAppBar.csproj similarity index 100% rename from IPCamAppBar.csproj rename to IPCamAppBar/IPCamAppBar.csproj diff --git a/MainForm.Designer.cs b/IPCamAppBar/MainForm.Designer.cs similarity index 100% rename from MainForm.Designer.cs rename to IPCamAppBar/MainForm.Designer.cs diff --git a/MainForm.cs b/IPCamAppBar/MainForm.cs similarity index 100% rename from MainForm.cs rename to IPCamAppBar/MainForm.cs diff --git a/MainForm.resx b/IPCamAppBar/MainForm.resx similarity index 100% rename from MainForm.resx rename to IPCamAppBar/MainForm.resx diff --git a/Program.cs b/IPCamAppBar/Program.cs similarity index 100% rename from Program.cs rename to IPCamAppBar/Program.cs diff --git a/Properties/AssemblyInfo.cs b/IPCamAppBar/Properties/AssemblyInfo.cs similarity index 100% rename from Properties/AssemblyInfo.cs rename to IPCamAppBar/Properties/AssemblyInfo.cs diff --git a/Properties/Resources.Designer.cs b/IPCamAppBar/Properties/Resources.Designer.cs similarity index 100% rename from Properties/Resources.Designer.cs rename to IPCamAppBar/Properties/Resources.Designer.cs diff --git a/Properties/Resources.resx b/IPCamAppBar/Properties/Resources.resx similarity index 100% rename from Properties/Resources.resx rename to IPCamAppBar/Properties/Resources.resx diff --git a/Properties/Settings.Designer.cs b/IPCamAppBar/Properties/Settings.Designer.cs similarity index 100% rename from Properties/Settings.Designer.cs rename to IPCamAppBar/Properties/Settings.Designer.cs diff --git a/Properties/Settings.settings b/IPCamAppBar/Properties/Settings.settings similarity index 100% rename from Properties/Settings.settings rename to IPCamAppBar/Properties/Settings.settings diff --git a/config.json b/IPCamAppBar/config.json similarity index 100% rename from config.json rename to IPCamAppBar/config.json diff --git a/packages.config b/IPCamAppBar/packages.config similarity index 100% rename from packages.config rename to IPCamAppBar/packages.config diff --git a/IPCamLib/IPCamLib.csproj b/IPCamLib/IPCamLib.csproj new file mode 100644 index 0000000..3da1379 --- /dev/null +++ b/IPCamLib/IPCamLib.csproj @@ -0,0 +1,47 @@ + + + + + Debug + AnyCPU + {FD0886FF-F274-4EFC-8A56-F82A4641C3FD} + Library + Properties + IPCamLib + IPCamLib + v4.7.2 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/IPCamLib/Properties/AssemblyInfo.cs b/IPCamLib/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..31d814d --- /dev/null +++ b/IPCamLib/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("IPCamLib")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("IPCamLib")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("fd0886ff-f274-4efc-8a56-f82a4641c3fd")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]