From 2e235ee0cd0fe02b22027e010fce3479d5214673 Mon Sep 17 00:00:00 2001 From: Creepycrafter Playername Date: Tue, 26 Feb 2019 14:29:15 +0100 Subject: [PATCH] Content --- WinPart.sln | 25 ++++++++++++++ WinPart/App.config | 6 ++++ WinPart/Program.cs | 15 +++++++++ WinPart/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++ WinPart/WinPart.csproj | 53 ++++++++++++++++++++++++++++++ 5 files changed, 135 insertions(+) create mode 100644 WinPart.sln create mode 100644 WinPart/App.config create mode 100644 WinPart/Program.cs create mode 100644 WinPart/Properties/AssemblyInfo.cs create mode 100644 WinPart/WinPart.csproj diff --git a/WinPart.sln b/WinPart.sln new file mode 100644 index 0000000..d3ca6fb --- /dev/null +++ b/WinPart.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.421 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinPart", "WinPart\WinPart.csproj", "{2EF21D5A-1476-4C07-8D1F-5440231547AE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2EF21D5A-1476-4C07-8D1F-5440231547AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2EF21D5A-1476-4C07-8D1F-5440231547AE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2EF21D5A-1476-4C07-8D1F-5440231547AE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2EF21D5A-1476-4C07-8D1F-5440231547AE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EB67C7E1-D8E9-458F-A9E8-08BD028F1F08} + EndGlobalSection +EndGlobal diff --git a/WinPart/App.config b/WinPart/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/WinPart/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WinPart/Program.cs b/WinPart/Program.cs new file mode 100644 index 0000000..3ca37e0 --- /dev/null +++ b/WinPart/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace WinPart +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/WinPart/Properties/AssemblyInfo.cs b/WinPart/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b9a12b7 --- /dev/null +++ b/WinPart/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("WinPart")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WinPart")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[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("2ef21d5a-1476-4c07-8d1f-5440231547ae")] + +// 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/WinPart/WinPart.csproj b/WinPart/WinPart.csproj new file mode 100644 index 0000000..4182c9a --- /dev/null +++ b/WinPart/WinPart.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {2EF21D5A-1476-4C07-8D1F-5440231547AE} + Exe + WinPart + WinPart + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file