From 5380aa957132ca11b7a309362d6127b51486fef0 Mon Sep 17 00:00:00 2001 From: Gyula Kerezsi Date: Thu, 15 Dec 2016 14:52:37 +0200 Subject: [PATCH] Add project files. --- CloudWatchLogUploader.sln | 22 +++++++ CloudWatchLogUploader/App.config | 6 ++ .../CloudWatchLogUploader.csproj | 59 +++++++++++++++++++ CloudWatchLogUploader/Program.cs | 15 +++++ .../Properties/AssemblyInfo.cs | 36 +++++++++++ 5 files changed, 138 insertions(+) create mode 100644 CloudWatchLogUploader.sln create mode 100644 CloudWatchLogUploader/App.config create mode 100644 CloudWatchLogUploader/CloudWatchLogUploader.csproj create mode 100644 CloudWatchLogUploader/Program.cs create mode 100644 CloudWatchLogUploader/Properties/AssemblyInfo.cs diff --git a/CloudWatchLogUploader.sln b/CloudWatchLogUploader.sln new file mode 100644 index 0000000..c5301af --- /dev/null +++ b/CloudWatchLogUploader.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CloudWatchLogUploader", "CloudWatchLogUploader\CloudWatchLogUploader.csproj", "{E6A29739-3D2E-431D-9A32-4CE187B3322D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E6A29739-3D2E-431D-9A32-4CE187B3322D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E6A29739-3D2E-431D-9A32-4CE187B3322D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E6A29739-3D2E-431D-9A32-4CE187B3322D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E6A29739-3D2E-431D-9A32-4CE187B3322D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/CloudWatchLogUploader/App.config b/CloudWatchLogUploader/App.config new file mode 100644 index 0000000..8e15646 --- /dev/null +++ b/CloudWatchLogUploader/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CloudWatchLogUploader/CloudWatchLogUploader.csproj b/CloudWatchLogUploader/CloudWatchLogUploader.csproj new file mode 100644 index 0000000..67fb7c9 --- /dev/null +++ b/CloudWatchLogUploader/CloudWatchLogUploader.csproj @@ -0,0 +1,59 @@ + + + + + Debug + AnyCPU + {E6A29739-3D2E-431D-9A32-4CE187B3322D} + Exe + Properties + CloudWatchLogUploader + CloudWatchLogUploader + v4.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CloudWatchLogUploader/Program.cs b/CloudWatchLogUploader/Program.cs new file mode 100644 index 0000000..87b473d --- /dev/null +++ b/CloudWatchLogUploader/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace CloudWatchLogUploader +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/CloudWatchLogUploader/Properties/AssemblyInfo.cs b/CloudWatchLogUploader/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..8c2fa68 --- /dev/null +++ b/CloudWatchLogUploader/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("CloudWatchLogUploader")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Hewlett-Packard Company")] +[assembly: AssemblyProduct("CloudWatchLogUploader")] +[assembly: AssemblyCopyright("Copyright © Hewlett-Packard Company 2016")] +[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("e6a29739-3d2e-431d-9a32-4ce187b3322d")] + +// 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")]