From 280be64c2cefeeb4821297bdadd589efeb38584b Mon Sep 17 00:00:00 2001 From: Esteban Puentes Date: Thu, 22 Nov 2018 11:49:23 +0100 Subject: [PATCH] Create project --- README.md | 4 +-- updates.sln | 25 ++++++++++++++ updates/Class1.cs | 12 +++++++ updates/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++ updates/updates.csproj | 54 ++++++++++++++++++++++++++++++ 5 files changed, 129 insertions(+), 2 deletions(-) create mode 100644 updates.sln create mode 100644 updates/Class1.cs create mode 100644 updates/Properties/AssemblyInfo.cs create mode 100644 updates/updates.csproj diff --git a/README.md b/README.md index bbd69fb..3a4bae3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# iupdates -Gets Windows updates using WUApiLib +# IUpdates +Checks Windows updates using WUApiLib diff --git a/updates.sln b/updates.sln new file mode 100644 index 0000000..99fcd31 --- /dev/null +++ b/updates.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.106 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "updates", "updates\updates.csproj", "{7CBF534F-0A59-4C9B-906B-A2BB812C7776}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7CBF534F-0A59-4C9B-906B-A2BB812C7776}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7CBF534F-0A59-4C9B-906B-A2BB812C7776}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7CBF534F-0A59-4C9B-906B-A2BB812C7776}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7CBF534F-0A59-4C9B-906B-A2BB812C7776}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3056D562-08AE-4694-A4C6-0B122646E43C} + EndGlobalSection +EndGlobal diff --git a/updates/Class1.cs b/updates/Class1.cs new file mode 100644 index 0000000..85e1405 --- /dev/null +++ b/updates/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace updates +{ + public class Class1 + { + } +} diff --git a/updates/Properties/AssemblyInfo.cs b/updates/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..91f5fcf --- /dev/null +++ b/updates/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("updates")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("updates")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[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("7cbf534f-0a59-4c9b-906b-a2bb812c7776")] + +// 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")] diff --git a/updates/updates.csproj b/updates/updates.csproj new file mode 100644 index 0000000..aa4635c --- /dev/null +++ b/updates/updates.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + 7cbf534f-0a59-4c9b-906b-a2bb812c7776 + Library + Properties + updates + updates + v4.6.1 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + +