diff --git a/LancoltLista.sln b/LancoltLista.sln new file mode 100644 index 0000000..039c7f0 --- /dev/null +++ b/LancoltLista.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35303.130 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LancoltLista", "LancoltLista\LancoltLista.csproj", "{51EC470E-D6C2-4D18-914F-9E07BCF35C75}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {51EC470E-D6C2-4D18-914F-9E07BCF35C75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {51EC470E-D6C2-4D18-914F-9E07BCF35C75}.Debug|Any CPU.Build.0 = Debug|Any CPU + {51EC470E-D6C2-4D18-914F-9E07BCF35C75}.Release|Any CPU.ActiveCfg = Release|Any CPU + {51EC470E-D6C2-4D18-914F-9E07BCF35C75}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E9970109-9083-49CA-8E00-51D8F04007C5} + EndGlobalSection +EndGlobal diff --git a/LancoltLista/App.config b/LancoltLista/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/LancoltLista/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/LancoltLista/LancoltLista.csproj b/LancoltLista/LancoltLista.csproj new file mode 100644 index 0000000..410fc48 --- /dev/null +++ b/LancoltLista/LancoltLista.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {51EC470E-D6C2-4D18-914F-9E07BCF35C75} + Exe + LancoltLista + LancoltLista + 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 diff --git a/LancoltLista/Program.cs b/LancoltLista/Program.cs new file mode 100644 index 0000000..1100264 --- /dev/null +++ b/LancoltLista/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LancoltLista +{ + internal class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/LancoltLista/Properties/AssemblyInfo.cs b/LancoltLista/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..e1452f6 --- /dev/null +++ b/LancoltLista/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +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("LancoltLista")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("LancoltLista")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[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("51ec470e-d6c2-4d18-914f-9e07bcf35c75")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]