diff --git a/software/1_sem/01_customer_management/customer_management.sln b/software/1_sem/se-01_customer_management/customer_management.sln similarity index 100% rename from software/1_sem/01_customer_management/customer_management.sln rename to software/1_sem/se-01_customer_management/customer_management.sln diff --git a/software/1_sem/01_customer_management/customer_management/App.config b/software/1_sem/se-01_customer_management/customer_management/App.config similarity index 100% rename from software/1_sem/01_customer_management/customer_management/App.config rename to software/1_sem/se-01_customer_management/customer_management/App.config diff --git a/software/1_sem/01_customer_management/customer_management/Customer.cs b/software/1_sem/se-01_customer_management/customer_management/Customer.cs similarity index 100% rename from software/1_sem/01_customer_management/customer_management/Customer.cs rename to software/1_sem/se-01_customer_management/customer_management/Customer.cs diff --git a/software/1_sem/01_customer_management/customer_management/Program.cs b/software/1_sem/se-01_customer_management/customer_management/Program.cs similarity index 100% rename from software/1_sem/01_customer_management/customer_management/Program.cs rename to software/1_sem/se-01_customer_management/customer_management/Program.cs diff --git a/software/1_sem/01_customer_management/customer_management/Properties/AssemblyInfo.cs b/software/1_sem/se-01_customer_management/customer_management/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/01_customer_management/customer_management/Properties/AssemblyInfo.cs rename to software/1_sem/se-01_customer_management/customer_management/Properties/AssemblyInfo.cs diff --git a/software/1_sem/01_customer_management/customer_management/customer_management.csproj b/software/1_sem/se-01_customer_management/customer_management/customer_management.csproj similarity index 100% rename from software/1_sem/01_customer_management/customer_management/customer_management.csproj rename to software/1_sem/se-01_customer_management/customer_management/customer_management.csproj diff --git a/software/1_sem/02_consoleApp1/ConsoleApp1.sln b/software/1_sem/se-02_consoleApp1/ConsoleApp1.sln similarity index 97% rename from software/1_sem/02_consoleApp1/ConsoleApp1.sln rename to software/1_sem/se-02_consoleApp1/ConsoleApp1.sln index e84acf9..0a91b5f 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1.sln +++ b/software/1_sem/se-02_consoleApp1/ConsoleApp1.sln @@ -1,22 +1,22 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26403.7 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26403.7 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/software/1_sem/03_first_app/first_app/App.config b/software/1_sem/se-02_consoleApp1/ConsoleApp1/App.config similarity index 100% rename from software/1_sem/03_first_app/first_app/App.config rename to software/1_sem/se-02_consoleApp1/ConsoleApp1/App.config diff --git a/software/1_sem/02_consoleApp1/ConsoleApp1/Calculator.cs b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Calculator.cs similarity index 96% rename from software/1_sem/02_consoleApp1/ConsoleApp1/Calculator.cs rename to software/1_sem/se-02_consoleApp1/ConsoleApp1/Calculator.cs index c7987d1..cbede8d 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1/Calculator.cs +++ b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Calculator.cs @@ -1,33 +1,33 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Diagnostics; - -namespace ConsoleApp1 -{ - class Calculator - { - public static void StartCalc() - { - var processInfo = new ProcessStartInfo - { - FileName = "calc.exe", - }; - - using (var process = Process.Start(processInfo)) - { - process.Start(); - } - } - public static void IsProcessRunning(string sProcessName) - { - Process[] proc = System.Diagnostics.Process.GetProcessesByName(sProcessName); - while (proc.Length > 0) - { - Console.WriteLine("calc.exe beendet"); - } - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Diagnostics; + +namespace ConsoleApp1 +{ + class Calculator + { + public static void StartCalc() + { + var processInfo = new ProcessStartInfo + { + FileName = "calc.exe", + }; + + using (var process = Process.Start(processInfo)) + { + process.Start(); + } + } + public static void IsProcessRunning(string sProcessName) + { + Process[] proc = System.Diagnostics.Process.GetProcessesByName(sProcessName); + while (proc.Length > 0) + { + Console.WriteLine("calc.exe beendet"); + } + } + } +} diff --git a/software/1_sem/02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj b/software/1_sem/se-02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj similarity index 97% rename from software/1_sem/02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj rename to software/1_sem/se-02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj index 7af53fd..e209968 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj +++ b/software/1_sem/se-02_consoleApp1/ConsoleApp1/ConsoleApp1.csproj @@ -1,53 +1,53 @@ - - - - - Debug - AnyCPU - {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0} - Exe - ConsoleApp1 - ConsoleApp1 - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - + + + + + Debug + AnyCPU + {96F5B37F-FF2E-470A-BD49-44B2C1CDB5D0} + Exe + ConsoleApp1 + ConsoleApp1 + v4.5.2 + 512 + 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/software/1_sem/02_consoleApp1/ConsoleApp1/Program.cs b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Program.cs similarity index 95% rename from software/1_sem/02_consoleApp1/ConsoleApp1/Program.cs rename to software/1_sem/se-02_consoleApp1/ConsoleApp1/Program.cs index f0e622d..5e9aa13 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1/Program.cs +++ b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Program.cs @@ -1,18 +1,18 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace ConsoleApp1 -{ - class Program - { - static void Main(string[] args) - { - Calculator.StartCalc(); - Calculator.IsProcessRunning("Calculator.exe"); - Console.ReadKey(); - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConsoleApp1 +{ + class Program + { + static void Main(string[] args) + { + Calculator.StartCalc(); + Calculator.IsProcessRunning("Calculator.exe"); + Console.ReadKey(); + } + } +} diff --git a/software/1_sem/02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs similarity index 97% rename from software/1_sem/02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs rename to software/1_sem/se-02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs index 5c9c6b5..6bfd844 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs +++ b/software/1_sem/se-02_consoleApp1/ConsoleApp1/Properties/AssemblyInfo.cs @@ -1,36 +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("ConsoleApp1")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("ConsoleApp1")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("96f5b37f-ff2e-470a-bd49-44b2c1cdb5d0")] - -// 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")] +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("ConsoleApp1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ConsoleApp1")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("96f5b37f-ff2e-470a-bd49-44b2c1cdb5d0")] + +// 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/software/1_sem/03_first_app/first_app.sln b/software/1_sem/se-03_first_app/first_app.sln similarity index 100% rename from software/1_sem/03_first_app/first_app.sln rename to software/1_sem/se-03_first_app/first_app.sln diff --git a/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/App.config b/software/1_sem/se-03_first_app/first_app/App.config similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/App.config rename to software/1_sem/se-03_first_app/first_app/App.config diff --git a/software/1_sem/03_first_app/first_app/Calculator.cs b/software/1_sem/se-03_first_app/first_app/Calculator.cs similarity index 100% rename from software/1_sem/03_first_app/first_app/Calculator.cs rename to software/1_sem/se-03_first_app/first_app/Calculator.cs diff --git a/software/1_sem/03_first_app/first_app/Car.cs b/software/1_sem/se-03_first_app/first_app/Car.cs similarity index 100% rename from software/1_sem/03_first_app/first_app/Car.cs rename to software/1_sem/se-03_first_app/first_app/Car.cs diff --git a/software/1_sem/03_first_app/first_app/Program.cs b/software/1_sem/se-03_first_app/first_app/Program.cs similarity index 100% rename from software/1_sem/03_first_app/first_app/Program.cs rename to software/1_sem/se-03_first_app/first_app/Program.cs diff --git a/software/1_sem/03_first_app/first_app/Properties/AssemblyInfo.cs b/software/1_sem/se-03_first_app/first_app/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/03_first_app/first_app/Properties/AssemblyInfo.cs rename to software/1_sem/se-03_first_app/first_app/Properties/AssemblyInfo.cs diff --git a/software/1_sem/03_first_app/first_app/first_app.csproj b/software/1_sem/se-03_first_app/first_app/first_app.csproj similarity index 100% rename from software/1_sem/03_first_app/first_app/first_app.csproj rename to software/1_sem/se-03_first_app/first_app/first_app.csproj diff --git a/software/1_sem/04_string_length/string_length.sln b/software/1_sem/se-04_string_length/string_length.sln similarity index 97% rename from software/1_sem/04_string_length/string_length.sln rename to software/1_sem/se-04_string_length/string_length.sln index fa469f8..44175ee 100644 --- a/software/1_sem/04_string_length/string_length.sln +++ b/software/1_sem/se-04_string_length/string_length.sln @@ -1,22 +1,22 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26403.7 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "string_length", "string_length\string_length.csproj", "{6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Debug|Any CPU.Build.0 = Debug|Any CPU - {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Release|Any CPU.ActiveCfg = Release|Any CPU - {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26403.7 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "string_length", "string_length\string_length.csproj", "{6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/software/1_sem/adonet/ConsoleApp1/App.config b/software/1_sem/se-04_string_length/string_length/App.config similarity index 100% rename from software/1_sem/adonet/ConsoleApp1/App.config rename to software/1_sem/se-04_string_length/string_length/App.config diff --git a/software/1_sem/04_string_length/string_length/LengthCounter.cs b/software/1_sem/se-04_string_length/string_length/LengthCounter.cs similarity index 96% rename from software/1_sem/04_string_length/string_length/LengthCounter.cs rename to software/1_sem/se-04_string_length/string_length/LengthCounter.cs index 9b9eeba..94ba719 100644 --- a/software/1_sem/04_string_length/string_length/LengthCounter.cs +++ b/software/1_sem/se-04_string_length/string_length/LengthCounter.cs @@ -1,29 +1,29 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace string_length -{ - static class LengthCounter - { - public static void CountStringLength(string input) - { - if (input.Length <= 5 && input.Length > 0) - { Console.WriteLine("1-5"); } - else if (input.Length >= 6 && input.Length <= 15) - { - Console.WriteLine("6-15"); - } - else if (input.Length > 16) - { - Console.WriteLine("16+"); - } - else - { - Console.WriteLine("Ungültig"); - } - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace string_length +{ + static class LengthCounter + { + public static void CountStringLength(string input) + { + if (input.Length <= 5 && input.Length > 0) + { Console.WriteLine("1-5"); } + else if (input.Length >= 6 && input.Length <= 15) + { + Console.WriteLine("6-15"); + } + else if (input.Length > 16) + { + Console.WriteLine("16+"); + } + else + { + Console.WriteLine("Ungültig"); + } + } + } +} diff --git a/software/1_sem/04_string_length/string_length/Program.cs b/software/1_sem/se-04_string_length/string_length/Program.cs similarity index 95% rename from software/1_sem/04_string_length/string_length/Program.cs rename to software/1_sem/se-04_string_length/string_length/Program.cs index 0b47f19..901c059 100644 --- a/software/1_sem/04_string_length/string_length/Program.cs +++ b/software/1_sem/se-04_string_length/string_length/Program.cs @@ -1,18 +1,18 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace string_length -{ - class Program - { - - static void Main(string[] args) - { - LengthCounter.CountStringLength(Console.ReadLine()); - Console.ReadKey(); - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace string_length +{ + class Program + { + + static void Main(string[] args) + { + LengthCounter.CountStringLength(Console.ReadLine()); + Console.ReadKey(); + } + } +} diff --git a/software/1_sem/04_string_length/string_length/Properties/AssemblyInfo.cs b/software/1_sem/se-04_string_length/string_length/Properties/AssemblyInfo.cs similarity index 97% rename from software/1_sem/04_string_length/string_length/Properties/AssemblyInfo.cs rename to software/1_sem/se-04_string_length/string_length/Properties/AssemblyInfo.cs index bc47f20..2b33a82 100644 --- a/software/1_sem/04_string_length/string_length/Properties/AssemblyInfo.cs +++ b/software/1_sem/se-04_string_length/string_length/Properties/AssemblyInfo.cs @@ -1,36 +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("string_length")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("string_length")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("6bdb3331-a8fb-49e6-b548-0edc8f69b2f3")] - -// 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")] +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("string_length")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("string_length")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("6bdb3331-a8fb-49e6-b548-0edc8f69b2f3")] + +// 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/software/1_sem/04_string_length/string_length/string_length.csproj b/software/1_sem/se-04_string_length/string_length/string_length.csproj similarity index 97% rename from software/1_sem/04_string_length/string_length/string_length.csproj rename to software/1_sem/se-04_string_length/string_length/string_length.csproj index 20e8c0c..90a293b 100644 --- a/software/1_sem/04_string_length/string_length/string_length.csproj +++ b/software/1_sem/se-04_string_length/string_length/string_length.csproj @@ -1,53 +1,53 @@ - - - - - Debug - AnyCPU - {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3} - Exe - string_length - string_length - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - + + + + + Debug + AnyCPU + {6BDB3331-A8FB-49E6-B548-0EDC8F69B2F3} + Exe + string_length + string_length + v4.5.2 + 512 + 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/software/1_sem/05_calculator/calculator.sln b/software/1_sem/se-05_calculator/calculator.sln similarity index 97% rename from software/1_sem/05_calculator/calculator.sln rename to software/1_sem/se-05_calculator/calculator.sln index 92b574b..9a12893 100644 --- a/software/1_sem/05_calculator/calculator.sln +++ b/software/1_sem/se-05_calculator/calculator.sln @@ -1,22 +1,22 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26403.7 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "calculator", "calculator\calculator.csproj", "{F8D33850-0601-41CB-89AB-E347AD7309DB}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F8D33850-0601-41CB-89AB-E347AD7309DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F8D33850-0601-41CB-89AB-E347AD7309DB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F8D33850-0601-41CB-89AB-E347AD7309DB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F8D33850-0601-41CB-89AB-E347AD7309DB}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26403.7 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "calculator", "calculator\calculator.csproj", "{F8D33850-0601-41CB-89AB-E347AD7309DB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F8D33850-0601-41CB-89AB-E347AD7309DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F8D33850-0601-41CB-89AB-E347AD7309DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F8D33850-0601-41CB-89AB-E347AD7309DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F8D33850-0601-41CB-89AB-E347AD7309DB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/software/1_sem/02_consoleApp1/ConsoleApp1/App.config b/software/1_sem/se-05_calculator/calculator/App.config similarity index 88% rename from software/1_sem/02_consoleApp1/ConsoleApp1/App.config rename to software/1_sem/se-05_calculator/calculator/App.config index d740e88..88fa402 100644 --- a/software/1_sem/02_consoleApp1/ConsoleApp1/App.config +++ b/software/1_sem/se-05_calculator/calculator/App.config @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/software/1_sem/05_calculator/calculator/Converter.cs b/software/1_sem/se-05_calculator/calculator/Converter.cs similarity index 95% rename from software/1_sem/05_calculator/calculator/Converter.cs rename to software/1_sem/se-05_calculator/calculator/Converter.cs index aac62be..cd86eff 100644 --- a/software/1_sem/05_calculator/calculator/Converter.cs +++ b/software/1_sem/se-05_calculator/calculator/Converter.cs @@ -1,29 +1,29 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace calculator -{ - static class Converter - { - public static double NauticalMiles = 0.566; - public static double KmToNm (double _input) - { - return _input * NauticalMiles; - } - - public static double SquareRootOfPi () - { - return Math.Sqrt(Math.PI); - } - - - public static int ReturnLengthOfString(string _input) - { - return _input.Length; - } - - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace calculator +{ + static class Converter + { + public static double NauticalMiles = 0.566; + public static double KmToNm (double _input) + { + return _input * NauticalMiles; + } + + public static double SquareRootOfPi () + { + return Math.Sqrt(Math.PI); + } + + + public static int ReturnLengthOfString(string _input) + { + return _input.Length; + } + + } +} diff --git a/software/1_sem/05_calculator/calculator/Program.cs b/software/1_sem/se-05_calculator/calculator/Program.cs similarity index 96% rename from software/1_sem/05_calculator/calculator/Program.cs rename to software/1_sem/se-05_calculator/calculator/Program.cs index d0fbf8f..cd67ec8 100644 --- a/software/1_sem/05_calculator/calculator/Program.cs +++ b/software/1_sem/se-05_calculator/calculator/Program.cs @@ -1,19 +1,19 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace calculator -{ - class Program - { - static void Main(string[] args) - { - Console.WriteLine(Converter.KmToNm(2345.5)); - Console.WriteLine(Converter.SquareRootOfPi()); - Console.WriteLine(Converter.ReturnLengthOfString("Dies ist ein Langer String")); - Console.ReadKey(); - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace calculator +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine(Converter.KmToNm(2345.5)); + Console.WriteLine(Converter.SquareRootOfPi()); + Console.WriteLine(Converter.ReturnLengthOfString("Dies ist ein Langer String")); + Console.ReadKey(); + } + } +} diff --git a/software/1_sem/05_calculator/calculator/Properties/AssemblyInfo.cs b/software/1_sem/se-05_calculator/calculator/Properties/AssemblyInfo.cs similarity index 97% rename from software/1_sem/05_calculator/calculator/Properties/AssemblyInfo.cs rename to software/1_sem/se-05_calculator/calculator/Properties/AssemblyInfo.cs index 3f6870c..9a2d973 100644 --- a/software/1_sem/05_calculator/calculator/Properties/AssemblyInfo.cs +++ b/software/1_sem/se-05_calculator/calculator/Properties/AssemblyInfo.cs @@ -1,36 +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("calculator")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("calculator")] -[assembly: AssemblyCopyright("Copyright © 2017")] -[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("f8d33850-0601-41cb-89ab-e347ad7309db")] - -// 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")] +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("calculator")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("calculator")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("f8d33850-0601-41cb-89ab-e347ad7309db")] + +// 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/software/1_sem/05_calculator/calculator/calculator.csproj b/software/1_sem/se-05_calculator/calculator/calculator.csproj similarity index 97% rename from software/1_sem/05_calculator/calculator/calculator.csproj rename to software/1_sem/se-05_calculator/calculator/calculator.csproj index c45bab6..8705137 100644 --- a/software/1_sem/05_calculator/calculator/calculator.csproj +++ b/software/1_sem/se-05_calculator/calculator/calculator.csproj @@ -1,53 +1,53 @@ - - - - - Debug - AnyCPU - {F8D33850-0601-41CB-89AB-E347AD7309DB} - Exe - calculator - calculator - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - + + + + + Debug + AnyCPU + {F8D33850-0601-41CB-89AB-E347AD7309DB} + Exe + calculator + calculator + v4.5.2 + 512 + 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/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung.sln b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung.sln similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung.sln rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung.sln diff --git a/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Animal.cs b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Animal.cs similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Animal.cs rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Animal.cs diff --git a/software/1_sem/05_calculator/calculator/App.config b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/App.config similarity index 88% rename from software/1_sem/05_calculator/calculator/App.config rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/App.config index d740e88..88fa402 100644 --- a/software/1_sem/05_calculator/calculator/App.config +++ b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/App.config @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/IBZ-Vererbung.csproj b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/IBZ-Vererbung.csproj similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/IBZ-Vererbung.csproj rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/IBZ-Vererbung.csproj diff --git a/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Program.cs b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Program.cs similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Program.cs rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Program.cs diff --git a/software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Properties/AssemblyInfo.cs b/software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/06_IBZ-Vererbung/IBZ-Vererbung/Properties/AssemblyInfo.cs rename to software/1_sem/se-06_IBZ-Vererbung/IBZ-Vererbung/Properties/AssemblyInfo.cs diff --git a/software/1_sem/iterations/iterations.sln b/software/1_sem/se-07-iterations/iterations.sln similarity index 100% rename from software/1_sem/iterations/iterations.sln rename to software/1_sem/se-07-iterations/iterations.sln diff --git a/software/1_sem/iterations/iterations/Program.cs b/software/1_sem/se-07-iterations/iterations/Program.cs similarity index 100% rename from software/1_sem/iterations/iterations/Program.cs rename to software/1_sem/se-07-iterations/iterations/Program.cs diff --git a/software/1_sem/iterations/iterations/Properties/AssemblyInfo.cs b/software/1_sem/se-07-iterations/iterations/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/iterations/iterations/Properties/AssemblyInfo.cs rename to software/1_sem/se-07-iterations/iterations/Properties/AssemblyInfo.cs diff --git a/software/1_sem/iterations/iterations/iterations.csproj b/software/1_sem/se-07-iterations/iterations/iterations.csproj similarity index 100% rename from software/1_sem/iterations/iterations/iterations.csproj rename to software/1_sem/se-07-iterations/iterations/iterations.csproj diff --git a/software/1_sem/arrays/arrays.sln b/software/1_sem/se-08-arrays/arrays.sln similarity index 100% rename from software/1_sem/arrays/arrays.sln rename to software/1_sem/se-08-arrays/arrays.sln diff --git a/software/1_sem/arrays/arrays/Program.cs b/software/1_sem/se-08-arrays/arrays/Program.cs similarity index 100% rename from software/1_sem/arrays/arrays/Program.cs rename to software/1_sem/se-08-arrays/arrays/Program.cs diff --git a/software/1_sem/arrays/arrays/Properties/AssemblyInfo.cs b/software/1_sem/se-08-arrays/arrays/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/arrays/arrays/Properties/AssemblyInfo.cs rename to software/1_sem/se-08-arrays/arrays/Properties/AssemblyInfo.cs diff --git a/software/1_sem/arrays/arrays/arrays.csproj b/software/1_sem/se-08-arrays/arrays/arrays.csproj similarity index 100% rename from software/1_sem/arrays/arrays/arrays.csproj rename to software/1_sem/se-08-arrays/arrays/arrays.csproj diff --git a/software/1_sem/car_array/car_array.sln b/software/1_sem/se-09-car_array/car_array.sln similarity index 100% rename from software/1_sem/car_array/car_array.sln rename to software/1_sem/se-09-car_array/car_array.sln diff --git a/software/1_sem/car_array/car_array/Auto.cs b/software/1_sem/se-09-car_array/car_array/Auto.cs similarity index 100% rename from software/1_sem/car_array/car_array/Auto.cs rename to software/1_sem/se-09-car_array/car_array/Auto.cs diff --git a/software/1_sem/car_array/car_array/Program.cs b/software/1_sem/se-09-car_array/car_array/Program.cs similarity index 100% rename from software/1_sem/car_array/car_array/Program.cs rename to software/1_sem/se-09-car_array/car_array/Program.cs diff --git a/software/1_sem/car_array/car_array/Properties/AssemblyInfo.cs b/software/1_sem/se-09-car_array/car_array/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/car_array/car_array/Properties/AssemblyInfo.cs rename to software/1_sem/se-09-car_array/car_array/Properties/AssemblyInfo.cs diff --git a/software/1_sem/car_array/car_array/car_array.csproj b/software/1_sem/se-09-car_array/car_array/car_array.csproj similarity index 100% rename from software/1_sem/car_array/car_array/car_array.csproj rename to software/1_sem/se-09-car_array/car_array/car_array.csproj diff --git a/software/1_sem/collections/collections.sln b/software/1_sem/se-10-collections/collections.sln similarity index 100% rename from software/1_sem/collections/collections.sln rename to software/1_sem/se-10-collections/collections.sln diff --git a/software/1_sem/collections/collections/CD.cs b/software/1_sem/se-10-collections/collections/CD.cs similarity index 100% rename from software/1_sem/collections/collections/CD.cs rename to software/1_sem/se-10-collections/collections/CD.cs diff --git a/software/1_sem/collections/collections/Program.cs b/software/1_sem/se-10-collections/collections/Program.cs similarity index 100% rename from software/1_sem/collections/collections/Program.cs rename to software/1_sem/se-10-collections/collections/Program.cs diff --git a/software/1_sem/collections/collections/Properties/AssemblyInfo.cs b/software/1_sem/se-10-collections/collections/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/collections/collections/Properties/AssemblyInfo.cs rename to software/1_sem/se-10-collections/collections/Properties/AssemblyInfo.cs diff --git a/software/1_sem/collections/collections/collections.csproj b/software/1_sem/se-10-collections/collections/collections.csproj similarity index 100% rename from software/1_sem/collections/collections/collections.csproj rename to software/1_sem/se-10-collections/collections/collections.csproj diff --git a/software/1_sem/adonet/ConsoleApp1.sln b/software/1_sem/se-11-adonet/ConsoleApp1.sln similarity index 100% rename from software/1_sem/adonet/ConsoleApp1.sln rename to software/1_sem/se-11-adonet/ConsoleApp1.sln diff --git a/software/1_sem/04_string_length/string_length/App.config b/software/1_sem/se-11-adonet/ConsoleApp1/App.config similarity index 88% rename from software/1_sem/04_string_length/string_length/App.config rename to software/1_sem/se-11-adonet/ConsoleApp1/App.config index d740e88..88fa402 100644 --- a/software/1_sem/04_string_length/string_length/App.config +++ b/software/1_sem/se-11-adonet/ConsoleApp1/App.config @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/software/1_sem/adonet/ConsoleApp1/ConsoleApp1.csproj b/software/1_sem/se-11-adonet/ConsoleApp1/ConsoleApp1.csproj similarity index 100% rename from software/1_sem/adonet/ConsoleApp1/ConsoleApp1.csproj rename to software/1_sem/se-11-adonet/ConsoleApp1/ConsoleApp1.csproj diff --git a/software/1_sem/adonet/ConsoleApp1/Program.cs b/software/1_sem/se-11-adonet/ConsoleApp1/Program.cs similarity index 100% rename from software/1_sem/adonet/ConsoleApp1/Program.cs rename to software/1_sem/se-11-adonet/ConsoleApp1/Program.cs diff --git a/software/1_sem/adonet/ConsoleApp1/Properties/AssemblyInfo.cs b/software/1_sem/se-11-adonet/ConsoleApp1/Properties/AssemblyInfo.cs similarity index 100% rename from software/1_sem/adonet/ConsoleApp1/Properties/AssemblyInfo.cs rename to software/1_sem/se-11-adonet/ConsoleApp1/Properties/AssemblyInfo.cs diff --git a/software/1_sem/se-12-log-entry/se-12-log-entry.sln b/software/1_sem/se-12-log-entry/se-12-log-entry.sln new file mode 100644 index 0000000..1d2d3d9 --- /dev/null +++ b/software/1_sem/se-12-log-entry/se-12-log-entry.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.0.0 +MinimumVisualStudioVersion = 10.0.0.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "se_12_log_entry", "se-12-log-entry/se-12-log-entry.csproj", "{F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs b/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs new file mode 100644 index 0000000..fba18df --- /dev/null +++ b/software/1_sem/se-12-log-entry/se-12-log-entry/Program.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; + +namespace se_12_log_entry +{ + internal class Program + { + public static void Main(string[] args) + { + } + } +} \ No newline at end of file diff --git a/software/1_sem/se-12-log-entry/se-12-log-entry/Properties/AssemblyInfo.cs b/software/1_sem/se-12-log-entry/se-12-log-entry/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b61f27f --- /dev/null +++ b/software/1_sem/se-12-log-entry/se-12-log-entry/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("se_12_log_entry")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("se_12_log_entry")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5")] + +// 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")] \ No newline at end of file diff --git a/software/1_sem/se-12-log-entry/se-12-log-entry/se-12-log-entry.csproj b/software/1_sem/se-12-log-entry/se-12-log-entry/se-12-log-entry.csproj new file mode 100644 index 0000000..1507058 --- /dev/null +++ b/software/1_sem/se-12-log-entry/se-12-log-entry/se-12-log-entry.csproj @@ -0,0 +1,56 @@ + + + + + Debug + AnyCPU + {F11D2D1B-A9FA-45E5-992E-FAE4D022DEB5} + {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + Properties + se_12_log_entry + se_12_log_entry + v4.5 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + +