diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/DesignTimeBuild/.dtbcache.v2 b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/DesignTimeBuild/.dtbcache.v2 index 95f7ae6..e1fd248 100644 Binary files a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/DesignTimeBuild/.dtbcache.v2 and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/DesignTimeBuild/.dtbcache.v2 differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/0575d255-1ef0-4d1d-81a5-d8e8bfcba711.vsidx b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/0575d255-1ef0-4d1d-81a5-d8e8bfcba711.vsidx new file mode 100644 index 0000000..d1793dd Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/0575d255-1ef0-4d1d-81a5-d8e8bfcba711.vsidx differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/1a6e3e3a-c7e1-431c-862d-866680559ea1.vsidx b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/1a6e3e3a-c7e1-431c-862d-866680559ea1.vsidx deleted file mode 100644 index f86fcbc..0000000 Binary files a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/1a6e3e3a-c7e1-431c-862d-866680559ea1.vsidx and /dev/null differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/490a9337-6d62-493b-90e1-9bb8054fff72.vsidx b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/490a9337-6d62-493b-90e1-9bb8054fff72.vsidx new file mode 100644 index 0000000..9f01134 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/FileContentIndex/490a9337-6d62-493b-90e1-9bb8054fff72.vsidx differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/.suo b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/.suo index 01c4bae..34e4246 100644 Binary files a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/.suo and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/.suo differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/000.testlog b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/000.testlog new file mode 100644 index 0000000..6bbf10e Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/000.testlog differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/testlog.manifest b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/testlog.manifest new file mode 100644 index 0000000..e92ede2 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/.vs/FirstProgram/v17/TestStore/0/testlog.manifest differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Cisla.csproj b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Cisla.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Cisla.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Program.cs b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Program.cs new file mode 100644 index 0000000..4e3d30f --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/Program.cs @@ -0,0 +1,15 @@ +namespace Cisla +{ + internal class Program + { + static void Main(string[] args) + { + int result = 0; + + result = (5 + 6) * 2; + + Console.WriteLine(result); + Console.ReadLine(); + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.deps.json b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.deps.json new file mode 100644 index 0000000..fcc0430 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "Cisla/1.0.0": { + "runtime": { + "Cisla.dll": {} + } + } + } + }, + "libraries": { + "Cisla/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.dll b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.dll new file mode 100644 index 0000000..a69abd1 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.exe b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.exe new file mode 100644 index 0000000..579b2c8 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.pdb b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.pdb new file mode 100644 index 0000000..b41b336 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.runtimeconfig.json b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/bin/Debug/net7.0/Cisla.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.dgspec.json b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b06fd6f --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj": {} + }, + "projects": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj", + "projectName": "Cisla", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.props b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.props new file mode 100644 index 0000000..4270eed --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\lukas\.nuget\packages\ + PackageReference + 6.7.0 + + + + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.targets b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Cisla.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfo.cs b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfo.cs new file mode 100644 index 0000000..f5a5575 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Cisla")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Cisla")] +[assembly: System.Reflection.AssemblyTitleAttribute("Cisla")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfoInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfoInputs.cache new file mode 100644 index 0000000..694feb4 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +51980f27c31f3103994ade650d3dc6b91949fad1 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GeneratedMSBuildEditorConfig.editorconfig b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..09105a5 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Cisla +build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GlobalUsings.g.cs b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.assets.cache b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.assets.cache new file mode 100644 index 0000000..7568854 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.assets.cache differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.BuildWithSkipAnalyzers b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.CoreCompileInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..61afea7 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ed20d393da98ab63041a8b2fc676735a83aa4148 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.FileListAbsolute.txt b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c8de129 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\bin\Debug\net7.0\Cisla.exe +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\bin\Debug\net7.0\Cisla.deps.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\bin\Debug\net7.0\Cisla.runtimeconfig.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\bin\Debug\net7.0\Cisla.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\bin\Debug\net7.0\Cisla.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.AssemblyInfoInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.AssemblyInfo.cs +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.csproj.CoreCompileInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\refint\Cisla.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\Cisla.genruntimeconfig.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Cisla\obj\Debug\net7.0\ref\Cisla.dll diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.dll b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.dll new file mode 100644 index 0000000..a69abd1 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.genruntimeconfig.cache b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.genruntimeconfig.cache new file mode 100644 index 0000000..df8ac75 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.genruntimeconfig.cache @@ -0,0 +1 @@ +a8354bf43c20ed8b4fc327df9fc41afbc812bf44 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.pdb b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.pdb new file mode 100644 index 0000000..b41b336 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/Cisla.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/apphost.exe b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/apphost.exe new file mode 100644 index 0000000..579b2c8 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/apphost.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/ref/Cisla.dll b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/ref/Cisla.dll new file mode 100644 index 0000000..57f1796 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/ref/Cisla.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/refint/Cisla.dll b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/refint/Cisla.dll new file mode 100644 index 0000000..57f1796 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/Debug/net7.0/refint/Cisla.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.assets.json b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.assets.json new file mode 100644 index 0000000..55e947e --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.assets.json @@ -0,0 +1,68 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "C:\\Users\\lukas\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj", + "projectName": "Cisla", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.nuget.cache b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.nuget.cache new file mode 100644 index 0000000..96c4a55 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Cisla/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "tJCtIbM7AD5Q6UQg7cDb2ZKB0zjN/J9BTdJ99WVQOBIARQlLmMsPZkOnoMcA0PFRHQt42iJavmyRTSFV3/do0Q==", + "success": true, + "projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Cisla\\Cisla.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/FirstProgram.sln b/C#/C# Basic Udemy Seen/FirstProgram/FirstProgram.sln index fc48ff4..c19b377 100644 --- a/C#/C# Basic Udemy Seen/FirstProgram/FirstProgram.sln +++ b/C#/C# Basic Udemy Seen/FirstProgram/FirstProgram.sln @@ -5,11 +5,17 @@ VisualStudioVersion = 17.7.34018.315 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FirstProgram", "FirstProgram\FirstProgram.csproj", "{8F901E81-AE4D-4D7E-9BCA-4B3ACBBA72F9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProměnneVariables", "Proměnne\ProměnneVariables.csproj", "{3C541B7C-BAAC-4531-94E7-A8AD571D8F1D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProměnneVariables", "Proměnne\ProměnneVariables.csproj", "{3C541B7C-BAAC-4531-94E7-A8AD571D8F1D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DatoveTypy", "DatoveTypy\DatoveTypy.csproj", "{68EEE325-FD9E-4B4E-8BB3-DF8D5CAA4DEB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DatoveTypy", "DatoveTypy\DatoveTypy.csproj", "{68EEE325-FD9E-4B4E-8BB3-DF8D5CAA4DEB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Retezce", "Retezce\Retezce.csproj", "{7CFC35AD-3DBC-4A9D-8211-312C2DB4A6EE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Retezce", "Retezce\Retezce.csproj", "{7CFC35AD-3DBC-4A9D-8211-312C2DB4A6EE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cisla", "Cisla\Cisla.csproj", "{8F123E45-4850-4BB0-A5FA-83BBC2FDD3C9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VstupInput", "VstupInput\VstupInput.csproj", "{51FE4654-35E1-418E-B38C-A41A8029F847}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KalkulackaNasobicka", "Kalkulacka\KalkulackaNasobicka.csproj", "{03E61220-F462-4F1C-A480-C348A617AE30}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -33,6 +39,18 @@ Global {7CFC35AD-3DBC-4A9D-8211-312C2DB4A6EE}.Debug|Any CPU.Build.0 = Debug|Any CPU {7CFC35AD-3DBC-4A9D-8211-312C2DB4A6EE}.Release|Any CPU.ActiveCfg = Release|Any CPU {7CFC35AD-3DBC-4A9D-8211-312C2DB4A6EE}.Release|Any CPU.Build.0 = Release|Any CPU + {8F123E45-4850-4BB0-A5FA-83BBC2FDD3C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F123E45-4850-4BB0-A5FA-83BBC2FDD3C9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F123E45-4850-4BB0-A5FA-83BBC2FDD3C9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F123E45-4850-4BB0-A5FA-83BBC2FDD3C9}.Release|Any CPU.Build.0 = Release|Any CPU + {51FE4654-35E1-418E-B38C-A41A8029F847}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {51FE4654-35E1-418E-B38C-A41A8029F847}.Debug|Any CPU.Build.0 = Debug|Any CPU + {51FE4654-35E1-418E-B38C-A41A8029F847}.Release|Any CPU.ActiveCfg = Release|Any CPU + {51FE4654-35E1-418E-B38C-A41A8029F847}.Release|Any CPU.Build.0 = Release|Any CPU + {03E61220-F462-4F1C-A480-C348A617AE30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {03E61220-F462-4F1C-A480-C348A617AE30}.Debug|Any CPU.Build.0 = Debug|Any CPU + {03E61220-F462-4F1C-A480-C348A617AE30}.Release|Any CPU.ActiveCfg = Release|Any CPU + {03E61220-F462-4F1C-A480-C348A617AE30}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/KalkulackaNasobicka.csproj b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/KalkulackaNasobicka.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/KalkulackaNasobicka.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/Program.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/Program.cs new file mode 100644 index 0000000..ec36f17 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/Program.cs @@ -0,0 +1,18 @@ +namespace Kalkulacka +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Welcome to our number multiplier!"); + Console.WriteLine("What is your first number?"); + int firstNumber = Convert.ToInt32(Console.ReadLine()); + Console.WriteLine("What is your second number"); + int secondNumber = Convert.ToInt32(Console.ReadLine()); + int results = firstNumber * secondNumber; + Console.WriteLine("The result is: " + results); + Console.ReadLine(); + + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.deps.json b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.deps.json new file mode 100644 index 0000000..1315c3e --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "KalkulackaNasobicka/1.0.0": { + "runtime": { + "KalkulackaNasobicka.dll": {} + } + } + } + }, + "libraries": { + "KalkulackaNasobicka/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.dll b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.dll new file mode 100644 index 0000000..be3e5ef Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.exe b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.exe new file mode 100644 index 0000000..f1704b2 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.pdb b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.pdb new file mode 100644 index 0000000..9691f18 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.runtimeconfig.json b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/bin/Debug/net7.0/KalkulackaNasobicka.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfo.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfo.cs new file mode 100644 index 0000000..2310703 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Kalkulacka")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Kalkulacka")] +[assembly: System.Reflection.AssemblyTitleAttribute("Kalkulacka")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfoInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfoInputs.cache new file mode 100644 index 0000000..48bd73d --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +890fc2bca701431c2cbb5c97f6bcdf9251b081ab diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GeneratedMSBuildEditorConfig.editorconfig b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d8cb650 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Kalkulacka +build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GlobalUsings.g.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.assets.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.assets.cache new file mode 100644 index 0000000..72bf20e Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/Kalkulacka.assets.cache differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfo.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfo.cs new file mode 100644 index 0000000..e28b123 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("KalkulackaNasobicka")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("KalkulackaNasobicka")] +[assembly: System.Reflection.AssemblyTitleAttribute("KalkulackaNasobicka")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfoInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3bfecdf --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +834be170410a2279f04c300b1b0d7569804748ba diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GeneratedMSBuildEditorConfig.editorconfig b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..660501f --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = KalkulackaNasobicka +build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GlobalUsings.g.cs b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.assets.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.assets.cache new file mode 100644 index 0000000..5ec202c Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.assets.cache differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.BuildWithSkipAnalyzers b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.CoreCompileInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7b7d279 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6c1ce77d39a6e4cddc011071093ac573c834cf6d diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.FileListAbsolute.txt b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e89f544 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\bin\Debug\net7.0\KalkulackaNasobicka.exe +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\bin\Debug\net7.0\KalkulackaNasobicka.deps.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\bin\Debug\net7.0\KalkulackaNasobicka.runtimeconfig.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\bin\Debug\net7.0\KalkulackaNasobicka.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\bin\Debug\net7.0\KalkulackaNasobicka.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.AssemblyInfoInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.AssemblyInfo.cs +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.csproj.CoreCompileInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\refint\KalkulackaNasobicka.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\KalkulackaNasobicka.genruntimeconfig.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\Kalkulacka\obj\Debug\net7.0\ref\KalkulackaNasobicka.dll diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.dll b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.dll new file mode 100644 index 0000000..be3e5ef Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.genruntimeconfig.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.genruntimeconfig.cache new file mode 100644 index 0000000..8f704ff --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.genruntimeconfig.cache @@ -0,0 +1 @@ +a77f1f0fab48828a23af3e91c5835e6bf7c34bac diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.pdb b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.pdb new file mode 100644 index 0000000..9691f18 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/KalkulackaNasobicka.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/apphost.exe b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/apphost.exe new file mode 100644 index 0000000..f1704b2 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/apphost.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/ref/KalkulackaNasobicka.dll b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/ref/KalkulackaNasobicka.dll new file mode 100644 index 0000000..1183f89 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/ref/KalkulackaNasobicka.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/refint/KalkulackaNasobicka.dll b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/refint/KalkulackaNasobicka.dll new file mode 100644 index 0000000..1183f89 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Debug/net7.0/refint/KalkulackaNasobicka.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.dgspec.json b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.dgspec.json new file mode 100644 index 0000000..22b1295 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\Kalkulacka.csproj": {} + }, + "projects": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\Kalkulacka.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\Kalkulacka.csproj", + "projectName": "Kalkulacka", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\Kalkulacka.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.props b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.props new file mode 100644 index 0000000..4270eed --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\lukas\.nuget\packages\ + PackageReference + 6.7.0 + + + + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.targets b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/Kalkulacka.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.dgspec.json b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0d09266 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj": {} + }, + "projects": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj", + "projectName": "KalkulackaNasobicka", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.props b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.props new file mode 100644 index 0000000..4270eed --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\lukas\.nuget\packages\ + PackageReference + 6.7.0 + + + + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.targets b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/KalkulackaNasobicka.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.assets.json b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.assets.json new file mode 100644 index 0000000..0dd7250 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.assets.json @@ -0,0 +1,68 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "C:\\Users\\lukas\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj", + "projectName": "KalkulackaNasobicka", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.nuget.cache b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.nuget.cache new file mode 100644 index 0000000..4d654ac --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/Kalkulacka/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "+mnFoDlc780nV1r92jJE+8KQnP/aALDrWVe03Qqq8BiB+nrDYaHLIUZ41iZDdHKagWIhFAbY5Wnlbc/KTg831A==", + "success": true, + "projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\Kalkulacka\\KalkulackaNasobicka.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/Program.cs b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/Program.cs new file mode 100644 index 0000000..ea2fa76 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/Program.cs @@ -0,0 +1,13 @@ +namespace VstupInput +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("What is your name?"); + string results = Console.ReadLine(); + Console.WriteLine("Hello" + " " + results + "!"); + Console.ReadLine(); + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/VstupInput.csproj b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/VstupInput.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/VstupInput.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.deps.json b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.deps.json new file mode 100644 index 0000000..51e5298 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "VstupInput/1.0.0": { + "runtime": { + "VstupInput.dll": {} + } + } + } + }, + "libraries": { + "VstupInput/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.dll b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.dll new file mode 100644 index 0000000..7d0d7d8 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.exe b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.exe new file mode 100644 index 0000000..c6795af Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.pdb b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.pdb new file mode 100644 index 0000000..544e5b7 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.runtimeconfig.json b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/bin/Debug/net7.0/VstupInput.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfo.cs b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfo.cs new file mode 100644 index 0000000..c710643 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("VstupInput")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("VstupInput")] +[assembly: System.Reflection.AssemblyTitleAttribute("VstupInput")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfoInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d202485 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +96ba602dec5239d842ee83aceada2753c74169a6 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GeneratedMSBuildEditorConfig.editorconfig b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0e03953 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = VstupInput +build_property.ProjectDir = C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GlobalUsings.g.cs b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.assets.cache b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.assets.cache new file mode 100644 index 0000000..97b0021 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.assets.cache differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.BuildWithSkipAnalyzers b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.CoreCompileInputs.cache b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2ed4f6a --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c215461ef5ca4aa4913bf06c81547d175e42e1c6 diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.FileListAbsolute.txt b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..193b302 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\bin\Debug\net7.0\VstupInput.exe +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\bin\Debug\net7.0\VstupInput.deps.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\bin\Debug\net7.0\VstupInput.runtimeconfig.json +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\bin\Debug\net7.0\VstupInput.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\bin\Debug\net7.0\VstupInput.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.AssemblyInfoInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.AssemblyInfo.cs +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.csproj.CoreCompileInputs.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\refint\VstupInput.dll +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.pdb +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\VstupInput.genruntimeconfig.cache +C:\Users\lukas\Nextcloud\GitHub\.Net_C.Sharp_Test\C#\C# Basic Udemy Seen\FirstProgram\VstupInput\obj\Debug\net7.0\ref\VstupInput.dll diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.dll b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.dll new file mode 100644 index 0000000..7d0d7d8 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.genruntimeconfig.cache b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.genruntimeconfig.cache new file mode 100644 index 0000000..672f66e --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.genruntimeconfig.cache @@ -0,0 +1 @@ +1566513aa1fd4d5362ab701856b4138d437a9c6d diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.pdb b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.pdb new file mode 100644 index 0000000..544e5b7 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/VstupInput.pdb differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/apphost.exe b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/apphost.exe new file mode 100644 index 0000000..c6795af Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/apphost.exe differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/ref/VstupInput.dll b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/ref/VstupInput.dll new file mode 100644 index 0000000..4504fe3 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/ref/VstupInput.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/refint/VstupInput.dll b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/refint/VstupInput.dll new file mode 100644 index 0000000..4504fe3 Binary files /dev/null and b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/Debug/net7.0/refint/VstupInput.dll differ diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.dgspec.json b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0eaa68f --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.dgspec.json @@ -0,0 +1,63 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj": {} + }, + "projects": { + "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj", + "projectName": "VstupInput", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.props b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.props new file mode 100644 index 0000000..4270eed --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\lukas\.nuget\packages\ + PackageReference + 6.7.0 + + + + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.targets b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/VstupInput.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.assets.json b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.assets.json new file mode 100644 index 0000000..3304f11 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.assets.json @@ -0,0 +1,68 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "C:\\Users\\lukas\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj", + "projectName": "VstupInput", + "projectPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj", + "packagesPath": "C:\\Users\\lukas\\.nuget\\packages\\", + "outputPath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\lukas\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.nuget.cache b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.nuget.cache new file mode 100644 index 0000000..77c3c09 --- /dev/null +++ b/C#/C# Basic Udemy Seen/FirstProgram/VstupInput/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "e88HAMefcSlsgw9SAc1IuMZG9r6Sawdj3RhVZmmom+mT04wg9xjzSv8ftWVdosXmFc9TwHKtVv/RxAmrdE6cmQ==", + "success": true, + "projectFilePath": "C:\\Users\\lukas\\Nextcloud\\GitHub\\.Net_C.Sharp_Test\\C#\\C# Basic Udemy Seen\\FirstProgram\\VstupInput\\VstupInput.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/DesignTimeBuild/.dtbcache.v2 b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/DesignTimeBuild/.dtbcache.v2 index 3add28b..0f931b7 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/DesignTimeBuild/.dtbcache.v2 and b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/DesignTimeBuild/.dtbcache.v2 differ diff --git a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.futdcache.v2 b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.futdcache.v2 index aec7526..8dadc87 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.futdcache.v2 and b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.futdcache.v2 differ diff --git a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.suo b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.suo index c161176..9443526 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.suo and b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/.suo differ diff --git a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog index ef40f78..f00ad32 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog and b/LukanNUnitProject/LukanPOM/.vs/LukanPOM/v17/TestStore/0/000.testlog differ diff --git a/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.metadata.v7.bin b/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.metadata.v7.bin index 4317333..cb867f6 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.metadata.v7.bin and b/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.metadata.v7.bin differ diff --git a/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.projects.v7.bin b/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.projects.v7.bin index a97bdb6..69f186b 100644 Binary files a/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.projects.v7.bin and b/LukanNUnitProject/LukanPOM/.vs/ProjectEvaluation/lukanpom.projects.v7.bin differ