commit 72a858431f1cc4197eb4e235da28d7267b8bf915 Author: Pablu23 <43807157+Pablu23@users.noreply.github.com> Date: Thu Jun 25 11:46:24 2020 +0200 First commit, nothing changed diff --git a/App.config b/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ConvertTo16x16.csproj b/ConvertTo16x16.csproj new file mode 100644 index 0000000..223769b --- /dev/null +++ b/ConvertTo16x16.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC} + Exe + ConvertTo16x16 + ConvertTo16x16 + 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/ConvertTo16x16.sln b/ConvertTo16x16.sln new file mode 100644 index 0000000..150cb5b --- /dev/null +++ b/ConvertTo16x16.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29411.108 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConvertTo16x16", "ConvertTo16x16.csproj", "{5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5F73E553-AD91-4D2A-9EC5-5CB3EAF9ECFC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B722E2EE-40EC-4712-A074-E3373886A603} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..ce84dbd --- /dev/null +++ b/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConvertTo16x16 +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..568de7e --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("ConvertTo16x16")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ConvertTo16x16")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("5f73e553-ad91-4d2a-9ec5-5cb3eaf9ecfc")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/obj/Debug/ConvertTo16x16.csprojAssemblyReference.cache b/obj/Debug/ConvertTo16x16.csprojAssemblyReference.cache new file mode 100644 index 0000000..9c7cfcd Binary files /dev/null and b/obj/Debug/ConvertTo16x16.csprojAssemblyReference.cache differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..e74b5a3 Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ