commit 0fe5f24b534acc0b96d36f2b03e5d627478dd99c Author: Dennis Eichhorn Date: Wed Sep 14 09:04:09 2022 -0700 init diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..cac0bd9 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,37 @@ +* text=false +*.php ident + +# Force the following filetypes to have unix eols, so Windows does not break them +*.php text eol=lf +*.js text eol=lf +*.sh text eol=lf +*.css text eol=lf +*.md text eol=lf +*.txt text eol=lf +*.htaccess text eol=lf +*.json text eol=lf +*.c text eol=lf +*.cpp text eol=lf +*.h text eol=lf + +*.png binary +*.jpg binary +*.jpeg binary +*.gif binary +*.ico binary +*.mov binary +*.mp4 binary +*.mp3 binary +*.flv binary +*.fla binary +*.swf binary +*.gz binary +*.zip binary +*.7z binary +*.ttf binary +*.eot binary +*.woff binary +*.pyc binary +*.pdf binary +*.dat binary +*.z binary \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a82fcb --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.vs +obj/ +*.cache +.directory +bin/Debug +x64/Debug \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..2295aa4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "app/server/cOMS"] + path = app/server/cOMS + url = https://github.com/Karaka-Management/cOMS.git diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..56d5426 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,14 @@ +The OMS License 1.0 + +Copyright (c) All Rights Reserved + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +BY CONTRIBUTING YOU AUTOMATICALLY ACCEPT THE INDIVIDUAL CONTRIBUTOR LICENSE +AGREEMENT 1.0 ("CLA") INCLUDED IN THIS REPOSITORY. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5bb3763 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# NewsletterApp diff --git a/app/local/App.xaml b/app/local/App.xaml new file mode 100644 index 0000000..97f06c7 --- /dev/null +++ b/app/local/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/app/local/App.xaml.cs b/app/local/App.xaml.cs new file mode 100644 index 0000000..6a8de7b --- /dev/null +++ b/app/local/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace OnlineResourceWatcherLocalApp +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/app/local/AssemblyInfo.cs b/app/local/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/app/local/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/app/local/MainWindow.xaml b/app/local/MainWindow.xaml new file mode 100644 index 0000000..b17dd0d --- /dev/null +++ b/app/local/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/app/local/MainWindow.xaml.cs b/app/local/MainWindow.xaml.cs new file mode 100644 index 0000000..699df70 --- /dev/null +++ b/app/local/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace OnlineResourceWatcherLocalApp +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/app/local/OnlineResourceWatcherLocalApp.csproj b/app/local/OnlineResourceWatcherLocalApp.csproj new file mode 100644 index 0000000..e88e10e --- /dev/null +++ b/app/local/OnlineResourceWatcherLocalApp.csproj @@ -0,0 +1,16 @@ + + + + WinExe + net6.0-windows + enable + true + Debug;Release;Demo + + + + True + $(DefineConstants)TRACE;Demo + + + diff --git a/app/local/OnlineResourceWatcherLocalApp.csproj.user b/app/local/OnlineResourceWatcherLocalApp.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/app/local/OnlineResourceWatcherLocalApp.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/app/local/OnlineResourceWatcherLocalApp.sln b/app/local/OnlineResourceWatcherLocalApp.sln new file mode 100644 index 0000000..f445a8b --- /dev/null +++ b/app/local/OnlineResourceWatcherLocalApp.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32825.248 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OnlineResourceWatcherLocalApp", "OnlineResourceWatcherLocalApp.csproj", "{19520179-CF22-4185-8DA4-BCB90DFF60D3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Demo|Any CPU = Demo|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Demo|Any CPU.ActiveCfg = Demo|Any CPU + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Demo|Any CPU.Build.0 = Demo|Any CPU + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {19520179-CF22-4185-8DA4-BCB90DFF60D3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {279251AC-43AC-4D95-B231-8792A5D57375} + EndGlobalSection +EndGlobal diff --git a/app/server/CMakeLists.txt b/app/server/CMakeLists.txt new file mode 100644 index 0000000..6f91b2d --- /dev/null +++ b/app/server/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 2.8) +project( OnlineResourceWatcherServerApp ) +add_executable( OnlineResourceWatcherServerApp main.cpp ) + +# cmake -DCMAKE_BUILD_TYPE=Debug -DOMS_DEBUG=true +# cmake -DCMAKE_BUILD_TYPE=Release -DOMS_DEMO=true \ No newline at end of file diff --git a/app/server/OnlineResourceWatcherServerApp.aps b/app/server/OnlineResourceWatcherServerApp.aps new file mode 100644 index 0000000..8ef13c7 Binary files /dev/null and b/app/server/OnlineResourceWatcherServerApp.aps differ diff --git a/app/server/OnlineResourceWatcherServerApp.rc b/app/server/OnlineResourceWatcherServerApp.rc new file mode 100644 index 0000000..bdb30fa --- /dev/null +++ b/app/server/OnlineResourceWatcherServerApp.rc @@ -0,0 +1,71 @@ +// Microsoft Visual C++ generated resource script. +// +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page(1252) + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_ICON1 ICON "favicon.ico" + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED + diff --git a/app/server/OnlineResourceWatcherServerApp.sln b/app/server/OnlineResourceWatcherServerApp.sln new file mode 100644 index 0000000..20f8daa --- /dev/null +++ b/app/server/OnlineResourceWatcherServerApp.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32825.248 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OnlineResourceWatcherServerApp", "OnlineResourceWatcherServerApp.vcxproj", "{E4833A04-2C5F-45C7-A516-1961F33989EC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x64.ActiveCfg = Debug|x64 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x64.Build.0 = Debug|x64 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x86.ActiveCfg = Debug|Win32 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Debug|x86.Build.0 = Debug|Win32 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x64.ActiveCfg = Release|x64 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x64.Build.0 = Release|x64 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x86.ActiveCfg = Release|Win32 + {E4833A04-2C5F-45C7-A516-1961F33989EC}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {6B0C2D93-198E-41A1-A523-2AB67F051D55} + EndGlobalSection +EndGlobal diff --git a/app/server/OnlineResourceWatcherServerApp.vcxproj b/app/server/OnlineResourceWatcherServerApp.vcxproj new file mode 100644 index 0000000..0e3884d --- /dev/null +++ b/app/server/OnlineResourceWatcherServerApp.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {e4833a04-2c5f-45c7-a516-1961f33989ec} + OnlineResourceWatcherServerApp + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + C:\Users\deich\git\OnlineResourceWatcherApp\app\server;$(IncludePath) + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/server/OnlineResourceWatcherServerApp.vcxproj.filters b/app/server/OnlineResourceWatcherServerApp.vcxproj.filters new file mode 100644 index 0000000..ab1e042 --- /dev/null +++ b/app/server/OnlineResourceWatcherServerApp.vcxproj.filters @@ -0,0 +1,37 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + + + Header Files + + + + + Resource Files + + + + + Resource Files + + + \ No newline at end of file diff --git a/app/server/OnlineResourceWatcherServerApp.vcxproj.user b/app/server/OnlineResourceWatcherServerApp.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/app/server/OnlineResourceWatcherServerApp.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/app/server/cOMS b/app/server/cOMS new file mode 160000 index 0000000..cd71fb7 --- /dev/null +++ b/app/server/cOMS @@ -0,0 +1 @@ +Subproject commit cd71fb74b146e1fffefafe6f8f053ec4ef4a1096 diff --git a/app/server/favicon.ico b/app/server/favicon.ico new file mode 100644 index 0000000..ec514e2 Binary files /dev/null and b/app/server/favicon.ico differ diff --git a/app/server/main.cpp b/app/server/main.cpp new file mode 100644 index 0000000..d9cfaf7 --- /dev/null +++ b/app/server/main.cpp @@ -0,0 +1,51 @@ +/** + * Karaka + * + * @package App + * @copyright Dennis Eichhorn + * @license OMS License 1.0 + * @version 1.0.0 + * @link https://karaka.app + */ + +#include + +#include "cOMS/Utils/ArrayUtils.h" + +#ifndef OMS_DEMO + #define OMS_DEMO false +#endif + +void printHelp() +{ + printf(" The Online Resource Watcher app developed by jingga checks online or local resources\n"); + printf(" for changes and and informs the user about them.\n\n"); + printf(" Run: ./App ....\n\n"); + printf(" -h: Prints the help output\n"); + printf(" -v: Prints the version\n"); + printf("\n"); + printf(" Website: https://jingga.app\n"); + printf(" Copyright: jingga (c) Dennis Eichhorn\n"); +} + +void printVersion() +{ + printf("Version: 1.0.0\n"); +} + +int main(int argc, char **argv) +{ + bool hasHelpCmd = Utils::ArrayUtils::has_arg("-h", argv, argc); + if (hasHelpCmd) { + printHelp(); + + return 0; + } + + bool hasVersionCmd = Utils::ArrayUtils::has_arg("-v", argv, argc); + if (hasVersionCmd) { + printVersion(); + + return 0; + } +} diff --git a/app/server/resource.h b/app/server/resource.h new file mode 100644 index 0000000..61a57eb --- /dev/null +++ b/app/server/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by OnlineResourceWatcherServerApp.rc +// +#define IDI_ICON1 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.command.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.command.1.tlog new file mode 100644 index 0000000..d6f125d Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.command.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.read.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.read.1.tlog new file mode 100644 index 0000000..a861872 Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.read.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.write.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.write.1.tlog new file mode 100644 index 0000000..b4f2c7c Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/CL.write.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/OnlineResourceWatcherServerApp.lastbuildstate b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/OnlineResourceWatcherServerApp.lastbuildstate new file mode 100644 index 0000000..210bf42 --- /dev/null +++ b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/OnlineResourceWatcherServerApp.lastbuildstate @@ -0,0 +1,2 @@ +PlatformToolSet=v143:VCToolArchitecture=Native64Bit:VCToolsVersion=14.33.31629:TargetPlatformVersion=10.0.19041.0: +Debug|x64|C:\Users\deich\git\OnlineResourceWatcherApp\app\server\| diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.command.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.command.1.tlog new file mode 100644 index 0000000..670da9f Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.command.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.read.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.read.1.tlog new file mode 100644 index 0000000..d020dd1 Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.read.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.write.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.write.1.tlog new file mode 100644 index 0000000..6fd4100 Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/link.write.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.command.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.command.1.tlog new file mode 100644 index 0000000..90104ca Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.command.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.read.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.read.1.tlog new file mode 100644 index 0000000..41d71f3 Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.read.1.tlog differ diff --git a/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.write.1.tlog b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.write.1.tlog new file mode 100644 index 0000000..bc0ecaf Binary files /dev/null and b/app/server/x64/Debug/OnlineRe.e4833a04.tlog/rc.write.1.tlog differ diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.Build.CppClean.log b/app/server/x64/Debug/OnlineResourceWatcherServerApp.Build.CppClean.log new file mode 100644 index 0000000..1bfe40f --- /dev/null +++ b/app/server/x64/Debug/OnlineResourceWatcherServerApp.Build.CppClean.log @@ -0,0 +1,3 @@ +c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\vc143.idb +c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\vc143.pdb +c:\users\deich\git\onlineresourcewatcherapp\app\server\x64\debug\onlinere.e4833a04.tlog\cl.command.1.tlog diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe b/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe new file mode 100644 index 0000000..432d4c0 Binary files /dev/null and b/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe differ diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe.recipe b/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe.recipe new file mode 100644 index 0000000..bef72ee --- /dev/null +++ b/app/server/x64/Debug/OnlineResourceWatcherServerApp.exe.recipe @@ -0,0 +1,11 @@ + + + + + C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe + + + + + + \ No newline at end of file diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.ilk b/app/server/x64/Debug/OnlineResourceWatcherServerApp.ilk new file mode 100644 index 0000000..1d6e80c Binary files /dev/null and b/app/server/x64/Debug/OnlineResourceWatcherServerApp.ilk differ diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.log b/app/server/x64/Debug/OnlineResourceWatcherServerApp.log new file mode 100644 index 0000000..d5d4387 --- /dev/null +++ b/app/server/x64/Debug/OnlineResourceWatcherServerApp.log @@ -0,0 +1 @@ + OnlineResourceWatcherServerApp.vcxproj -> C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.pdb b/app/server/x64/Debug/OnlineResourceWatcherServerApp.pdb new file mode 100644 index 0000000..77bece1 Binary files /dev/null and b/app/server/x64/Debug/OnlineResourceWatcherServerApp.pdb differ diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.res b/app/server/x64/Debug/OnlineResourceWatcherServerApp.res new file mode 100644 index 0000000..92c639f Binary files /dev/null and b/app/server/x64/Debug/OnlineResourceWatcherServerApp.res differ diff --git a/app/server/x64/Debug/OnlineResourceWatcherServerApp.vcxproj.FileListAbsolute.txt b/app/server/x64/Debug/OnlineResourceWatcherServerApp.vcxproj.FileListAbsolute.txt new file mode 100644 index 0000000..43049e9 --- /dev/null +++ b/app/server/x64/Debug/OnlineResourceWatcherServerApp.vcxproj.FileListAbsolute.txt @@ -0,0 +1 @@ +C:\Users\deich\git\OnlineResourceWatcherApp\app\server\x64\Debug\OnlineResourceWatcherServerApp.exe diff --git a/app/server/x64/Debug/_IsIncrementalBuild b/app/server/x64/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..0c7c421 --- /dev/null +++ b/app/server/x64/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +x64\Debug\\_IsIncrementalBuild diff --git a/app/server/x64/Debug/main.obj b/app/server/x64/Debug/main.obj new file mode 100644 index 0000000..afb0f9c Binary files /dev/null and b/app/server/x64/Debug/main.obj differ diff --git a/app/server/x64/Debug/vc143.idb b/app/server/x64/Debug/vc143.idb new file mode 100644 index 0000000..17bb839 Binary files /dev/null and b/app/server/x64/Debug/vc143.idb differ diff --git a/app/server/x64/Debug/vc143.pdb b/app/server/x64/Debug/vc143.pdb new file mode 100644 index 0000000..1623629 Binary files /dev/null and b/app/server/x64/Debug/vc143.pdb differ